diff --git a/Localization/en.lproj/Localizable.strings b/Localization/en.lproj/Localizable.strings index 7278fb9..366119f 100644 --- a/Localization/en.lproj/Localizable.strings +++ b/Localization/en.lproj/Localizable.strings @@ -8,6 +8,7 @@ "global.title.ok" = "OK"; "global.title.showMore" = "Show more"; "global.title.showLess" = "Show less"; +"global.title.close" = "Close"; // MARK: Global errors. "global.error.unexpected" = "Unexpected error."; diff --git a/Localization/eu.lproj/Localizable.strings b/Localization/eu.lproj/Localizable.strings index af5992a..3ada5fc 100644 --- a/Localization/eu.lproj/Localizable.strings +++ b/Localization/eu.lproj/Localizable.strings @@ -8,6 +8,7 @@ "global.title.ok" = "Ados"; "global.title.showMore" = "Erakutsi gehiago"; "global.title.showLess" = "Erakutsi gutxiago"; +"global.title.close" = "Itxi"; // MARK: Global errors. "global.error.unexpected" = "Espero ez zen errorea."; diff --git a/Localization/pl.lproj/Localizable.strings b/Localization/pl.lproj/Localizable.strings index 8cf52a4..a2ea75d 100644 --- a/Localization/pl.lproj/Localizable.strings +++ b/Localization/pl.lproj/Localizable.strings @@ -8,6 +8,7 @@ "global.title.ok" = "OK"; "global.title.showMore" = "Pokaż więcej"; "global.title.showLess" = "Pokaż mniej"; +"global.title.close" = "Zamknij"; // MARK: Global errors. "global.error.unexpected" = "Wystąpił nieoczekiwany błąd."; diff --git a/Vernissage/AppRouteur.swift b/Vernissage/AppRouteur.swift index b4b4c7a..c83901c 100644 --- a/Vernissage/AppRouteur.swift +++ b/Vernissage/AppRouteur.swift @@ -89,7 +89,7 @@ extension View { case .alternativeText(let text): return Alert(title: Text("status.title.mediaDescription", comment: "Media description"), message: Text(text), - dismissButton: .default(Text("global.title.ok", comment: "OK"))) + dismissButton: .default(Text("global.title.close", comment: "Close"))) case .savePhotoSuccess: return Alert(title: Text("global.title.success", comment: "Success"), message: Text("global.title.photoSaved", comment: "Photo has been saved"),