ashb commented on code in PR #56229:
URL: https://github.com/apache/airflow/pull/56229#discussion_r2401527604


##########
airflow-core/src/airflow/ui/public/i18n/locales/el/components.json:
##########
@@ -0,0 +1,134 @@
+{
+  "backfill": {
+    "affected_one": "1 εκτέλεση θα ενεργοποιηθεί.",
+    "affected_other": "{{count}} εκτελέσεις θα ενεργοποιηθούν.",
+    "affectedNone": "Δεν βρέθηκαν εκτελέσεις που να ταιριάζουν με τα 
κριτήρια.",
+    "allRuns": "Όλες οι Εκτελέσεις",
+    "backwards": "Εκτέλεση Αντίστροφα",
+    "dateRange": "Εύρος Ημερομηνιών",
+    "errorStartDateBeforeEndDate": "Η ημερομηνία έναρξης πρέπει να είναι πριν 
την ημερομηνία λήξης",
+    "maxRuns": "Μέγιστες Ενεργές Εκτελέσεις",
+    "missingAndErroredRuns": "Εκτελέσεις που λείπουν ή απέτυχαν",
+    "missingRuns": "Εκτελέσεις που λείπουν",
+    "reprocessBehavior": "Συμπεριφορά Επαναεπεξεργασίας",
+    "run": "Εκτέλεση Backfill",
+    "selectDescription": "Εκτελέστε αυτό το Dag για ένα εύρος ημερομηνιών",
+    "selectLabel": "Backfill",
+    "title": "Εκτέλεση Backfill",
+    "toaster": {
+      "success": {
+        "description": "Οι εργασίες backfill ενεργοποιήθηκαν με επιτυχία.",
+        "title": "Το Backfill δημιουργήθηκε"
+      }
+    },
+    "tooltip": "Το Backfill απαιτεί πρόγραμμα",
+    "unpause": "Αναίρεση παύσης του {{dag_display_name}} κατά την 
ενεργοποίηση",
+    "validation": {
+      "datesRequired": "Πρέπει να δοθούν και η ημερομηνία έναρξης και λήξης 
του διαστήματος δεδομένων.",
+      "startBeforeEnd": "Η ημερομηνία έναρξης πρέπει να είναι μικρότερη ή ίση 
με την ημερομηνία λήξης."
+    }
+  },
+  "banner": {
+    "backfillInProgress": "Το Backfill είναι σε εξέλιξη",
+    "cancel": "Ακύρωση backfill",
+    "pause": "Παύση backfill",
+    "unpause": "Αναίρεση παύσης backfill"
+  },
+  "clipboard": {
+    "copy": "Αντιγραφή"
+  },
+  "close": "Κλείσιμο",
+  "configForm": {
+    "advancedOptions": "Προχωρημένες Επιλογές",
+    "configJson": "Ρυθμίσεις JSON",
+    "invalidJson": "Μη έγκυρη μορφή JSON: {{errorMessage}}"
+  },
+  "dagWarnings": {
+    "error_one": "1 Σφάλμα",
+    "error_other": "{{count}} Σφάλματα",

Review Comment:
   This a feature in the i18n library where we pick the right string based on 
the count
   
   Looks like it might be https://www.i18next.com/translation-function/plurals, 
and we use it like this ` translate("dagWarnings.warning", { count: 
warnings.length })`
   
   However in this case, we don't use anything other than `error_one` directly, 
which is probably wrong itself.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to