-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use more common syntax for message placeholders (#6948)
**Related Issue:** N/A ## Summary Using the more common `{placeholder}` syntax should help minimize confusion with string interpolation in template literals.
- Loading branch information
Showing
87 changed files
with
214 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Rating", | ||
"stars": "Stars: ${num}" | ||
"stars": "Stars: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "التقييم", | ||
"stars": "النجوم: ${num}" | ||
"stars": "النجوم: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_bg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Оценка", | ||
"stars": "Звезди: ${num}" | ||
"stars": "Звезди: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_bs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Ocjena", | ||
"stars": "Zvjezdice: ${num}" | ||
"stars": "Zvjezdice: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ca.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Qualificació", | ||
"stars": "Estrelles: ${num}" | ||
"stars": "Estrelles: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_cs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Hodnocení", | ||
"stars": "Počet hvězdiček: ${num}" | ||
"stars": "Počet hvězdiček: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_da.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Vurdering", | ||
"stars": "Stjerner: ${num}" | ||
"stars": "Stjerner: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_de.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Bewertung", | ||
"stars": "Sterne: ${num}" | ||
"stars": "Sterne: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_el.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Αξιολόγηση", | ||
"stars": "Αστέρια: ${num}" | ||
"stars": "Αστέρια: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Rating", | ||
"stars": "Stars: ${num}" | ||
"stars": "Stars: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_es.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Calificación", | ||
"stars": "Estrellas: ${num}" | ||
"stars": "Estrellas: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_et.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Hinnang", | ||
"stars": "Tärne: ${num}" | ||
"stars": "Tärne: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_fi.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Arviointi", | ||
"stars": "Tähdet: ${num}" | ||
"stars": "Tähdet: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_fr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Évaluation", | ||
"stars": "Étoiles : ${num}" | ||
"stars": "Étoiles : {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_he.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "דירוג", | ||
"stars": "כוכבים: ${num}" | ||
"stars": "כוכבים: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_hr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Ocjena", | ||
"stars": "Zvjezdice: ${num}" | ||
"stars": "Zvjezdice: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_hu.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Értékelés", | ||
"stars": "Csillagok: ${num}" | ||
"stars": "Csillagok: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_id.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Peringkat", | ||
"stars": "Bintang: ${num}" | ||
"stars": "Bintang: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_it.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Valutazione", | ||
"stars": "Stelle: ${num}" | ||
"stars": "Stelle: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ja.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "評価", | ||
"stars": "星: ${num}" | ||
"stars": "星: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ko.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "평점", | ||
"stars": "별: ${num}개" | ||
"stars": "별: {num}개" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_lt.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Vertinimas", | ||
"stars": "Žvaigždutės ${num}" | ||
"stars": "Žvaigždutės {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_lv.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Novērtējums", | ||
"stars": "Zvaigznes: ${num}" | ||
"stars": "Zvaigznes: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_nl.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Beoordeling", | ||
"stars": "Sterren: ${num}" | ||
"stars": "Sterren: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_no.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Vurdering", | ||
"stars": "Stjerner: ${num}" | ||
"stars": "Stjerner: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_pl.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Ocena", | ||
"stars": "Gwiazdki: ${num}" | ||
"stars": "Gwiazdki: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_pt-BR.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Classificação", | ||
"stars": "Estrelas: ${num}" | ||
"stars": "Estrelas: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_pt-PT.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Avaliação", | ||
"stars": "Estrelas: ${num}" | ||
"stars": "Estrelas: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ro.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Calificativ", | ||
"stars": "Stele: ${num}" | ||
"stars": "Stele: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_ru.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Рейтинг", | ||
"stars": "Звезды: ${num}" | ||
"stars": "Звезды: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_sk.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Hodnotenie", | ||
"stars": "Hviezdičky: ${num}" | ||
"stars": "Hviezdičky: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_sl.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Ocena", | ||
"stars": "Zvezde: ${num}" | ||
"stars": "Zvezde: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_sr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Ocena", | ||
"stars": "Zvezdice: ${num}" | ||
"stars": "Zvezdice: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_sv.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Bedömning", | ||
"stars": "Stjärnor: ${num}" | ||
"stars": "Stjärnor: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_th.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "อันดับ", | ||
"stars": "ดาว: ${num}" | ||
"stars": "ดาว: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_tr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Derecelendirme", | ||
"stars": "Yıldız: ${num}" | ||
"stars": "Yıldız: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_uk.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Рейтинг", | ||
"stars": "Зірки: ${num}" | ||
"stars": "Зірки: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_vi.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "Xếp loại", | ||
"stars": "Sao: ${num}" | ||
"stars": "Sao: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_zh-CN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "评级", | ||
"stars": "星:${num}" | ||
"stars": "星:{num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_zh-HK.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "評級次數", | ||
"stars": "星星: ${num}" | ||
"stars": "星星: {num}" | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/rating/assets/rating/t9n/messages_zh-TW.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"rating": "評級次數", | ||
"stars": "星星: ${num}" | ||
"stars": "星星: {num}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/text-area/assets/text-area/t9n/messages.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"invalid": "Invalid", | ||
"tooLong": "Character limit exceeded", | ||
"longText": "The current character length is ${currentLength}, which exceeds the maximum character length of ${maxLength}." | ||
"longText": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}." | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/text-area/assets/text-area/t9n/messages_en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"invalid": "Invalid", | ||
"tooLong": "Character limit exceeded", | ||
"longText": "The current character length is ${currentLength}, which exceeds the maximum character length of ${maxLength}." | ||
"longText": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Reordering ${itemLabel}, current position ${position} of ${total}.", | ||
"dragHandleChange": "${itemLabel}, new position ${position} of ${total}. Press space to confirm.", | ||
"dragHandleCommit": "${itemLabel}, current position ${position} of ${total}.", | ||
"dragHandleIdle": "${itemLabel}, press space and use arrow keys to reorder content. Current position ${position} of ${total}." | ||
"dragHandleActive": "Reordering {itemLabel}, current position {position} of {total}.", | ||
"dragHandleChange": "{itemLabel}, new position {position} of {total}. Press space to confirm.", | ||
"dragHandleCommit": "{itemLabel}, current position {position} of {total}.", | ||
"dragHandleIdle": "{itemLabel}, press space and use arrow keys to reorder content. Current position {position} of {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_ar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "إعادة ترتيب ${itemLabel}، الموضع الحالي ${position} من ${total}.", | ||
"dragHandleChange": "${itemLabel}، الموضع الجديد ${position} من ${total} اضغط على مفتاح المسافة للتأكيد.", | ||
"dragHandleCommit": "${itemLabel}، الموضع الحالي ${position} من ${total}.", | ||
"dragHandleIdle": "${itemLabel}، اضغط على مفتاح المسافة واستخدام مفاتيح الأسهم لإعادة ترتيب المحتوى. الموضع الحالي ${position} من ${total}." | ||
"dragHandleActive": "إعادة ترتيب {itemLabel}، الموضع الحالي {position} من {total}.", | ||
"dragHandleChange": "{itemLabel}، الموضع الجديد {position} من {total} اضغط على مفتاح المسافة للتأكيد.", | ||
"dragHandleCommit": "{itemLabel}، الموضع الحالي {position} من {total}.", | ||
"dragHandleIdle": "{itemLabel}، اضغط على مفتاح المسافة واستخدام مفاتيح الأسهم لإعادة ترتيب المحتوى. الموضع الحالي {position} من {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_bg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Пренареждане ${itemLabel}, текущата позиция е ${position} от ${total}.", | ||
"dragHandleChange": "${itemLabel}, новата позиция е${position} от ${total}. Натиснете интервала за потвърждаване.", | ||
"dragHandleCommit": "${itemLabel}, текущата позиция е ${position} от ${total}.", | ||
"dragHandleIdle": "${itemLabel}, натиснете интервал и използвайте клавишите със стрелки, за да промените реда на съдържанието. Текущата позиция е ${position} от ${total}." | ||
"dragHandleActive": "Пренареждане {itemLabel}, текущата позиция е {position} от {total}.", | ||
"dragHandleChange": "{itemLabel}, новата позиция е{position} от {total}. Натиснете интервала за потвърждаване.", | ||
"dragHandleCommit": "{itemLabel}, текущата позиция е {position} от {total}.", | ||
"dragHandleIdle": "{itemLabel}, натиснете интервал и използвайте клавишите със стрелки, за да промените реда на съдържанието. Текущата позиция е {position} от {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_bs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Promjena redoslijeda ${itemLabel}, trenutačni položaj ${position} od ${total}.", | ||
"dragHandleChange": "${itemLabel}, novi položaj ${position} od ${total}. Pritisnite razmaknicu za potvrdu.", | ||
"dragHandleCommit": "${itemLabel}, trenutačni položaj ${position} od ${total}.", | ||
"dragHandleIdle": "${itemLabel}, pritisnite razmaknicu i upotrijebite tipke sa strelicama za promjenu redoslijeda sadržaja. Trenutačni položaj ${position} od ${total}." | ||
"dragHandleActive": "Promjena redoslijeda {itemLabel}, trenutačni položaj {position} od {total}.", | ||
"dragHandleChange": "{itemLabel}, novi položaj {position} od {total}. Pritisnite razmaknicu za potvrdu.", | ||
"dragHandleCommit": "{itemLabel}, trenutačni položaj {position} od {total}.", | ||
"dragHandleIdle": "{itemLabel}, pritisnite razmaknicu i upotrijebite tipke sa strelicama za promjenu redoslijeda sadržaja. Trenutačni položaj {position} od {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_ca.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "S'està canviant l'ordre de ${itemLabel}, posició actual ${position} de ${total}.", | ||
"dragHandleChange": "${itemLabel}, posició nova ${position} de ${total}. Premeu la tecla d'espai per confirmar-ho.", | ||
"dragHandleCommit": "${itemLabel}, posició actual ${position} de ${total}.", | ||
"dragHandleIdle": "${itemLabel}, premeu la tecla d'espai i feu servir les tecles de fletxa per canviar l'ordre del contingut. Posició actual ${position} de ${total}." | ||
"dragHandleActive": "S'està canviant l'ordre de {itemLabel}, posició actual {position} de {total}.", | ||
"dragHandleChange": "{itemLabel}, posició nova {position} de {total}. Premeu la tecla d'espai per confirmar-ho.", | ||
"dragHandleCommit": "{itemLabel}, posició actual {position} de {total}.", | ||
"dragHandleIdle": "{itemLabel}, premeu la tecla d'espai i feu servir les tecles de fletxa per canviar l'ordre del contingut. Posició actual {position} de {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_cs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Změna pořadí ${itemLabel}, aktuální pozice ${position} z ${total}.", | ||
"dragHandleChange": "${itemLabel}, nová pozice ${position} z ${total}. Potvrďte stisknutím mezerníku.", | ||
"dragHandleCommit": "${itemLabel}, aktuální pozice ${position} z ${total}.", | ||
"dragHandleIdle": "${itemLabel}, stiskněte mezerník a pomocí šipek změňte pořadí obsahu. Aktuální pozice ${position} z ${total}." | ||
"dragHandleActive": "Změna pořadí {itemLabel}, aktuální pozice {position} z {total}.", | ||
"dragHandleChange": "{itemLabel}, nová pozice {position} z {total}. Potvrďte stisknutím mezerníku.", | ||
"dragHandleCommit": "{itemLabel}, aktuální pozice {position} z {total}.", | ||
"dragHandleIdle": "{itemLabel}, stiskněte mezerník a pomocí šipek změňte pořadí obsahu. Aktuální pozice {position} z {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_da.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Genbestiller ${itemLabel}, aktuel position ${position} for ${total}.", | ||
"dragHandleChange": "${itemLabel}, ny position ${position} for ${total}. Tryk på mellemrumstasten for at bekræfte.", | ||
"dragHandleCommit": "${itemLabel}, aktuel position ${position} for ${total}.", | ||
"dragHandleIdle": "${itemLabel}, tryk på mellemrumstasten og brug piletasterne for at bestille indholdet igen. Aktuel position ${position} for ${total}." | ||
"dragHandleActive": "Genbestiller {itemLabel}, aktuel position {position} for {total}.", | ||
"dragHandleChange": "{itemLabel}, ny position {position} for {total}. Tryk på mellemrumstasten for at bekræfte.", | ||
"dragHandleCommit": "{itemLabel}, aktuel position {position} for {total}.", | ||
"dragHandleIdle": "{itemLabel}, tryk på mellemrumstasten og brug piletasterne for at bestille indholdet igen. Aktuel position {position} for {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_de.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "${itemLabel} wird neu angeordnet, aktuelle Position ${position} von ${total}.", | ||
"dragHandleChange": "${itemLabel}, neue Position ${position} von ${total}. Drücken Sie zur Bestätigung die Leertaste.", | ||
"dragHandleCommit": "${itemLabel}, aktuelle Position ${position} von ${total}.", | ||
"dragHandleIdle": "${itemLabel}, drücken Sie die Leertaste und verwenden Sie die Pfeiltasten, um die Reihenfolge des Inhalts zu ändern. Aktuelle Position ${position} von ${total}." | ||
"dragHandleActive": "{itemLabel} wird neu angeordnet, aktuelle Position {position} von {total}.", | ||
"dragHandleChange": "{itemLabel}, neue Position {position} von {total}. Drücken Sie zur Bestätigung die Leertaste.", | ||
"dragHandleCommit": "{itemLabel}, aktuelle Position {position} von {total}.", | ||
"dragHandleIdle": "{itemLabel}, drücken Sie die Leertaste und verwenden Sie die Pfeiltasten, um die Reihenfolge des Inhalts zu ändern. Aktuelle Position {position} von {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_el.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Αναδιάταξη ${itemLabel}, τρέχουσα θέση ${position} του ${total}.", | ||
"dragHandleChange": "${itemLabel}, νέα θέση ${position} του ${total}. Πατήστε space για επιβεβαίωση.", | ||
"dragHandleCommit": "${itemLabel}, τρέχουσα θέση ${position} του ${total}.", | ||
"dragHandleIdle": "${itemLabel}, πατήστε space και χρησιμοποιήστε τα βέλη για να αναδιατάξετε το περιεχόμενο. Τρέχουσα θέση ${position} του ${total}." | ||
"dragHandleActive": "Αναδιάταξη {itemLabel}, τρέχουσα θέση {position} του {total}.", | ||
"dragHandleChange": "{itemLabel}, νέα θέση {position} του {total}. Πατήστε space για επιβεβαίωση.", | ||
"dragHandleCommit": "{itemLabel}, τρέχουσα θέση {position} του {total}.", | ||
"dragHandleIdle": "{itemLabel}, πατήστε space και χρησιμοποιήστε τα βέλη για να αναδιατάξετε το περιεχόμενο. Τρέχουσα θέση {position} του {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Reordering ${itemLabel}, current position ${position} of ${total}.", | ||
"dragHandleChange": "${itemLabel}, new position ${position} of ${total}. Press space to confirm.", | ||
"dragHandleCommit": "${itemLabel}, current position ${position} of ${total}.", | ||
"dragHandleIdle": "${itemLabel}, press space and use arrow keys to reorder content. Current position ${position} of ${total}." | ||
"dragHandleActive": "Reordering {itemLabel}, current position {position} of {total}.", | ||
"dragHandleChange": "{itemLabel}, new position {position} of {total}. Press space to confirm.", | ||
"dragHandleCommit": "{itemLabel}, current position {position} of {total}.", | ||
"dragHandleIdle": "{itemLabel}, press space and use arrow keys to reorder content. Current position {position} of {total}." | ||
} |
8 changes: 4 additions & 4 deletions
8
packages/calcite-components/src/components/value-list/assets/value-list/t9n/messages_es.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"dragHandleActive": "Reordenamiento de ${itemLabel} , posición actual ${position} de ${total}.", | ||
"dragHandleChange": "${itemLabel}, nueva posición ${position} de ${total}. Presione la barra espaciadora para confirmar.", | ||
"dragHandleCommit": "${itemLabel}, posición actual ${position} de ${total}.", | ||
"dragHandleIdle": "${itemLabel}, presione la barra espaciadora y utilice las teclas de flecha para reordenar el contenido. Posición actual ${position} de ${total}." | ||
"dragHandleActive": "Reordenamiento de {itemLabel} , posición actual {position} de {total}.", | ||
"dragHandleChange": "{itemLabel}, nueva posición {position} de {total}. Presione la barra espaciadora para confirmar.", | ||
"dragHandleCommit": "{itemLabel}, posición actual {position} de {total}.", | ||
"dragHandleIdle": "{itemLabel}, presione la barra espaciadora y utilice las teclas de flecha para reordenar el contenido. Posición actual {position} de {total}." | ||
} |
Oops, something went wrong.