ui/translations
Westly Wright 2a66489f83
New cluster launch page
Refactor and decouple launch cluster

adds new routes for selecting cluster, selecting cluter template, and launching
cluster

Add first version of cluster template selection logic

WIP - First version of cluter-template resource pages & components

cluster template index

adds cru-cluster-template

save cluster template and cluster template revision

refactor rke cluster driver and add rke cluster driver to clust temp

add cluster template revision page

template revision changes

more questions

refactor cluster networking into component

cluster template questions components

first itteration of working add question

fixups for ct and ctr's

general fixes

quick revision select on new revision page

Move name, expose ctr name, move ctr source

Refactor ct/ctr table to use grouped form

share member added

single template no revisions rows

translations

translation changes

css toggle

css toggle on all elements

inline override

initial apply cluster template

initial show or lock when applying a cluster template

validation bug

first run at windows support overrides

abstract check override with component that yields

add check for override to most sections

bulk remove cluster template revision

more check override

handle errors better for ctrs

translations

bugs

add toggle to azure cloud provider

auth endpoint fix

computed override check and refactor

fixup question override inputs

remove cluster launch route

review fixups

cluster edit

fixup alias properties for overrides
2019-07-08 14:45:44 -07:00
..
README.md Load IntlPolyfill for Safari (rancher/rancher#5058, rancher/rancher#5092) 2016-06-17 01:02:04 -07:00
ar-sa.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
de-de.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
en-us.yaml New cluster launch page 2019-07-08 14:45:44 -07:00
es-es.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
fa-ir.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
fr-fr.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
hu-hu.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
it-it.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
ja-jp.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
ko-kr.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
nb-no.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
nl-nl.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
none.yaml Lang, header, merge fixes (#632) 2016-05-02 17:36:17 -07:00
pt-br.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
ru-ru.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
sh-hr.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
sv-se.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
tr-tr.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
uk-ua.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
vi-vn.yaml Fix broken translation 2019-06-17 10:16:00 -07:00
zh-hans.yaml update amazon ecs for amazon eks for cluster driver 2019-05-29 12:01:17 -07:00
zh-hant.yaml Windows 1809 support 2019-04-30 17:31:02 +08:00

README.md

Internationalization

Every piece of localizable text is put into the translation files here.

  • Files must be named matching a locale in the list at https://github.com/andyearnshaw/Intl.js/tree/master/locale-data/jsonp (with a .yaml extension).`
  • The code refers to the appropriate key and it is looked up for the current language to get the string to be displayed.
  • If the key does not exist in the current language, the English value is used as a fallback.
  • If there is no English value either, the un-translated key is shown

Pluralization

Variables can be pluralized with the syntax:

You have {numPhotos, plural,
  =0 {no photos.}
  =1 {one photo.}
  other {# photos.}}

Docs

See ember-intl wiki for more info about supported features in translations, and ICU for more info about pluralization.

Testing

  • You can press shift+L to toggle between the current language and a special none language which will show the translation keys for every string.
  • When starting up the ember server, a warning will be printed for each key that is in en-us but missing from another language.