Merge pull request #3574 from gschlager/patch-2
FIX: Remove invalid translation keys from polls plugin
This commit is contained in:
commit
00aaa692ac
|
@ -1,19 +1,27 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
# This file contains content for the client portion of the poll plugin, sent out
|
||||||
|
# to the Javascript app.
|
||||||
#
|
#
|
||||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
# To work with us on translations, see:
|
||||||
#
|
|
||||||
# To work with us on translations, join this project:
|
|
||||||
# https://www.transifex.com/projects/p/discourse-org/
|
# 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/
|
||||||
|
|
||||||
en:
|
en:
|
||||||
js:
|
js:
|
||||||
poll:
|
poll:
|
||||||
voters:
|
voters:
|
||||||
zero: "voters"
|
|
||||||
one: "voter"
|
one: "voter"
|
||||||
other: "voters"
|
other: "voters"
|
||||||
total_votes:
|
total_votes:
|
||||||
zero: "total votes"
|
|
||||||
one: "total vote"
|
one: "total vote"
|
||||||
other: "total votes"
|
other: "total votes"
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
# This file contains content for the server portion of the poll plugin used by Ruby
|
||||||
#
|
#
|
||||||
# Never edit this file. It will be overwritten when translations are pulled from Transifex.
|
# To work with us on translations, see:
|
||||||
#
|
|
||||||
# To work with us on translations, join this project:
|
|
||||||
# https://www.transifex.com/projects/p/discourse-org/
|
# 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/
|
||||||
|
|
||||||
en:
|
en:
|
||||||
site_settings:
|
site_settings:
|
||||||
|
|
Loading…
Reference in New Issue