Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ICU strings for proper singular / plural in Search fields #23530

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2438,7 +2438,7 @@
},
"create_helper": "Create helper",
"no_helpers": "Looks like you don't have any helpers yet!",
"search": "Search {number} helpers",
"search": "Search {number} {number, plural,\n one {helper}\n other {helpers}\n}",
"error_information": "Error information"
},
"dialog": {
Expand Down Expand Up @@ -2963,7 +2963,7 @@
"assign_category": "Assign category",
"no_category_support": "You can't assign a category to this automation",
"no_category_entity_reg": "To assign a category to an automation it needs to have a unique ID.",
"search": "Search {number} automations",
"search": "Search {number} {number, plural,\n one {automation}\n other {automations}\n}",
"headers": {
"toggle": "Enable/disable",
"name": "Name",
Expand Down Expand Up @@ -3882,7 +3882,7 @@
"duplicate": "[%key:ui::common::duplicate%]",
"empty_header": "Create your first script",
"empty_text": "A script is a sequence of actions that can be run from a dashboard, an automation, or be triggered by voice. For example, a ''Wake-up routine''' script that gradually turns on the light in the bedroom and opens the blinds after a delay.",
"search": "Search {number} scripts",
"search": "Search {number} {number, plural,\n one {script}\n other {scripts}\n}",
"migrate_script": "Migrate script?",
"migrate_script_description": "You can migrate this script, so it can be edited from the UI. After it is migrated and you have saved it, you will have to manually delete your old script from your configuration. Do you want to migrate this script?"
},
Expand Down Expand Up @@ -3996,7 +3996,7 @@
"no_category_entity_reg": "To assign an category to an scene it needs to have a unique ID.",
"empty_header": "Create your first scene",
"empty_text": "Scenes capture entities' states, so you can re-experience the same scene later on. For example, a ''Watching TV'' scene that dims the living room lights, sets a warm white color and turns on the TV.",
"search": "Search {number} scenes"
"search": "Search {number} {number, plural,\n one {scene}\n other {scenes}\n}"
},
"editor": {
"review_mode": "Review Mode",
Expand Down Expand Up @@ -4368,7 +4368,7 @@
"confirm_delete_integration": "Are you sure you want to remove this device from {integration}?",
"error_delete": "Error deleting device",
"picker": {
"search": "Search {number} devices",
"search": "Search {number} {number, plural,\n one {device}\n other {devices}\n}",
"state": "Status",
"bulk_actions": {
"move_area": "Move to area",
Expand All @@ -4384,7 +4384,7 @@
"header": "Entities",
"introduction": "Home Assistant keeps a registry of every entity it has ever seen that can be uniquely identified. Each of these entities will have an entity ID assigned which will be reserved for just this entity.",
"introduction2": "Use the entity registry to override the name, change the entity ID or remove the entry from Home Assistant.",
"search": "Search {number} entities",
"search": "Search {number} {number, plural,\n one {entity}\n other {entities}\n}",
"unnamed_entity": "Unnamed entity",
"status": {
"available": "Available",
Expand Down
Loading