mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-20 10:46:01 +02:00
Fix: Renaming locale labels
This commit is contained in:
parent
e509d11d2e
commit
cf9e1e0858
1 changed files with 12 additions and 12 deletions
|
@ -25,61 +25,61 @@ class IntlHelperBarView extends React.Component{
|
||||||
|
|
||||||
getItems() {
|
getItems() {
|
||||||
return [{
|
return [{
|
||||||
text: 'Git Branching',
|
text: 'English',
|
||||||
testID: 'english',
|
testID: 'english',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale en_US; levels');
|
this.fireCommand('locale en_US; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: '日本語版リポジトリ',
|
text: '日本語',
|
||||||
testID: 'japanese',
|
testID: 'japanese',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale ja; levels');
|
this.fireCommand('locale ja; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'Git 브랜치 배우기',
|
text: '한국어 배우기',
|
||||||
testID: 'korean',
|
testID: 'korean',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale ko; levels');
|
this.fireCommand('locale ko; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: '学习 Git 分支',
|
text: '学习分支',
|
||||||
testID: 'simplifiedChinese',
|
testID: 'simplifiedChinese',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale zh_CN; levels');
|
this.fireCommand('locale zh_CN; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: '學習 Git 分支',
|
text: '學習分支',
|
||||||
testID: 'traditionalChinese',
|
testID: 'traditionalChinese',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale zh_TW; levels');
|
this.fireCommand('locale zh_TW; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'español',
|
text: 'Español',
|
||||||
testID: 'spanish',
|
testID: 'spanish',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale es_ES; levels');
|
this.fireCommand('locale es_ES; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'argentino',
|
text: 'Español (Argentina)',
|
||||||
testID: 'argentinian',
|
testID: 'argentinian',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale es_AR; levels');
|
this.fireCommand('locale es_AR; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'mexicano',
|
text: 'Español (México)',
|
||||||
testID: 'mexican',
|
testID: 'mexican',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale es_MX; levels');
|
this.fireCommand('locale es_MX; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'português',
|
text: 'Português',
|
||||||
testID: 'portuguese',
|
testID: 'portuguese',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale pt_BR; levels');
|
this.fireCommand('locale pt_BR; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'français',
|
text: 'Français',
|
||||||
testID: 'french',
|
testID: 'french',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale fr_FR; levels');
|
this.fireCommand('locale fr_FR; levels');
|
||||||
|
@ -121,7 +121,7 @@ class IntlHelperBarView extends React.Component{
|
||||||
this.fireCommand('locale gl; levels');
|
this.fireCommand('locale gl; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: 'Slovensko',
|
text: 'Slovenščina',
|
||||||
testID: 'slovenian',
|
testID: 'slovenian',
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
this.fireCommand('locale sl_SI; levels');
|
this.fireCommand('locale sl_SI; levels');
|
||||||
|
@ -139,7 +139,7 @@ class IntlHelperBarView extends React.Component{
|
||||||
this.fireCommand('locale ta_IN; levels');
|
this.fireCommand('locale ta_IN; levels');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
}, {
|
}, {
|
||||||
text: "italiano",
|
text: "Italiano",
|
||||||
testID: "italian",
|
testID: "italian",
|
||||||
onClick: function () {
|
onClick: function () {
|
||||||
this.fireCommand("locale it_IT; levels");
|
this.fireCommand("locale it_IT; levels");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue