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
3 changes: 2 additions & 1 deletion po/LINGUAS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
de
es
fr
fr
ko
8 changes: 4 additions & 4 deletions po/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ msgid "New Document"
msgstr "Neues Dokument"

#: src/Window.vala:32
msgid "Open file"
msgstr "Öffnen"
msgid "Open file"
msgstr "Öffnen"

#: src/Window.vala:38
msgid "Save as"
msgstr "Speichern unter"
msgid "Save as"
msgstr "Speichern unter"
8 changes: 4 additions & 4 deletions po/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ msgid "New Document"
msgstr "Nuevo Documento"

#: src/Window.vala:32
msgid "Open file"
msgstr "Abrir documento"
msgid "Open file"
msgstr "Abrir documento"

#: src/Window.vala:38
msgid "Save as"
msgstr "Guardar como"
msgid "Save as"
msgstr "Guardar como"
8 changes: 4 additions & 4 deletions po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ msgid "New Document"
msgstr "Nouveau Document"

#: src/Window.vala:32
msgid "Open file"
msgstr "Ouvrir fichier"
msgid "Open file"
msgstr "Ouvrir fichier"

#: src/Window.vala:38
msgid "Save as"
msgstr "Enregistrer sous"
msgid "Save as"
msgstr "Enregistrer sous"
4 changes: 2 additions & 2 deletions po/io.github.wpkelso.slate.pot
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ msgid "New Document"
msgstr ""

#: src/Window.vala:32
msgid "Open file"
msgid "Open file"
msgstr ""

#: src/Window.vala:38
msgid "Save as"
msgid "Save as"
msgstr ""
30 changes: 30 additions & 0 deletions po/ko.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Korean translation for Slate
# Copyright (C) 2025 William Kelso
# This file is distributed under the same license as the io.github.wpkelso.slate package.
# William Kelso <[email protected]>, 2025.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: io.github.wpkelso.slate\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-07-25 15:37-0400\n"
"PO-Revision-Date: 2025-07-25 HO:MI+ZONE\n"
"Last-Translator: William Kelso\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/Window.vala:25 src/Utils.vala:9
msgid "New Document"
msgstr "새 문서"

#: src/Window.vala:32
msgid "Open file…"
msgstr "파일 열기…"

#: src/Window.vala:38
msgid "Save as…"
msgstr "다른 이름으로 저장…"
4 changes: 2 additions & 2 deletions src/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ public class AppWindow : Gtk.Window {
action_name = "app.open-document",
tooltip_markup = Granite.markup_accel_tooltip (
{"<Control>o"},
_("Open file")
_("Open file")
)
};
var save_as_button = new Gtk.Button.from_icon_name ("document-save-as") {
tooltip_markup = Granite.markup_accel_tooltip (
{"<Control><Shift>s"},
_("Save as")
_("Save as")
)
};

Expand Down