Skip to content

Commit

Permalink
hedit: Fixed typo's introduced in PR #360
Browse files Browse the repository at this point in the history
Note that translation lines from said PR (and also PR #369 as of speaking) use a mix of "success" and "sucess", so it wouldn't work
  • Loading branch information
Dutchman101 committed Dec 19, 2021
1 parent 0b443ac commit 6509b74
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/languages/english.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ guiLanguage.english = {

successSave = "Successfully saved your handling settings!",
successLoad = "Successfully loaded your handling settings!",
sucessDelete = "Successfully deleted your handling settings!",
successDelete = "Successfully deleted your handling settings!",

wantTheSettings = "Are you sure you would like to apply these settings? The handling editor will restart.",

Expand Down
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/languages/polish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ guiLanguage.polish = {

successSave = "Pomyslnie zapisano twoje ustawienia",
successLoad = "Pomyslnie wczytano twoje ustawienia!",
sucessDelete = "",
successDelete = "",

wantTheSettings = "Czy na pewno chcesz zastosowac te ustawienia? Edytor uruchomi sie ponownie.",

Expand Down
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/languages/russian.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

successSave = "Вы успешно сохранили ваш хэндлинг!",
successLoad = "Вы успешно загрузили ваш хэндлинг!",
sucessDelete = "",
successDelete = "",

wantTheSettings = "Вы уверены, что хотите применить эти настройки? Редактор хэндлинга будет перезагружен.",

Expand Down
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/languages/spanish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

successSave = "Se guardo el handling con exito!",
successLoad = "Se cargo el handling con exito!",
sucessDelete = "",
successDelete = "",

confirmVersionReset = "Estas seguro de que deseas establecer la version del editor a la de este servidor? Tus handlings guardados pueden llegar a ser incompatibles.",
successVersionReset = "La version de editor se ha actualizado.",
Expand Down
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/languages/turkish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ guiLanguage.turkish = {

successSave = "Başarıyla işleme ayarlarını kurtardı!",
successLoad = "Başarıyla senin kullanımı ayarlarını yüklenen!",
sucessDelete = "",
successDelete = "",

wantTheSettings = "Bu ayarları uygulamak istiyorum emin misiniz? Taşıma editörü yeniden başlar.",

Expand Down
2 changes: 1 addition & 1 deletion [gameplay]/hedit/client/gui/templates/default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ template.viewcontents = {

local function func ( )
if deleteClientHandling ( pVehicle, name ) then
guiCreateWarningMessage ( getText ( "sucessDelete" ), 3 )
guiCreateWarningMessage ( getText ( "successDelete" ), 3 )
end
end

Expand Down

1 comment on commit 6509b74

@ricksterhd123
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Been busy af lately, thank you

Please sign in to comment.