commit
24296ca44e
16 changed files with 229 additions and 73 deletions
@ -0,0 +1,33 @@ |
||||
steps: |
||||
- label: ":eslint: Lint" |
||||
command: |
||||
- "yarn install" |
||||
- "yarn lint" |
||||
plugins: |
||||
- docker#v3.0.1: |
||||
image: "node:10" |
||||
|
||||
- label: ":karma: Tests" |
||||
agents: |
||||
# We use a medium sized instance instead of the normal small ones because |
||||
# webpack loves to gorge itself on resources. |
||||
queue: "medium" |
||||
command: |
||||
# Install chrome |
||||
- "echo '--- Installing Chrome'" |
||||
- "wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -" |
||||
- "sh -c 'echo \"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google.list'" |
||||
- "apt-get update" |
||||
- "apt-get install -y google-chrome-stable" |
||||
# Run tests |
||||
- "echo '--- Fetching Dependencies'" |
||||
- "./scripts/fetch-develop.deps.sh --depth 1" |
||||
- "yarn install" |
||||
- "echo '+++ Running Tests'" |
||||
- "yarn test" |
||||
env: |
||||
CHROME_BIN: "/usr/bin/google-chrome-stable" |
||||
plugins: |
||||
- docker#v3.0.1: |
||||
image: "node:10" |
||||
propagate-environment: true |
@ -1,31 +0,0 @@ |
||||
# we need trusty for the chrome addon |
||||
dist: trusty |
||||
|
||||
# we don't need sudo, so can run in a container, which makes startup much |
||||
# quicker. |
||||
# |
||||
# unfortunately we do temporarily require sudo as a workaround for |
||||
# https://github.com/travis-ci/travis-ci/issues/8836 |
||||
sudo: required |
||||
|
||||
language: node_js |
||||
node_js: |
||||
# make sure we work with a range of node versions. |
||||
# |
||||
# Current status of node versions: https://github.com/nodejs/LTS/ |
||||
# We don't work with node 6 because it doesn't support package-lock |
||||
# files which we need to avoid the broken version of base-x |
||||
- 8 |
||||
- 10 |
||||
addons: |
||||
chrome: stable |
||||
before_install: |
||||
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0 |
||||
- export PATH=$HOME/.yarn/bin:$PATH |
||||
install: |
||||
# clone the deps with depth 1: we know we will only ever need that one |
||||
# commit. |
||||
- scripts/fetch-develop.deps.sh --depth 1 && yarn install |
||||
script: |
||||
- CHROME_BIN='/usr/bin/google-chrome-stable' yarn test |
||||
- yarn lint |
@ -0,0 +1,21 @@ |
||||
{ |
||||
"Riot Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s", |
||||
"Unknown device": "Gléas nár aithníodh", |
||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trí %(browserName)s ar %(osName)s", |
||||
"You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch ina dhéantar an scáileán a roinnt a chuir.", |
||||
"powered by Matrix": "á thiomáint le Matrix", |
||||
"Custom Server Options": "Socruithe do fhreastalaí saincheaptha", |
||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Is féidir na socruithe do fhreastalaí saincheaptha a úsáid chun síniú isteach le freastalaí Matrix eile tríd URL freastalaí ar leith a sholáthar. Cuirfidh sé seo ar do chumas Riot a úsáid le cuntas Matrix atá ar taifead ag freastalaí difriúil.", |
||||
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Freisin is féidir freastalaí aitheantais saincheaptha a úsáid, ach le seo ní bheidh tú in ann cuireadh a thabhairt do dhaoine tríd seoladh ríomhphoist a sholáthar, nó glacadh le cuireadh trí ríomhphoist ach an oiread.", |
||||
"Dismiss": "Cuir uait", |
||||
"Welcome to Riot.im": "Fáilte chuig Riot.im", |
||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú neamhláraithe agus criptithe á thiomáint le [matrix]", |
||||
"Sign In": "Sínigh Isteach", |
||||
"Create Account": "Déan cuntas a chruthú", |
||||
"Need help?": "An bhfuil cabhair uait?", |
||||
"Chat with Riot Bot": "Labhair le Riot Bot", |
||||
"Explore rooms": "Breathnaigh thart ar na seomraí", |
||||
"Room Directory": "Eolaire na Seomraí", |
||||
"Search the room directory": "Cuardaigh eolaire na seomraí", |
||||
"Get started with some tips from Riot Bot!": "Tosaigh le nod ó Riot Bot!" |
||||
} |
Loading…
Reference in new issue