We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd908d3 commit 0edb037Copy full SHA for 0edb037
_plugins/translation_status.rb
@@ -8,7 +8,7 @@ module Jekyll
8
# Outputs HTML.
9
module TranslationStatus
10
11
- LANGS = %w[en de es id ja ko pt ru tr zh_cn zh_tw].freeze
+ LANGS = %w[en bg de es fr id it ja ko pl pt ru tr vi zh_cn zh_tw].freeze
12
START_DATE = "2013-04-01"
13
14
OK_CHAR = "✓"
@@ -122,7 +122,7 @@ def render(context)
122
123
remove_completed_posts
124
125
- ignored = ignored_langs.sort.join(", ")
+ ignored = ignored_langs.empty? ? "none" : ignored_langs.sort.join(", ")
126
posts = @posts.sort.reverse.map {|_name, post| post }
127
128
ERB.new(TEMPLATE, trim_mode: "-").result(binding)
0 commit comments