diff --git a/.tx/config b/.tx/config new file mode 100644 index 0000000..5a48ccb --- /dev/null +++ b/.tx/config @@ -0,0 +1,15 @@ +[main] +host = https://www.transifex.com +lang_map = el_GR: el, es_ES: es, fr_FR: fr, ko_KR: ko, pt_PT: pt, sk_SK: sk, vi_VN: vi + +[discourse-org.plugindiscourse-data-explorerclientenyml] +file_filter = config/locales/client..yml +source_file = config/locales/client.en.yml +source_lang = en +type = YML + +[discourse-org.plugindiscourse-data-explorerserverenyml] +file_filter = config/locales/server..yml +source_file = config/locales/server.en.yml +source_lang = en +type = YML diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..2a5f647 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +group :development do + gem 'translations-manager', git: 'https://github.com/discourse/translations-manager.git' +end diff --git a/bin/pull_translations.rb b/bin/pull_translations.rb new file mode 100755 index 0000000..755a227 --- /dev/null +++ b/bin/pull_translations.rb @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby + +# Usage: +# bundle install +# bundle exec bin/pull_translations.rb +# +# To choose which languages to update, list them as arguments: +# bundle exec bin/pull_translations.rb he uk + +require 'translations_manager' + +YML_DIRS = ['config/locales'].map { |d| File.expand_path(d) } +YML_FILE_PREFIXES = ['server', 'client'] + +TranslationsManager::TransifexUpdater.new(YML_DIRS, YML_FILE_PREFIXES, *ARGV).perform diff --git a/config/locales/client.ar.yml b/config/locales/client.ar.yml new file mode 100644 index 0000000..79ea4de --- /dev/null +++ b/config/locales/client.ar.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ar: {} diff --git a/config/locales/client.bs_BA.yml b/config/locales/client.bs_BA.yml new file mode 100644 index 0000000..7b73cd2 --- /dev/null +++ b/config/locales/client.bs_BA.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +bs_BA: {} diff --git a/config/locales/client.cs.yml b/config/locales/client.cs.yml new file mode 100644 index 0000000..c0f2fec --- /dev/null +++ b/config/locales/client.cs.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +cs: {} diff --git a/config/locales/client.da.yml b/config/locales/client.da.yml new file mode 100644 index 0000000..9ca8189 --- /dev/null +++ b/config/locales/client.da.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +da: {} diff --git a/config/locales/client.de.yml b/config/locales/client.de.yml new file mode 100644 index 0000000..9bbf19d --- /dev/null +++ b/config/locales/client.de.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +de: {} diff --git a/config/locales/client.el.yml b/config/locales/client.el.yml new file mode 100644 index 0000000..63bf4b0 --- /dev/null +++ b/config/locales/client.el.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +el: {} diff --git a/config/locales/client.es.yml b/config/locales/client.es.yml index 2c23d10..3424f90 100644 --- a/config/locales/client.es.yml +++ b/config/locales/client.es.yml @@ -1,19 +1,9 @@ # encoding: utf-8 -# This file contains content for the client portion of Discourse, sent out -# to the Javascript app. # -# To work with us on translations, see: +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: # https://www.transifex.com/projects/p/discourse-org/ -# -# This is a "source" file, which is used by Transifex to get translations for other languages. -# After this file is changed, it needs to be pushed by a maintainer to Transifex: -# -# tx push -s -# -# Read more here: https://meta.discourse.org/t/contribute-a-translation-to-discourse/14882 -# -# To validate this YAML file after you change it, please paste it into -# http://yamllint.com/ es: js: @@ -36,8 +26,8 @@ es: type_help: "Types" types: bool: - yes: "Si" - no: "No" + 'yes': "Si" + 'no': "No" null_: "Null" export: "Exportar" save: "Guardar cambios" diff --git a/config/locales/client.et.yml b/config/locales/client.et.yml new file mode 100644 index 0000000..8c601aa --- /dev/null +++ b/config/locales/client.et.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +et: {} diff --git a/config/locales/client.fa_IR.yml b/config/locales/client.fa_IR.yml new file mode 100644 index 0000000..3f564b2 --- /dev/null +++ b/config/locales/client.fa_IR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fa_IR: {} diff --git a/config/locales/client.fi.yml b/config/locales/client.fi.yml new file mode 100644 index 0000000..b947adb --- /dev/null +++ b/config/locales/client.fi.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fi: {} diff --git a/config/locales/client.fr.yml b/config/locales/client.fr.yml new file mode 100644 index 0000000..ca92bfb --- /dev/null +++ b/config/locales/client.fr.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fr: {} diff --git a/config/locales/client.gl.yml b/config/locales/client.gl.yml new file mode 100644 index 0000000..695b5cf --- /dev/null +++ b/config/locales/client.gl.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +gl: {} diff --git a/config/locales/client.he.yml b/config/locales/client.he.yml new file mode 100644 index 0000000..96b15d6 --- /dev/null +++ b/config/locales/client.he.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +he: {} diff --git a/config/locales/client.id.yml b/config/locales/client.id.yml new file mode 100644 index 0000000..2112cad --- /dev/null +++ b/config/locales/client.id.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +id: {} diff --git a/config/locales/client.it.yml b/config/locales/client.it.yml index 91fddd8..2a5512e 100644 --- a/config/locales/client.it.yml +++ b/config/locales/client.it.yml @@ -1,19 +1,9 @@ # encoding: utf-8 -# This file contains content for the client portion of Discourse, sent out -# to the Javascript app. # -# To work with us on translations, see: +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: # https://www.transifex.com/projects/p/discourse-org/ -# -# This is a "source" file, which is used by Transifex to get translations for other languages. -# After this file is changed, it needs to be pushed by a maintainer to Transifex: -# -# tx push -s -# -# Read more here: https://meta.discourse.org/t/contribute-a-translation-to-discourse/14882 -# -# To validate this YAML file after you change it, please paste it into -# http://yamllint.com/ it: js: @@ -36,8 +26,8 @@ it: type_help: "Tipi di dati" types: bool: - yes: "Sì" - no: "No" + 'yes': "Sì" + 'no': "No" null_: "Vuoto" export: "Esporta" save: "Salva Modifiche" diff --git a/config/locales/client.ja.yml b/config/locales/client.ja.yml new file mode 100644 index 0000000..8c2dc00 --- /dev/null +++ b/config/locales/client.ja.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ja: {} diff --git a/config/locales/client.ko.yml b/config/locales/client.ko.yml new file mode 100644 index 0000000..bf4e05d --- /dev/null +++ b/config/locales/client.ko.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ko: {} diff --git a/config/locales/client.lv.yml b/config/locales/client.lv.yml new file mode 100644 index 0000000..dc48bb5 --- /dev/null +++ b/config/locales/client.lv.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +lv: {} diff --git a/config/locales/client.nb_NO.yml b/config/locales/client.nb_NO.yml new file mode 100644 index 0000000..2231ad9 --- /dev/null +++ b/config/locales/client.nb_NO.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +nb_NO: {} diff --git a/config/locales/client.nl.yml b/config/locales/client.nl.yml new file mode 100644 index 0000000..bb31021 --- /dev/null +++ b/config/locales/client.nl.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +nl: {} diff --git a/config/locales/client.pl_PL.yml b/config/locales/client.pl_PL.yml new file mode 100644 index 0000000..c04d371 --- /dev/null +++ b/config/locales/client.pl_PL.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pl_PL: {} diff --git a/config/locales/client.pt.yml b/config/locales/client.pt.yml new file mode 100644 index 0000000..d12527a --- /dev/null +++ b/config/locales/client.pt.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pt: {} diff --git a/config/locales/client.pt_BR.yml b/config/locales/client.pt_BR.yml new file mode 100644 index 0000000..bc85fd8 --- /dev/null +++ b/config/locales/client.pt_BR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pt_BR: {} diff --git a/config/locales/client.ro.yml b/config/locales/client.ro.yml new file mode 100644 index 0000000..31d1c44 --- /dev/null +++ b/config/locales/client.ro.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ro: {} diff --git a/config/locales/client.ru.yml b/config/locales/client.ru.yml index e26de50..d03f71e 100644 --- a/config/locales/client.ru.yml +++ b/config/locales/client.ru.yml @@ -1,19 +1,9 @@ # encoding: utf-8 -# This file contains content for the client portion of Discourse, sent out -# to the Javascript app. # -# To work with us on translations, see: +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: # https://www.transifex.com/projects/p/discourse-org/ -# -# This is a "source" file, which is used by Transifex to get translations for other languages. -# After this file is changed, it needs to be pushed by a maintainer to Transifex: -# -# tx push -s -# -# Read more here: https://meta.discourse.org/t/contribute-a-translation-to-discourse/14882 -# -# To validate this YAML file after you change it, please paste it into -# http://yamllint.com/ ru: js: @@ -36,8 +26,8 @@ ru: type_help: "Типы" types: bool: - yes: "Да" - no: "Нет" + 'yes': "Да" + 'no': "Нет" null_: "Null" export: "Экспорт" save: "Сохранить изменения" diff --git a/config/locales/client.sk.yml b/config/locales/client.sk.yml new file mode 100644 index 0000000..bcc3a93 --- /dev/null +++ b/config/locales/client.sk.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sk: {} diff --git a/config/locales/client.sq.yml b/config/locales/client.sq.yml new file mode 100644 index 0000000..4526be3 --- /dev/null +++ b/config/locales/client.sq.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sq: {} diff --git a/config/locales/client.sv.yml b/config/locales/client.sv.yml new file mode 100644 index 0000000..fd54901 --- /dev/null +++ b/config/locales/client.sv.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sv: {} diff --git a/config/locales/client.te.yml b/config/locales/client.te.yml new file mode 100644 index 0000000..49141ba --- /dev/null +++ b/config/locales/client.te.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +te: {} diff --git a/config/locales/client.th.yml b/config/locales/client.th.yml new file mode 100644 index 0000000..7ed98e1 --- /dev/null +++ b/config/locales/client.th.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +th: {} diff --git a/config/locales/client.tr_TR.yml b/config/locales/client.tr_TR.yml new file mode 100644 index 0000000..00efffd --- /dev/null +++ b/config/locales/client.tr_TR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +tr_TR: {} diff --git a/config/locales/client.uk.yml b/config/locales/client.uk.yml new file mode 100644 index 0000000..3acfff7 --- /dev/null +++ b/config/locales/client.uk.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +uk: {} diff --git a/config/locales/client.ur.yml b/config/locales/client.ur.yml new file mode 100644 index 0000000..58bc973 --- /dev/null +++ b/config/locales/client.ur.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ur: {} diff --git a/config/locales/client.vi.yml b/config/locales/client.vi.yml new file mode 100644 index 0000000..fa809fe --- /dev/null +++ b/config/locales/client.vi.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +vi: {} diff --git a/config/locales/client.zh_CN.yml b/config/locales/client.zh_CN.yml new file mode 100644 index 0000000..53c9902 --- /dev/null +++ b/config/locales/client.zh_CN.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +zh_CN: {} diff --git a/config/locales/client.zh_TW.yml b/config/locales/client.zh_TW.yml new file mode 100644 index 0000000..92c18de --- /dev/null +++ b/config/locales/client.zh_TW.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +zh_TW: {} diff --git a/config/locales/server.ar.yml b/config/locales/server.ar.yml new file mode 100644 index 0000000..79ea4de --- /dev/null +++ b/config/locales/server.ar.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ar: {} diff --git a/config/locales/server.bs_BA.yml b/config/locales/server.bs_BA.yml new file mode 100644 index 0000000..7b73cd2 --- /dev/null +++ b/config/locales/server.bs_BA.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +bs_BA: {} diff --git a/config/locales/server.cs.yml b/config/locales/server.cs.yml new file mode 100644 index 0000000..c0f2fec --- /dev/null +++ b/config/locales/server.cs.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +cs: {} diff --git a/config/locales/server.da.yml b/config/locales/server.da.yml new file mode 100644 index 0000000..9ca8189 --- /dev/null +++ b/config/locales/server.da.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +da: {} diff --git a/config/locales/server.de.yml b/config/locales/server.de.yml new file mode 100644 index 0000000..9bbf19d --- /dev/null +++ b/config/locales/server.de.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +de: {} diff --git a/config/locales/server.el.yml b/config/locales/server.el.yml new file mode 100644 index 0000000..63bf4b0 --- /dev/null +++ b/config/locales/server.el.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +el: {} diff --git a/config/locales/server.es.yml b/config/locales/server.es.yml index ac14904..9b0b3af 100644 --- a/config/locales/server.es.yml +++ b/config/locales/server.es.yml @@ -1,3 +1,10 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + es: site_settings: data_explorer_enabled: "Habilitar el Data Explorer en /admin/plugins/explorer" diff --git a/config/locales/server.et.yml b/config/locales/server.et.yml new file mode 100644 index 0000000..8c601aa --- /dev/null +++ b/config/locales/server.et.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +et: {} diff --git a/config/locales/server.fa_IR.yml b/config/locales/server.fa_IR.yml new file mode 100644 index 0000000..3f564b2 --- /dev/null +++ b/config/locales/server.fa_IR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fa_IR: {} diff --git a/config/locales/server.fi.yml b/config/locales/server.fi.yml new file mode 100644 index 0000000..b947adb --- /dev/null +++ b/config/locales/server.fi.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fi: {} diff --git a/config/locales/server.fr.yml b/config/locales/server.fr.yml new file mode 100644 index 0000000..ca92bfb --- /dev/null +++ b/config/locales/server.fr.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +fr: {} diff --git a/config/locales/server.gl.yml b/config/locales/server.gl.yml new file mode 100644 index 0000000..695b5cf --- /dev/null +++ b/config/locales/server.gl.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +gl: {} diff --git a/config/locales/server.he.yml b/config/locales/server.he.yml new file mode 100644 index 0000000..96b15d6 --- /dev/null +++ b/config/locales/server.he.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +he: {} diff --git a/config/locales/server.id.yml b/config/locales/server.id.yml new file mode 100644 index 0000000..2112cad --- /dev/null +++ b/config/locales/server.id.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +id: {} diff --git a/config/locales/server.it.yml b/config/locales/server.it.yml index 80b0bcb..4a740f8 100644 --- a/config/locales/server.it.yml +++ b/config/locales/server.it.yml @@ -1,3 +1,10 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + it: site_settings: data_explorer_enabled: "Abilitare il plugin Data Explorer su /admin/plugins/explorer" diff --git a/config/locales/server.ja.yml b/config/locales/server.ja.yml new file mode 100644 index 0000000..8c2dc00 --- /dev/null +++ b/config/locales/server.ja.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ja: {} diff --git a/config/locales/server.ko.yml b/config/locales/server.ko.yml new file mode 100644 index 0000000..bf4e05d --- /dev/null +++ b/config/locales/server.ko.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ko: {} diff --git a/config/locales/server.lv.yml b/config/locales/server.lv.yml new file mode 100644 index 0000000..dc48bb5 --- /dev/null +++ b/config/locales/server.lv.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +lv: {} diff --git a/config/locales/server.nb_NO.yml b/config/locales/server.nb_NO.yml new file mode 100644 index 0000000..2231ad9 --- /dev/null +++ b/config/locales/server.nb_NO.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +nb_NO: {} diff --git a/config/locales/server.nl.yml b/config/locales/server.nl.yml new file mode 100644 index 0000000..bb31021 --- /dev/null +++ b/config/locales/server.nl.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +nl: {} diff --git a/config/locales/server.pl_PL.yml b/config/locales/server.pl_PL.yml new file mode 100644 index 0000000..c04d371 --- /dev/null +++ b/config/locales/server.pl_PL.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pl_PL: {} diff --git a/config/locales/server.pt.yml b/config/locales/server.pt.yml new file mode 100644 index 0000000..d12527a --- /dev/null +++ b/config/locales/server.pt.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pt: {} diff --git a/config/locales/server.pt_BR.yml b/config/locales/server.pt_BR.yml new file mode 100644 index 0000000..bc85fd8 --- /dev/null +++ b/config/locales/server.pt_BR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +pt_BR: {} diff --git a/config/locales/server.ro.yml b/config/locales/server.ro.yml new file mode 100644 index 0000000..31d1c44 --- /dev/null +++ b/config/locales/server.ro.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ro: {} diff --git a/config/locales/server.ru.yml b/config/locales/server.ru.yml index 08c895c..fb98ce9 100644 --- a/config/locales/server.ru.yml +++ b/config/locales/server.ru.yml @@ -1,3 +1,10 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + ru: site_settings: data_explorer_enabled: "Включить проводник данных в /admin/plugins/explorer" diff --git a/config/locales/server.sk.yml b/config/locales/server.sk.yml new file mode 100644 index 0000000..bcc3a93 --- /dev/null +++ b/config/locales/server.sk.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sk: {} diff --git a/config/locales/server.sq.yml b/config/locales/server.sq.yml new file mode 100644 index 0000000..4526be3 --- /dev/null +++ b/config/locales/server.sq.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sq: {} diff --git a/config/locales/server.sv.yml b/config/locales/server.sv.yml new file mode 100644 index 0000000..fd54901 --- /dev/null +++ b/config/locales/server.sv.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +sv: {} diff --git a/config/locales/server.te.yml b/config/locales/server.te.yml new file mode 100644 index 0000000..49141ba --- /dev/null +++ b/config/locales/server.te.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +te: {} diff --git a/config/locales/server.th.yml b/config/locales/server.th.yml new file mode 100644 index 0000000..7ed98e1 --- /dev/null +++ b/config/locales/server.th.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +th: {} diff --git a/config/locales/server.tr_TR.yml b/config/locales/server.tr_TR.yml new file mode 100644 index 0000000..00efffd --- /dev/null +++ b/config/locales/server.tr_TR.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +tr_TR: {} diff --git a/config/locales/server.uk.yml b/config/locales/server.uk.yml new file mode 100644 index 0000000..3acfff7 --- /dev/null +++ b/config/locales/server.uk.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +uk: {} diff --git a/config/locales/server.ur.yml b/config/locales/server.ur.yml new file mode 100644 index 0000000..58bc973 --- /dev/null +++ b/config/locales/server.ur.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +ur: {} diff --git a/config/locales/server.vi.yml b/config/locales/server.vi.yml new file mode 100644 index 0000000..fa809fe --- /dev/null +++ b/config/locales/server.vi.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +vi: {} diff --git a/config/locales/server.zh_CN.yml b/config/locales/server.zh_CN.yml new file mode 100644 index 0000000..53c9902 --- /dev/null +++ b/config/locales/server.zh_CN.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +zh_CN: {} diff --git a/config/locales/server.zh_TW.yml b/config/locales/server.zh_TW.yml new file mode 100644 index 0000000..92c18de --- /dev/null +++ b/config/locales/server.zh_TW.yml @@ -0,0 +1,8 @@ +# encoding: utf-8 +# +# Never edit this file. It will be overwritten when translations are pulled from Transifex. +# +# To work with us on translations, join this project: +# https://www.transifex.com/projects/p/discourse-org/ + +zh_TW: {}