Skip to content
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
1 change: 1 addition & 0 deletions desktop-shared/src/main/resources/i18n/messages.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Askimo Desktop Application - English Strings

# Application
app.quit.confirm=Quit Askimo?

# Menu Items
menu.file=File
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Askimo beenden?
# Menu Items
menu.file=Datei
menu.new.project=Neues Projekt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=¿Salir de Askimo?
# Menu Items
menu.file=Archivo
menu.new.project=Nuevo proyecto
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Quitter Askimo?
# Menu Items
menu.file=Fichier
menu.new.project=Nouveau projet
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Askimoを終了しますか?
# Menu Items
menu.file=ファイル
menu.new.project=新しいプロジェクト
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Askimo를 종료하시겠습니까?
# Menu Items
menu.file=파일
menu.new.project=새 프로젝트
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Sair do Askimo?
# Menu Items
menu.file=Arquivo
menu.new.project=Novo projeto
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=Rời khỏi Askimo?
# Menu Items
menu.file=Tệp
menu.new.project=Dự án mới
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=退出 Askimo?
# Menu Items
menu.file=文件
menu.new.project=新建项目
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Askimo Desktop Application - English Strings

# Application

app.quit.confirm=退出 Askimo?
# Menu Items
menu.file=檔案
menu.new.project=新專案
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/main/kotlin/io/askimo/desktop/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ fun app(frameWindowScope: FrameWindowScope? = null, windowState: WindowState? =
alertDialog(
onDismissRequest = { showQuitDialog = false },
title = { Text(stringResource("menu.quit") + "?") },
text = { Text(stringResource("session.delete.confirm")) },
text = { Text(stringResource("app.quit.confirm")) },
confirmButton = {
dangerButton(
onClick = {
Expand Down