i18n fix percent_of_total (#5232)

Fix double `%%` (escaping not needed anymore for strings not using an sprintf construction since https://github.com/FreshRSS/FreshRSS/pull/5022)
This commit is contained in:
Alexandre Alapetite
2023-03-29 21:29:51 +02:00
committed by GitHub
parent ab49ee6c0c
commit bb6bc8fe2c
21 changed files with 21 additions and 21 deletions

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Všechny kanály',
'no_idle' => 'Nejsou žádné nečinné kanály!',
'number_entries' => '%d článků',
'percent_of_total' => '%% ze všech',
'percent_of_total' => '% ze všech',
'repartition' => 'Přerozdělení článků',
'status_favorites' => 'Oblíbené',
'status_read' => 'Přečtené',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Haupt-Feeds',
'no_idle' => 'Es gibt keinen inaktiven Feed!',
'number_entries' => '%d Artikel',
'percent_of_total' => '%% Gesamt',
'percent_of_total' => '% Gesamt',
'repartition' => 'Artikel-Verteilung',
'status_favorites' => 'Favoriten',
'status_read' => 'Gelesen',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Κύρια ροή',
'no_idle' => 'Δεν υπάρχουν αδρανείς τροφοδοσίες!',
'number_entries' => '%d άρθρα',
'percent_of_total' => '%% εκ του συνόλου',
'percent_of_total' => '% εκ του συνόλου',
'repartition' => 'Articles repartition', // TODO
'status_favorites' => 'Αγαπημένα',
'status_read' => 'Ανάγνωση',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Main stream', // IGNORE
'no_idle' => 'There are no idle feeds!', // IGNORE
'number_entries' => '%d articles', // IGNORE
'percent_of_total' => '%% of total', // IGNORE
'percent_of_total' => '% of total', // IGNORE
'repartition' => 'Articles repartition', // IGNORE
'status_favorites' => 'Favorites',
'status_read' => 'Read', // IGNORE

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Main stream',
'no_idle' => 'There are no idle feeds!',
'number_entries' => '%d articles',
'percent_of_total' => '%% of total',
'percent_of_total' => '% of total',
'repartition' => 'Articles repartition',
'status_favorites' => 'Favourites',
'status_read' => 'Read',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Salida principal',
'no_idle' => 'No hay fuentes inactivas',
'number_entries' => '%d artículos',
'percent_of_total' => '%% del total',
'percent_of_total' => '% del total',
'repartition' => 'Reprto de artículos',
'status_favorites' => 'Favoritos',
'status_read' => 'Leídos',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Flux principal',
'no_idle' => 'Il ny a aucun flux inactif !',
'number_entries' => '%d articles', // IGNORE
'percent_of_total' => '%% du total',
'percent_of_total' => '% du total',
'repartition' => 'Répartition des articles',
'status_favorites' => 'favoris',
'status_read' => 'lus',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'הזנה ראשית',
'no_idle' => 'אין הזנות מובטלות!',
'number_entries' => '%d מאמרים',
'percent_of_total' => '%% מסך הכל',
'percent_of_total' => '% מסך הכל',
'repartition' => 'חלוקת המאמרים',
'status_favorites' => 'מועדפים',
'status_read' => 'נקרא',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Aliran utama',
'no_idle' => 'Tidak ada idle feed!',
'number_entries' => '%d artikel',
'percent_of_total' => '%% dari total',
'percent_of_total' => '% dari total',
'repartition' => 'Mengembalikan artikel',
'status_favorites' => 'Favorites',
'status_read' => 'Read', // TODO

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Flusso principale',
'no_idle' => 'Non ci sono feed non aggiornati',
'number_entries' => '%d articoli',
'percent_of_total' => '%% del totale',
'percent_of_total' => '% del totale',
'repartition' => 'Ripartizione articoli',
'status_favorites' => 'Preferiti',
'status_read' => 'Letti',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => '主なストリーム',
'no_idle' => '未使用のフィードはありません!',
'number_entries' => '%d 記事',
'percent_of_total' => '%% 総計',
'percent_of_total' => '% 総計',
'repartition' => '記事の仕切り',
'status_favorites' => 'お気に入り',
'status_read' => '既読',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => '메인 스트림',
'no_idle' => '유휴 피드가 없습니다!',
'number_entries' => '%d 개의 글',
'percent_of_total' => '전체에서의 비율 (%%)',
'percent_of_total' => '전체에서의 비율 (%)',
'repartition' => '글 분류',
'status_favorites' => '즐겨찾기',
'status_read' => '읽음',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Overzicht',
'no_idle' => 'Er is geen gepauzeerde feed!',
'number_entries' => '%d artikelen',
'percent_of_total' => '%% van totaal',
'percent_of_total' => '% van totaal',
'repartition' => 'Artikelverdeling',
'status_favorites' => 'Favorieten',
'status_read' => 'Gelezen',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Flux màger',
'no_idle' => 'I a pas cap darticle inactiu!',
'number_entries' => '%d articles', // IGNORE
'percent_of_total' => '%% del total',
'percent_of_total' => '% del total',
'repartition' => 'Reparticion dels articles',
'status_favorites' => 'Favorits',
'status_read' => 'Legit',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Kanał główny',
'no_idle' => 'Brak bezczynnych kanałów!',
'number_entries' => '%d wiadomości',
'percent_of_total' => '%% wszystkich',
'percent_of_total' => '% wszystkich',
'repartition' => 'Podział wiadomości',
'status_favorites' => 'Ulubione',
'status_read' => 'Przeczytane',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Stream principal',
'no_idle' => 'Não há nenhum feed inativo!',
'number_entries' => '%d artigos',
'percent_of_total' => '%% do total',
'percent_of_total' => '% do total',
'repartition' => 'Repartição de artigos',
'status_favorites' => 'Favoritos',
'status_read' => 'Lido',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Основной поток',
'no_idle' => 'Нет неактивных лент!',
'number_entries' => 'статей: %d',
'percent_of_total' => '%% от всего',
'percent_of_total' => '% от всего',
'repartition' => 'Распределение статей',
'status_favorites' => 'В избранном',
'status_read' => 'Прочитано',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Všetky kanály',
'no_idle' => 'Žiadne neaktívne kanály!',
'number_entries' => 'Počet článkov: %d',
'percent_of_total' => 'Z celkového počtu: %%',
'percent_of_total' => 'Z celkového počtu: %',
'repartition' => 'Rozdelenie článkov',
'status_favorites' => 'Obľúbené',
'status_read' => 'Prečítané',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => 'Ana akış',
'no_idle' => 'Boşta akış yok!',
'number_entries' => '%d makale',
'percent_of_total' => '%% toplamın yüzdesi',
'percent_of_total' => '% toplamın yüzdesi',
'repartition' => 'Makale dağılımı',
'status_favorites' => 'Favoriler',
'status_read' => 'Okunmuş',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => '首页',
'no_idle' => '订阅源近期皆有更新!',
'number_entries' => '%d 篇文章',
'percent_of_total' => '%%',
'percent_of_total' => '%',
'repartition' => '文章分布',
'status_favorites' => '收藏',
'status_read' => '已读',

View File

@@ -147,7 +147,7 @@ return array(
'main_stream' => '首頁',
'no_idle' => '訂閱源近期皆有更新!',
'number_entries' => '%d 篇文章',
'percent_of_total' => '%%',
'percent_of_total' => '%',
'repartition' => '文章分布',
'status_favorites' => '收藏',
'status_read' => '已讀',