fix(frontend): correct plural forms for count labels
This commit is contained in:
parent
820d58ea37
commit
a7ad956a62
2 changed files with 156 additions and 16 deletions
|
|
@ -28,10 +28,21 @@
|
|||
"dashboard_latestSnapshot": "Ostatni stan skóry",
|
||||
"dashboard_recentRoutines": "Ostatnie rutyny",
|
||||
"dashboard_noSnapshots": "Brak wpisów o stanie skóry.",
|
||||
"dashboard_noRoutines": "Brak rutyno w ciągu ostatnich 2 tygodni.",
|
||||
"dashboard_noRoutines": "Brak rutyn w ciągu ostatnich 2 tygodni.",
|
||||
|
||||
"products_title": "Produkty",
|
||||
"products_count": "{count} produktów",
|
||||
"products_count": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} produkt",
|
||||
"countPlural=few": "{count} produkty",
|
||||
"countPlural=many": "{count} produktów",
|
||||
"countPlural=*": "{count} produktów"
|
||||
}
|
||||
}
|
||||
],
|
||||
"products_addNew": "+ Dodaj produkt",
|
||||
"products_suggest": "Sugeruj",
|
||||
"products_suggestTitle": "Sugestie zakupowe",
|
||||
|
|
@ -83,10 +94,21 @@
|
|||
"inventory_confirmDelete": "Usunąć to opakowanie?",
|
||||
|
||||
"routines_title": "Rutyny",
|
||||
"routines_count": "{count} rutyno (ostatnie 30 dni)",
|
||||
"routines_count": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} rutyna (ostatnie 30 dni)",
|
||||
"countPlural=few": "{count} rutyny (ostatnie 30 dni)",
|
||||
"countPlural=many": "{count} rutyn (ostatnie 30 dni)",
|
||||
"countPlural=*": "{count} rutyn (ostatnie 30 dni)"
|
||||
}
|
||||
}
|
||||
],
|
||||
"routines_suggestAI": "Zaproponuj rutynę AI",
|
||||
"routines_addNew": "+ Nowa rutyna",
|
||||
"routines_noRoutines": "Nie znaleziono rutyno.",
|
||||
"routines_noRoutines": "Nie znaleziono rutyn.",
|
||||
"routines_newTitle": "Nowa rutyna",
|
||||
"routines_backToList": "← Rutyny",
|
||||
"routines_detailsTitle": "Szczegóły rutyny",
|
||||
|
|
@ -160,7 +182,18 @@
|
|||
"suggest_batchContextPlaceholder": "np. słoneczna podróż do Włoch, aktywny urlop górski...",
|
||||
"suggest_generatePlan": "Generuj plan",
|
||||
"suggest_generatingPlan": "Generuję plan…",
|
||||
"suggest_planTitle": "Plan ({count} dni)",
|
||||
"suggest_planTitle": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "Plan ({count} dzień)",
|
||||
"countPlural=few": "Plan ({count} dni)",
|
||||
"countPlural=many": "Plan ({count} dni)",
|
||||
"countPlural=*": "Plan ({count} dni)"
|
||||
}
|
||||
}
|
||||
],
|
||||
"suggest_saveAllRoutines": "Zapisz wszystkie rutyny",
|
||||
"suggest_amSteps": "kroków",
|
||||
"suggest_pmSteps": "kroków",
|
||||
|
|
@ -177,7 +210,18 @@
|
|||
"suggest_stepOptionalBadge": "opcjonalny",
|
||||
|
||||
"medications_title": "Leki",
|
||||
"medications_count": "{count} wpisów",
|
||||
"medications_count": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} wpis",
|
||||
"countPlural=few": "{count} wpisy",
|
||||
"countPlural=many": "{count} wpisów",
|
||||
"countPlural=*": "{count} wpisów"
|
||||
}
|
||||
}
|
||||
],
|
||||
"medications_addNew": "+ Dodaj lek",
|
||||
"medications_newTitle": "Nowy lek",
|
||||
"medications_kind": "Rodzaj",
|
||||
|
|
@ -187,7 +231,18 @@
|
|||
"medications_activeSubstancePlaceholder": "np. cholekalcyferol",
|
||||
"medications_notes": "Notatki",
|
||||
"medications_added": "Lek dodany.",
|
||||
"medications_usages": "{count} użyć",
|
||||
"medications_usages": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} użycie",
|
||||
"countPlural=few": "{count} użycia",
|
||||
"countPlural=many": "{count} użyć",
|
||||
"countPlural=*": "{count} użyć"
|
||||
}
|
||||
}
|
||||
],
|
||||
"medications_noMedications": "Brak leków.",
|
||||
"medications_kindPrescription": "Na receptę",
|
||||
"medications_kindOtc": "OTC (bez recepty)",
|
||||
|
|
@ -196,7 +251,18 @@
|
|||
"medications_kindOther": "Inne",
|
||||
|
||||
"labResults_title": "Wyniki badań",
|
||||
"labResults_count": "{count} wyników",
|
||||
"labResults_count": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} wynik",
|
||||
"countPlural=few": "{count} wyniki",
|
||||
"countPlural=many": "{count} wyników",
|
||||
"countPlural=*": "{count} wyników"
|
||||
}
|
||||
}
|
||||
],
|
||||
"labResults_addNew": "+ Dodaj wynik",
|
||||
"labResults_newTitle": "Nowy wynik badania",
|
||||
"labResults_flagFilter": "Flaga:",
|
||||
|
|
@ -222,7 +288,18 @@
|
|||
"labResults_noResults": "Nie znaleziono wyników badań.",
|
||||
|
||||
"skin_title": "Stan skóry",
|
||||
"skin_count": "{count} wpisów",
|
||||
"skin_count": [
|
||||
{
|
||||
"declarations": ["input count", "local countPlural = count: plural"],
|
||||
"selectors": ["countPlural"],
|
||||
"match": {
|
||||
"countPlural=one": "{count} wpis",
|
||||
"countPlural=few": "{count} wpisy",
|
||||
"countPlural=many": "{count} wpisów",
|
||||
"countPlural=*": "{count} wpisów"
|
||||
}
|
||||
}
|
||||
],
|
||||
"skin_addNew": "+ Dodaj wpis",
|
||||
"skin_aiAnalysisTitle": "Analiza AI ze zdjęć",
|
||||
"skin_aiUploadText": "Prześlij 1–3 zdjęcia skóry. AI wypełni pola formularza poniżej.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue