summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-05-03 18:33:18 +0200
committerSlávek Banko <slavek.banko@axis.cz>2020-05-03 18:33:18 +0200
commit52db1b9dccf50e2b3bf2f06658a5f9cb0bb3e2f2 (patch)
treeb0169d766c4d580157a3d30742f19d403231fd58
parent634aaabc8f08f2f28442c00207bed03c186f8ea5 (diff)
downloadtdeio-ftps-52db1b9dccf50e2b3bf2f06658a5f9cb0bb3e2f2.tar.gz
tdeio-ftps-52db1b9dccf50e2b3bf2f06658a5f9cb0bb3e2f2.zip
Move translations to a new directory layout.
Add support for LINGUAS for listing translations to install. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--CMakeLists.txt2
-rw-r--r--tdeio_ftps/CMakeL10n.txt2
-rw-r--r--translations/CMakeLists.txt1
-rw-r--r--translations/messages/CMakeLists.txt14
-rw-r--r--translations/messages/de.po90
-rw-r--r--translations/messages/tdeio-ftps.pot90
6 files changed, 197 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f78a59e..a7f3cb3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -69,7 +69,7 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
##### directories
tde_conditional_add_subdirectory( BUILD_ALL tdeio_ftps )
-tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
+tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations )
##### write configure files
diff --git a/tdeio_ftps/CMakeL10n.txt b/tdeio_ftps/CMakeL10n.txt
index 5623319..10a3570 100644
--- a/tdeio_ftps/CMakeL10n.txt
+++ b/tdeio_ftps/CMakeL10n.txt
@@ -1,3 +1,3 @@
##### create translation templates ##############
-tde_l10n_create_template( "tdeio-ftps" )
+tde_l10n_create_template( "messages/tdeio-ftps" )
diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt
new file mode 100644
index 0000000..42b186a
--- /dev/null
+++ b/translations/CMakeLists.txt
@@ -0,0 +1 @@
+tde_auto_add_subdirectories()
diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt
new file mode 100644
index 0000000..75c89f8
--- /dev/null
+++ b/translations/messages/CMakeLists.txt
@@ -0,0 +1,14 @@
+file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
+string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
+
+foreach( _po ${po_files} )
+ get_filename_component( _lang ${_po} NAME_WE )
+ if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" )
+ if( "${_po}" MATCHES "^([^/]*)/.*" )
+ string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" )
+ else( )
+ set( _component "${PROJECT_NAME}" )
+ endif( )
+ tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} )
+ endif( )
+endforeach( )
diff --git a/translations/messages/de.po b/translations/messages/de.po
new file mode 100644
index 0000000..5ef19dd
--- /dev/null
+++ b/translations/messages/de.po
@@ -0,0 +1,90 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-12-26 02:07+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: _translatorinfo:1
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr ""
+
+#: _translatorinfo:2
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr ""
+
+#: ftp.cc:462
+#, c-format
+msgid "Opening connection to host %1"
+msgstr ""
+
+#: ftp.cc:480
+#, c-format
+msgid "Connected to host %1"
+msgstr ""
+
+#: ftp.cc:529
+msgid ""
+"%1.\n"
+"\n"
+"Reason: %2"
+msgstr ""
+
+#: ftp.cc:541
+msgid "The FTP-server does not seem to support ftps-encryption."
+msgstr ""
+
+#: ftp.cc:549
+msgid "SSL-connecting error occured"
+msgstr ""
+
+#: ftp.cc:580
+msgid "Sending login information"
+msgstr ""
+
+#: ftp.cc:627
+msgid ""
+"Message sent:\n"
+"Login using username=%1 and password=[hidden]\n"
+"\n"
+"Server replied:\n"
+"%2\n"
+"\n"
+msgstr ""
+
+#: ftp.cc:635
+msgid "You need to supply a username and a password to access this site."
+msgstr ""
+
+#: ftp.cc:637
+msgid "Site:"
+msgstr ""
+
+#: ftp.cc:638
+msgid "<b>%1</b>"
+msgstr ""
+
+#: ftp.cc:701
+msgid "Login OK"
+msgstr ""
+
+#: ftp.cc:730
+#, c-format
+msgid "Could not login to %1."
+msgstr ""
+
+#: ftp.cc:1242
+msgid "SSL connection failed on data channel."
+msgstr ""
diff --git a/translations/messages/tdeio-ftps.pot b/translations/messages/tdeio-ftps.pot
new file mode 100644
index 0000000..b0b2c56
--- /dev/null
+++ b/translations/messages/tdeio-ftps.pot
@@ -0,0 +1,90 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-12-26 02:07+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: _translatorinfo:1
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr ""
+
+#: _translatorinfo:2
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr ""
+
+#: ftp.cc:462
+#, c-format
+msgid "Opening connection to host %1"
+msgstr ""
+
+#: ftp.cc:480
+#, c-format
+msgid "Connected to host %1"
+msgstr ""
+
+#: ftp.cc:529
+msgid ""
+"%1.\n"
+"\n"
+"Reason: %2"
+msgstr ""
+
+#: ftp.cc:541
+msgid "The FTP-server does not seem to support ftps-encryption."
+msgstr ""
+
+#: ftp.cc:549
+msgid "SSL-connecting error occured"
+msgstr ""
+
+#: ftp.cc:580
+msgid "Sending login information"
+msgstr ""
+
+#: ftp.cc:627
+msgid ""
+"Message sent:\n"
+"Login using username=%1 and password=[hidden]\n"
+"\n"
+"Server replied:\n"
+"%2\n"
+"\n"
+msgstr ""
+
+#: ftp.cc:635
+msgid "You need to supply a username and a password to access this site."
+msgstr ""
+
+#: ftp.cc:637
+msgid "Site:"
+msgstr ""
+
+#: ftp.cc:638
+msgid "<b>%1</b>"
+msgstr ""
+
+#: ftp.cc:701
+msgid "Login OK"
+msgstr ""
+
+#: ftp.cc:730
+#, c-format
+msgid "Could not login to %1."
+msgstr ""
+
+#: ftp.cc:1242
+msgid "SSL connection failed on data channel."
+msgstr ""