diff options
| author | 2023-03-29 21:29:51 +0200 | |
|---|---|---|
| committer | 2023-03-29 21:29:51 +0200 | |
| commit | bb6bc8fe2c9410d2c8c56ada9e2dff800c715189 (patch) | |
| tree | bdf430ae0a8e7de891b597cd7f02a308b37138ed /app/i18n/el/admin.php | |
| parent | ab49ee6c0c6a969cca447b68500b8faf052f362e (diff) | |
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)
Diffstat (limited to 'app/i18n/el/admin.php')
| -rw-r--r-- | app/i18n/el/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/i18n/el/admin.php b/app/i18n/el/admin.php index 514a48076..93d454c92 100644 --- a/app/i18n/el/admin.php +++ b/app/i18n/el/admin.php @@ -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' => 'Ανάγνωση', |
