-
-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #655 from broderbluff/master
added swedish translation
- Loading branch information
Showing
3 changed files
with
138 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
import 'fluent_localizations.dart'; | ||
|
||
/// The translations for Swedish (`sv`). | ||
class FluentLocalizationsSv extends FluentLocalizations { | ||
FluentLocalizationsSv([String locale = 'sv']) : super(locale); | ||
|
||
@override | ||
String get backButtonTooltip => 'Tillbaka'; | ||
|
||
@override | ||
String get closeButtonLabel => 'Stäng'; | ||
|
||
@override | ||
String get searchLabel => 'Sök'; | ||
|
||
@override | ||
String get closeNavigationTooltip => 'Stäng navigation'; | ||
|
||
@override | ||
String get openNavigationTooltip => 'Öppna navigation'; | ||
|
||
@override | ||
String get clickToSearch => 'Klicka för att söka'; | ||
|
||
@override | ||
String get modalBarrierDismissLabel => 'Avfärda'; | ||
|
||
@override | ||
String get minimizeWindowTooltip => 'Minimera'; | ||
|
||
@override | ||
String get restoreWindowTooltip => 'Återställ'; | ||
|
||
@override | ||
String get closeWindowTooltip => 'Stäng'; | ||
|
||
@override | ||
String get dialogLabel => 'Dialog'; | ||
|
||
@override | ||
String get cutActionLabel => 'Klipp ut'; | ||
|
||
@override | ||
String get copyActionLabel => 'Kopiera'; | ||
|
||
@override | ||
String get pasteActionLabel => 'Klistra in'; | ||
|
||
@override | ||
String get selectAllActionLabel => 'Markera allt'; | ||
|
||
@override | ||
String get newTabLabel => 'Ny flik'; | ||
|
||
@override | ||
String get closeTabLabelSuffix => 'Stäng flik'; | ||
|
||
@override | ||
String get scrollTabBackwardLabel => 'Rulla fliklistan bakåt'; | ||
|
||
@override | ||
String get scrollTabForwardLabel => 'Rulla fliklistan framåt'; | ||
|
||
@override | ||
String get noResultsFoundLabel => 'Inga resultat'; | ||
|
||
@override | ||
String get copyActionTooltip => 'Kopiera det markerade till urklipp'; | ||
|
||
@override | ||
String get cutActionTooltip => 'Klipp ut det markerade till urklipp'; | ||
|
||
@override | ||
String get pasteActionTooltip => 'Klistra in från urklipp'; | ||
|
||
@override | ||
String get selectAllActionTooltip => 'Markera allt'; | ||
|
||
@override | ||
String get hour => 'timme'; | ||
|
||
@override | ||
String get minute => 'minut'; | ||
|
||
@override | ||
String get am => 'AM'; | ||
|
||
@override | ||
String get pm => 'PM'; | ||
|
||
@override | ||
String get month => 'månad'; | ||
|
||
@override | ||
String get day => 'dag'; | ||
|
||
@override | ||
String get year => 'år'; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"@@locale": "sv", | ||
"backButtonTooltip": "Tillbaka", | ||
"closeButtonLabel": "Stäng", | ||
"searchLabel": "Sök", | ||
"closeNavigationTooltip": "Stäng navigation", | ||
"openNavigationTooltip": "Öppna navigation", | ||
"clickToSearch": "Klicka för att söka", | ||
"modalBarrierDismissLabel": "Avfärda", | ||
"minimizeWindowTooltip": "Minimera", | ||
"restoreWindowTooltip": "Återställ", | ||
"closeWindowTooltip": "Stäng", | ||
"dialogLabel": "Dialog", | ||
"cutActionLabel": "Klipp ut", | ||
"copyActionLabel": "Kopiera", | ||
"pasteActionLabel": "Klistra in", | ||
"selectAllActionLabel": "Markera allt", | ||
"newTabLabel": "Ny flik", | ||
"closeTabLabelSuffix": "Stäng flik", | ||
"scrollTabBackwardLabel": "Rulla fliklistan bakåt", | ||
"scrollTabForwardLabel": "Rulla fliklistan framåt", | ||
"noResultsFoundLabel": "Inga resultat", | ||
"copyActionTooltip": "Kopiera det markerade till urklipp", | ||
"cutActionTooltip": "Klipp ut det markerade till urklipp", | ||
"pasteActionTooltip": "Klistra in från urklipp", | ||
"selectAllActionTooltip": "Markera allt", | ||
"hour": "timme", | ||
"minute": "minut", | ||
"am": "AM", | ||
"pm": "PM", | ||
"month": "månad", | ||
"day": "dag", | ||
"year": "år" | ||
} |