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

feat: Croatian localization support #1004

Merged
merged 3 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.8.4

* feat: added Croatian localization support

## 4.8.3

* fix: `ScaffoldPage.padding` is correctly applied ([#986](https://github.com/bdlukaa/fluent_ui/issues/986))
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ FluentUI widgets currently supports out-of-the-box an wide number of languages,
- Bahasa Indonesia (@ekasetiawans)
- Belarusian (@superkeka)
- Czech (@morning4coffe-dev)
- Croatian (@ZeroMolecule)
- Dutch (@h3x4d3c1m4l)
- English
- French (@WinXaito)
Expand Down
127 changes: 127 additions & 0 deletions lib/l10n/intl_hr.arb
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
{
"@@locale": "hr",
"backButtonTooltip": "Natrag",
"@backButtonTooltip": {
"description": "The tooltip for the back button on [NavigationAppBar]."
},
"closeButtonLabel": "Zatvori",
"@closeButtonLabel": {
"description": "Label for \"close\" buttons and menu items."
},
"searchLabel": "Pretraži",
"@searchLabel": {
"description": "Label for \"search\" text fields."
},
"closeNavigationTooltip": "Zatvori navigaciju",
"@closeNavigationTooltip": {
"description": "The tooltip for the toggle navigation button."
},
"openNavigationTooltip": "Otvori navigaciju",
"@openNavigationTooltip": {
"description": "The tooltip for the toogle navigation button."
},
"clickToSearch": "Kliknite za pretraživanje",
"@clickToSearch": {
"description": "The tooltip for the \"Click to Search\" button."
},
"modalBarrierDismissLabel": "Odbaci",
"@modalBarrierDismissLabel": {
"description": "Label read out by accessibility tools (TalkBack or VoiceOver) for a modal barrier to indicate that a tap dismisses the barrier. A modal barrier can for example be found behind an alert or popup to block user interaction with elements behind it."
},
"minimizeWindowTooltip": "Minimiziraj",
"@minimizeWindowTooltip": {
"description": "The tooltip used by the \"Minimize\" button on desktop windows."
},
"restoreWindowTooltip": "Vrati",
"@restoreWindowTooltip": {
"description": "The tooltip used by the \"Restore\" button on desktop windows."
},
"closeWindowTooltip": "Zatvori",
"@closeWindowTooltip": {
"description": "The tooltip used by the \"Close\" button on desktop windows."
},
"dialogLabel": "Dijalog",
"@dialogLabel": {
"description": "The dialog label."
},
"cutActionLabel": "Izreži",
"@cutActionLabel": {
"description": "The label for the cut action on the text selection controls."
},
"copyActionLabel": "Kopiraj",
"@copyActionLabel": {
"description": "The label for the copy action on the text selection controls."
},
"pasteActionLabel": "Zalijepi",
"@pasteActionLabel": {
"description": "The label for the paste button on the text selection controls."
},
"selectAllActionLabel": "Odaberi sve",
"@selectAllActionLabel": {
"description": "The label for the select all button on the text selection controls."
},
"newTabLabel": "Dodaj novi tab",
"@newTabLabel": {
"description": "The label used by [TabView]'s new button."
},
"closeTabLabelSuffix": "Zatvori tab",
"@closeTabLabelSuffix": {
"description": "The label used by [TabView]'s close button."
},
"scrollTabBackwardLabel": "Pomakni listu tabova unatrag",
"@scrollTabBackwardLabel": {
"description": "The label used by [TabView]'s scroll backward button."
},
"scrollTabForwardLabel": "Pomakni listu tabova unaprijed",
"@scrollTabForwardLabel": {
"description": "The label used by [TabView]'s scroll forward button."
},
"noResultsFoundLabel": "Nema pronađenih rezultata",
"@noResultsFoundLabel": {
"description": "The label used by [AutoSuggestBox] when the results can't be found."
},
"copyActionTooltip": "Kopiraj odabrani sadržaj u međuspremnik",
"@copyActionTooltip": {
"description": "The tooltip for the copy action on the text selection controls."
},
"cutActionTooltip": "Ukloni odabrani sadržaj i stavi ga u međuspremnik",
"@cutActionTooltip": {
"description": "The tooltip for the cut action on the text selection controls."
},
"pasteActionTooltip": "Umetni sadržaj međuspremnika na trenutnu lokaciju",
"@pasteActionTooltip": {
"description": "The tooltip for the paste action on the text selection controls."
},
"selectAllActionTooltip": "Odaberi sav sadržaj",
"@selectAllActionTooltip": {
"description": "The tooltip for the select all action on the text selection controls."
},
"hour": "sat",
"@hour": {
"description": "The text used by [TimePicker] for the hour field."
},
"minute": "minuta",
"@minute": {
"description": "The text used by [TimePicker] for the minute field."
},
"am": "AM",
"@am": {
"description": "The text used by [TimePicker] for the AM field."
},
"pm": "PM",
"@pm": {
"description": "The text used by [TimePicker] for the PM field."
},
"month": "mjesec",
"@month": {
"description": "The text used by [DatePicker] for the month field"
},
"day": "dan",
"@day": {
"description": "The text used by [DatePicker] for the day field"
},
"year": "godina",
"@year": {
"description": "The text used by [DatePicker] for the year field"
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fluent_ui
description: Implements Windows UI in Flutter. Based on the official documentation
version: 4.8.3
version: 4.8.4
homepage: https://bdlukaa.github.io/fluent_ui/#/
repository: https://github.com/bdlukaa/fluent_ui
issue_tracker: https://github.com/bdlukaa/fluent_ui/issues
Expand Down
Loading