fix: add pluralization (classification model) (#20838)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions

Co-authored-by: Artem Vladimirov <a.vladimirov@small.kz>
This commit is contained in:
Artem Vladimirov 2025-11-07 17:40:48 +05:00 committed by GitHub
parent 88a2f6c991
commit a15399fed5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,8 @@
"deleteModel": { "deleteModel": {
"title": "Delete Classification Model", "title": "Delete Classification Model",
"single": "Are you sure you want to delete {{name}}? This will permanently delete all associated data including images and training data. This action cannot be undone.", "single": "Are you sure you want to delete {{name}}? This will permanently delete all associated data including images and training data. This action cannot be undone.",
"desc": "Are you sure you want to delete {{count}} model(s)? This will permanently delete all associated data including images and training data. This action cannot be undone." "desc_one": "Are you sure you want to delete {{count}} model? This will permanently delete all associated data including images and training data. This action cannot be undone.",
"desc_other": "Are you sure you want to delete {{count}} models? This will permanently delete all associated data including images and training data. This action cannot be undone."
}, },
"edit": { "edit": {
"title": "Edit Classification Model", "title": "Edit Classification Model",
@ -50,11 +51,13 @@
}, },
"deleteDatasetImages": { "deleteDatasetImages": {
"title": "Delete Dataset Images", "title": "Delete Dataset Images",
"desc": "Are you sure you want to delete {{count}} images from {{dataset}}? This action cannot be undone and will require re-training the model." "desc_one": "Are you sure you want to delete {{count}} image from {{dataset}}? This action cannot be undone and will require re-training the model.",
"desc_other": "Are you sure you want to delete {{count}} images from {{dataset}}? This action cannot be undone and will require re-training the model."
}, },
"deleteTrainImages": { "deleteTrainImages": {
"title": "Delete Train Images", "title": "Delete Train Images",
"desc": "Are you sure you want to delete {{count}} images? This action cannot be undone." "desc_one": "Are you sure you want to delete {{count}} image? This action cannot be undone.",
"desc_other": "Are you sure you want to delete {{count}} images? This action cannot be undone."
}, },
"renameCategory": { "renameCategory": {
"title": "Rename Class", "title": "Rename Class",