Merge lp:~developersw/ubuntu-terminal-app/make-strings-translatable into lp:ubuntu-terminal-app

Proposed by Carlo Giordano
Status: Rejected
Rejected by: David Planella
Proposed branch: lp:~developersw/ubuntu-terminal-app/make-strings-translatable
Merge into: lp:ubuntu-terminal-app
Diff against target: 63857 lines (+62338/-0) (has conflicts)
294 files modified
.bzrignore (+1/-0)
CMakeLists.txt (+99/-0)
COPYING (+674/-0)
README.md (+150/-0)
README.translations (+35/-0)
com.ubuntu.terminal.desktop.in.in (+9/-0)
debian/changelog (+46/-0)
debian/compat (+1/-0)
debian/control (+59/-0)
debian/copyright (+50/-0)
debian/qtdeclarative5-pamauthentication0.1.install (+1/-0)
debian/qtdeclarative5-qmltermwidget1.0.install (+1/-0)
debian/rules (+11/-0)
debian/source/format (+1/-0)
debian/ubuntu-terminal-app-autopilot.install (+1/-0)
debian/ubuntu-terminal-app.install (+2/-0)
manifest.json.in (+23/-0)
po/CMakeLists.txt (+30/-0)
po/ar.po (+169/-0)
po/ast.po (+171/-0)
po/br.po (+172/-0)
po/ca.po (+169/-0)
po/com.ubuntu.terminal.pot (+142/-0)
po/cs.po (+169/-0)
po/cy.po (+169/-0)
po/de.po (+171/-0)
po/en_GB.po (+171/-0)
po/es.po (+172/-0)
po/eu.po (+169/-0)
po/fa.po (+169/-0)
po/fi.po (+171/-0)
po/fr.po (+172/-0)
po/gd.po (+170/-0)
po/gl.po (+171/-0)
po/he.po (+169/-0)
po/hu.po (+171/-0)
po/id.po (+172/-0)
po/it.po (+172/-0)
po/km.po (+172/-0)
po/lv.po (+169/-0)
po/ml.po (+169/-0)
po/my.po (+169/-0)
po/nb.po (+169/-0)
po/pa.po (+169/-0)
po/po.pro (+57/-0)
po/pt.po (+169/-0)
po/pt_BR.po (+169/-0)
po/ro.po (+169/-0)
po/ru.po (+169/-0)
po/sl.po (+171/-0)
po/ta.po (+169/-0)
po/tr.po (+169/-0)
po/ug.po (+169/-0)
po/uk.po (+169/-0)
po/zh_CN.po (+169/-0)
po/zh_TW.po (+169/-0)
src/CMakeLists.txt (+2/-0)
src/app/CMakeLists.txt (+24/-0)
src/app/main.cpp (+161/-0)
src/app/qml/AlternateActionPopover.qml (+34/-0)
src/app/qml/AuthenticationDialog.qml (+70/-0)
src/app/qml/AuthenticationService.qml (+72/-0)
src/app/qml/CircularTransparentButton.qml (+51/-0)
src/app/qml/ExpandableButton.qml (+165/-0)
src/app/qml/KeyboardBar.qml (+117/-0)
src/app/qml/KeyboardRows/ExpandableKeyboardButton.qml (+41/-0)
src/app/qml/KeyboardRows/KeyModel.qml (+8/-0)
src/app/qml/KeyboardRows/KeyboardButton.qml (+20/-0)
src/app/qml/KeyboardRows/KeyboardRow.qml (+81/-0)
src/app/qml/KeyboardRows/Layouts/ControlKeysLayout.qml (+26/-0)
src/app/qml/KeyboardRows/Layouts/FunctionKeysLayout.qml (+62/-0)
src/app/qml/KeyboardRows/Layouts/ScrollKeysLayout.qml (+50/-0)
src/app/qml/KeyboardRows/Layouts/SimpleCommandsLayout.qml (+48/-0)
src/app/qml/ListItemWithActions.qml (+454/-0)
src/app/qml/PressFeedback.qml (+11/-0)
src/app/qml/SettingsPage.qml (+76/-0)
src/app/qml/TabsModel.qml (+50/-0)
src/app/qml/TabsPage.qml (+179/-0)
src/app/qml/TerminalComponent.qml (+36/-0)
src/app/qml/TerminalInputArea.qml (+162/-0)
src/app/qml/TerminalPage.qml (+116/-0)
src/app/qml/TerminalSettings.qml (+8/-0)
src/app/qml/ubuntu-terminal-app.qml (+114/-0)
src/plugin/CMakeLists.txt (+8/-0)
src/plugin/konsole/BlockArray.cpp (+377/-0)
src/plugin/konsole/BlockArray.h (+126/-0)
src/plugin/konsole/CMakeLists.txt (+93/-0)
src/plugin/konsole/Character.h (+221/-0)
src/plugin/konsole/CharacterColor.h (+294/-0)
src/plugin/konsole/ColorScheme.cpp (+774/-0)
src/plugin/konsole/ColorScheme.h (+342/-0)
src/plugin/konsole/ColorTables.h (+55/-0)
src/plugin/konsole/DefaultTranslatorText.h (+2/-0)
src/plugin/konsole/Emulation.cpp (+458/-0)
src/plugin/konsole/Emulation.h (+467/-0)
src/plugin/konsole/ExtendedDefaultTranslator.h (+74/-0)
src/plugin/konsole/Filter.cpp (+542/-0)
src/plugin/konsole/Filter.h (+380/-0)
src/plugin/konsole/History.cpp (+986/-0)
src/plugin/konsole/History.h (+490/-0)
src/plugin/konsole/KeyboardTranslator.cpp (+892/-0)
src/plugin/konsole/KeyboardTranslator.h (+584/-0)
src/plugin/konsole/LineFont.h (+21/-0)
src/plugin/konsole/LineFont.src (+786/-0)
src/plugin/konsole/Pty.cpp (+310/-0)
src/plugin/konsole/Pty.h (+206/-0)
src/plugin/konsole/Screen.cpp (+1360/-0)
src/plugin/konsole/Screen.h (+672/-0)
src/plugin/konsole/ScreenWindow.cpp (+292/-0)
src/plugin/konsole/ScreenWindow.h (+257/-0)
src/plugin/konsole/Session.cpp (+1064/-0)
src/plugin/konsole/Session.h (+626/-0)
src/plugin/konsole/ShellCommand.cpp (+167/-0)
src/plugin/konsole/ShellCommand.h (+90/-0)
src/plugin/konsole/TerminalCharacterDecoder.cpp (+251/-0)
src/plugin/konsole/TerminalCharacterDecoder.h (+148/-0)
src/plugin/konsole/TerminalDisplay.cpp (+2171/-0)
src/plugin/konsole/TerminalDisplay.h (+715/-0)
src/plugin/konsole/Vt102Emulation.cpp (+1221/-0)
src/plugin/konsole/Vt102Emulation.h (+188/-0)
src/plugin/konsole/assets/color-schemes/BlackOnLightYellow.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/BlackOnRandomLight.colorscheme (+104/-0)
src/plugin/konsole/assets/color-schemes/BlackOnWhite.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/DarkPastels.colorscheme (+103/-0)
src/plugin/konsole/assets/color-schemes/GreenOnBlack.colorscheme (+104/-0)
src/plugin/konsole/assets/color-schemes/Linux.colorscheme (+100/-0)
src/plugin/konsole/assets/color-schemes/WhiteOnBlack.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/historic/BlackOnLightColor.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/historic/DarkPicture.schema (+44/-0)
src/plugin/konsole/assets/color-schemes/historic/Example.Schema (+47/-0)
src/plugin/konsole/assets/color-schemes/historic/GreenOnBlack.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/historic/GreenTint.schema (+49/-0)
src/plugin/konsole/assets/color-schemes/historic/GreenTint_MC.schema (+49/-0)
src/plugin/konsole/assets/color-schemes/historic/LightPicture.schema (+44/-0)
src/plugin/konsole/assets/color-schemes/historic/Linux.schema (+47/-0)
src/plugin/konsole/assets/color-schemes/historic/README.Schema (+132/-0)
src/plugin/konsole/assets/color-schemes/historic/README.default.Schema (+44/-0)
src/plugin/konsole/assets/color-schemes/historic/Transparent.schema (+49/-0)
src/plugin/konsole/assets/color-schemes/historic/Transparent_MC.schema (+51/-0)
src/plugin/konsole/assets/color-schemes/historic/Transparent_darkbg.schema (+42/-0)
src/plugin/konsole/assets/color-schemes/historic/Transparent_lightbg.schema (+51/-0)
src/plugin/konsole/assets/color-schemes/historic/XTerm.schema (+46/-0)
src/plugin/konsole/assets/color-schemes/historic/syscolor.schema (+44/-0)
src/plugin/konsole/assets/color-schemes/historic/vim.schema (+40/-0)
src/plugin/konsole/assets/kb-layouts/README (+72/-0)
src/plugin/konsole/assets/kb-layouts/default.keytab (+169/-0)
src/plugin/konsole/assets/kb-layouts/historic/vt100.keytab (+133/-0)
src/plugin/konsole/assets/kb-layouts/historic/x11r5.keytab (+71/-0)
src/plugin/konsole/assets/kb-layouts/linux.keytab (+164/-0)
src/plugin/konsole/assets/kb-layouts/macbook.keytab (+175/-0)
src/plugin/konsole/assets/kb-layouts/solaris.keytab (+108/-0)
src/plugin/konsole/assets/kb-layouts/vt420pc.keytab (+168/-0)
src/plugin/konsole/default.keytab (+128/-0)
src/plugin/konsole/konsole_wcwidth.cpp (+224/-0)
src/plugin/konsole/konsole_wcwidth.h (+24/-0)
src/plugin/konsole/kprocess.cpp (+412/-0)
src/plugin/konsole/kprocess.h (+372/-0)
src/plugin/konsole/kpty.cpp (+701/-0)
src/plugin/konsole/kpty.h (+191/-0)
src/plugin/konsole/kpty_p.h (+50/-0)
src/plugin/konsole/kptydevice.cpp (+422/-0)
src/plugin/konsole/kptydevice.h (+360/-0)
src/plugin/konsole/kptyprocess.cpp (+129/-0)
src/plugin/konsole/kptyprocess.h (+178/-0)
src/plugin/konsole/ksession.cpp (+242/-0)
src/plugin/konsole/ksession.h (+132/-0)
src/plugin/konsole/plugin.cpp (+63/-0)
src/plugin/konsole/plugin.h (+46/-0)
src/plugin/konsole/plugins.qmltypes (+169/-0)
src/plugin/konsole/qmldir (+3/-0)
src/plugin/konsole/tools.cpp (+80/-0)
src/plugin/konsole/tools.h (+10/-0)
src/plugin/pamauthentication/CMakeLists.txt (+37/-0)
src/plugin/pamauthentication/pamauthentication.cpp (+183/-0)
src/plugin/pamauthentication/pamauthentication.h (+72/-0)
src/plugin/pamauthentication/pamauthentication_plugin.cpp (+34/-0)
src/plugin/pamauthentication/pamauthentication_plugin.h (+39/-0)
src/plugin/pamauthentication/qmldir (+2/-0)
src/plugin/qmltermwidget/.gitignore (+2/-0)
src/plugin/qmltermwidget/AUTHORS (+15/-0)
src/plugin/qmltermwidget/CMakeLists.txt (+99/-0)
src/plugin/qmltermwidget/COPYING (+339/-0)
src/plugin/qmltermwidget/README.md (+16/-0)
src/plugin/qmltermwidget/lib.pri (+57/-0)
src/plugin/qmltermwidget/lib/BlockArray.cpp (+379/-0)
src/plugin/qmltermwidget/lib/BlockArray.h (+130/-0)
src/plugin/qmltermwidget/lib/Character.h (+224/-0)
src/plugin/qmltermwidget/lib/CharacterColor.h (+299/-0)
src/plugin/qmltermwidget/lib/ColorScheme.cpp (+788/-0)
src/plugin/qmltermwidget/lib/ColorScheme.h (+359/-0)
src/plugin/qmltermwidget/lib/ColorTables.h (+55/-0)
src/plugin/qmltermwidget/lib/DefaultTranslatorText.h (+2/-0)
src/plugin/qmltermwidget/lib/Emulation.cpp (+460/-0)
src/plugin/qmltermwidget/lib/Emulation.h (+471/-0)
src/plugin/qmltermwidget/lib/ExtendedDefaultTranslator.h (+74/-0)
src/plugin/qmltermwidget/lib/Filter.cpp (+557/-0)
src/plugin/qmltermwidget/lib/Filter.h (+396/-0)
src/plugin/qmltermwidget/lib/History.cpp (+987/-0)
src/plugin/qmltermwidget/lib/History.h (+493/-0)
src/plugin/qmltermwidget/lib/HistorySearch.cpp (+157/-0)
src/plugin/qmltermwidget/lib/HistorySearch.h (+70/-0)
src/plugin/qmltermwidget/lib/KeyboardTranslator.cpp (+894/-0)
src/plugin/qmltermwidget/lib/KeyboardTranslator.h (+587/-0)
src/plugin/qmltermwidget/lib/LineFont.h (+21/-0)
src/plugin/qmltermwidget/lib/LineFont.src (+786/-0)
src/plugin/qmltermwidget/lib/Pty.cpp (+316/-0)
src/plugin/qmltermwidget/lib/Pty.h (+209/-0)
src/plugin/qmltermwidget/lib/README (+7/-0)
src/plugin/qmltermwidget/lib/Screen.cpp (+1360/-0)
src/plugin/qmltermwidget/lib/Screen.h (+675/-0)
src/plugin/qmltermwidget/lib/ScreenWindow.cpp (+294/-0)
src/plugin/qmltermwidget/lib/ScreenWindow.h (+259/-0)
src/plugin/qmltermwidget/lib/SearchBar.cpp (+118/-0)
src/plugin/qmltermwidget/lib/SearchBar.h (+60/-0)
src/plugin/qmltermwidget/lib/SearchBar.ui (+85/-0)
src/plugin/qmltermwidget/lib/Session.cpp (+1051/-0)
src/plugin/qmltermwidget/lib/Session.h (+622/-0)
src/plugin/qmltermwidget/lib/ShellCommand.cpp (+169/-0)
src/plugin/qmltermwidget/lib/ShellCommand.h (+92/-0)
src/plugin/qmltermwidget/lib/TerminalCharacterDecoder.cpp (+251/-0)
src/plugin/qmltermwidget/lib/TerminalCharacterDecoder.h (+150/-0)
src/plugin/qmltermwidget/lib/TerminalDisplay.cpp (+3333/-0)
src/plugin/qmltermwidget/lib/TerminalDisplay.h (+933/-0)
src/plugin/qmltermwidget/lib/Vt102Emulation.cpp (+1237/-0)
src/plugin/qmltermwidget/lib/Vt102Emulation.h (+191/-0)
src/plugin/qmltermwidget/lib/color-schemes/BlackOnLightYellow.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/BlackOnRandomLight.colorscheme (+104/-0)
src/plugin/qmltermwidget/lib/color-schemes/BlackOnWhite.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/DarkPastels.colorscheme (+103/-0)
src/plugin/qmltermwidget/lib/color-schemes/GreenOnBlack.colorscheme (+104/-0)
src/plugin/qmltermwidget/lib/color-schemes/Linux.colorscheme (+100/-0)
src/plugin/qmltermwidget/lib/color-schemes/Ubuntu.colorscheme (+103/-0)
src/plugin/qmltermwidget/lib/color-schemes/WhiteOnBlack.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/color-schemes.qrc (+24/-0)
src/plugin/qmltermwidget/lib/color-schemes/cool-retro-term.schema (+85/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/BlackOnLightColor.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/DarkPicture.schema (+44/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Example.Schema (+47/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/GreenOnBlack.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/GreenTint.schema (+49/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/GreenTint_MC.schema (+49/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/LightPicture.schema (+44/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Linux.schema (+47/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/README.Schema (+132/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/README.default.Schema (+44/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Transparent.schema (+49/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Transparent_MC.schema (+51/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Transparent_darkbg.schema (+42/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/Transparent_lightbg.schema (+51/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/XTerm.schema (+46/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/syscolor.schema (+44/-0)
src/plugin/qmltermwidget/lib/color-schemes/historic/vim.schema (+40/-0)
src/plugin/qmltermwidget/lib/default.keytab (+128/-0)
src/plugin/qmltermwidget/lib/designer/qtermwidgetplugin.cpp (+102/-0)
src/plugin/qmltermwidget/lib/designer/qtermwidgetplugin.h (+33/-0)
src/plugin/qmltermwidget/lib/designer/qtermwidgetplugin.qrc (+6/-0)
src/plugin/qmltermwidget/lib/kb-layouts/README (+72/-0)
src/plugin/qmltermwidget/lib/kb-layouts/default.keytab (+169/-0)
src/plugin/qmltermwidget/lib/kb-layouts/historic/vt100.keytab (+133/-0)
src/plugin/qmltermwidget/lib/kb-layouts/historic/x11r5.keytab (+71/-0)
src/plugin/qmltermwidget/lib/kb-layouts/kb-layouts.qrc (+10/-0)
src/plugin/qmltermwidget/lib/kb-layouts/linux.keytab (+138/-0)
src/plugin/qmltermwidget/lib/kb-layouts/macbook.keytab (+175/-0)
src/plugin/qmltermwidget/lib/kb-layouts/solaris.keytab (+108/-0)
src/plugin/qmltermwidget/lib/kb-layouts/vt420pc.keytab (+168/-0)
src/plugin/qmltermwidget/lib/konsole_wcwidth.cpp (+226/-0)
src/plugin/qmltermwidget/lib/konsole_wcwidth.h (+25/-0)
src/plugin/qmltermwidget/lib/kprocess.cpp (+412/-0)
src/plugin/qmltermwidget/lib/kprocess.h (+372/-0)
src/plugin/qmltermwidget/lib/kpty.cpp (+701/-0)
src/plugin/qmltermwidget/lib/kpty.h (+191/-0)
src/plugin/qmltermwidget/lib/kpty_p.h (+50/-0)
src/plugin/qmltermwidget/lib/kptydevice.cpp (+422/-0)
src/plugin/qmltermwidget/lib/kptydevice.h (+361/-0)
src/plugin/qmltermwidget/lib/kptyprocess.cpp (+129/-0)
src/plugin/qmltermwidget/lib/kptyprocess.h (+178/-0)
src/plugin/qmltermwidget/lib/qtermwidget.cpp (+621/-0)
src/plugin/qmltermwidget/lib/qtermwidget.h (+240/-0)
src/plugin/qmltermwidget/lib/tools.cpp (+85/-0)
src/plugin/qmltermwidget/lib/tools.h (+10/-0)
src/plugin/qmltermwidget/qmltermwidget.pro (+32/-0)
src/plugin/qmltermwidget/src/QMLTermScrollbar.qml (+38/-0)
src/plugin/qmltermwidget/src/ksession.cpp (+248/-0)
src/plugin/qmltermwidget/src/ksession.h (+142/-0)
src/plugin/qmltermwidget/src/qmldir (+4/-0)
src/plugin/qmltermwidget/src/qmltermwidget_plugin.cpp (+38/-0)
src/plugin/qmltermwidget/src/qmltermwidget_plugin.h (+17/-0)
src/plugin/qmltermwidget/test-app/test-app.qml (+45/-0)
terminal.apparmor (+5/-0)
tests/CMakeLists.txt (+1/-0)
tests/autopilot/CMakeLists.txt (+8/-0)
tests/autopilot/ubuntu_terminal_app/__init__.py (+174/-0)
tests/autopilot/ubuntu_terminal_app/tests/__init__.py (+131/-0)
tests/autopilot/ubuntu_terminal_app/tests/test_terminal.py (+157/-0)
Conflict adding file .bzrignore.  Moved existing file to .bzrignore.moved.
Conflict adding file CMakeLists.txt.  Moved existing file to CMakeLists.txt.moved.
Conflict adding file COPYING.  Moved existing file to COPYING.moved.
Conflict adding file README.md.  Moved existing file to README.md.moved.
Conflict adding file README.translations.  Moved existing file to README.translations.moved.
Conflict adding file com.ubuntu.terminal.desktop.in.in.  Moved existing file to com.ubuntu.terminal.desktop.in.in.moved.
Conflict adding file debian.  Moved existing file to debian.moved.
Conflict adding file manifest.json.in.  Moved existing file to manifest.json.in.moved.
Conflict adding file po.  Moved existing file to po.moved.
Conflict adding file src.  Moved existing file to src.moved.
Conflict adding file terminal.apparmor.  Moved existing file to terminal.apparmor.moved.
Conflict adding file terminal64.png.  Moved existing file to terminal64.png.moved.
Conflict adding file tests.  Moved existing file to tests.moved.
To merge this branch: bzr merge lp:~developersw/ubuntu-terminal-app/make-strings-translatable
Reviewer Review Type Date Requested Status
David Planella Disapprove
Review via email: mp+244095@code.launchpad.net
To post a comment you must log in.
Revision history for this message
David Planella (dpm) wrote :

It seems the functionality of this branch is already in the current version of trunk, thus rejecting it so it doesn't appear on the list of branches to review. If this is a mistake, please feel free to resubmit it, thanks!

review: Disapprove

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file '.bzrignore'
2--- .bzrignore 1970-01-01 00:00:00 +0000
3+++ .bzrignore 2014-12-09 09:20:47 +0000
4@@ -0,0 +1,1 @@
5+CMakeLists.txt.user
6
7=== renamed file '.bzrignore' => '.bzrignore.moved'
8=== added file 'CMakeLists.txt'
9--- CMakeLists.txt 1970-01-01 00:00:00 +0000
10+++ CMakeLists.txt 2014-12-09 09:20:47 +0000
11@@ -0,0 +1,99 @@
12+project(com.ubuntu.terminal C CXX)
13+cmake_minimum_required(VERSION 2.8.9)
14+find_program(INTLTOOL_MERGE intltool-merge)
15+find_program(INTLTOOL_EXTRACT intltool-extract)
16+
17+set(CMAKE_AUTOMOC ON)
18+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fno-permissive -pedantic -Wall -Wextra -fPIC")
19+
20+# Standard install paths
21+include(GNUInstallDirs)
22+
23+option(INSTALL_TESTS "Install the tests on make install" on)
24+option(CLICK_MODE "Installs to a contained location" on)
25+
26+set(APP_NAME terminal)
27+set(DESKTOP_FILE "${PROJECT_NAME}.desktop")
28+set(APP_HARDCODE ubuntu-terminal-app)
29+set(MAIN_QML ubuntu-terminal-app.qml)
30+set(ICON_FILE terminal64.png)
31+set(AUTOPILOT_DIR ubuntu_terminal_app)
32+set(EXEC "${APP_NAME}")
33+set(UBUNTU_MANIFEST_PATH "manifest.json.in" CACHE INTERNAL "Relative path to the manifest file")
34+
35+if(CLICK_MODE)
36+ if(NOT DEFINED BZR_SOURCE)
37+ set(BZR_SOURCE "lp:${APP_HARDCODE}")
38+ message("-- Setting BZR_SOURCE to ${BZR_SOURCE}")
39+ endif(NOT DEFINED BZR_SOURCE)
40+ # Find out the architecture for package building
41+ # to determine the plugin's installation path
42+ execute_process(
43+ COMMAND dpkg-architecture -qDEB_HOST_MULTIARCH
44+ OUTPUT_VARIABLE ARCH_TRIPLET
45+ OUTPUT_STRIP_TRAILING_WHITESPACE
46+ )
47+ set(CMAKE_INSTALL_PREFIX /)
48+ set(CMAKE_INSTALL_BINDIR /)
49+ set(DATA_DIR /)
50+ set(DESKTOP_DIR ${DATA_DIR})
51+ set(ICON ${ICON_FILE})
52+ set(QT_IMPORTS_DIR "/lib/${ARCH_TRIPLET}")
53+ set(BIN_DIR /lib/${ARCH_TRIPLET}/bin)
54+ if(NOT BZR_REVNO)
55+ set(BZR_REVNO "latest")
56+ endif(NOT BZR_REVNO)
57+
58+ execute_process(
59+ COMMAND dpkg-architecture -qDEB_HOST_ARCH
60+ OUTPUT_VARIABLE CLICK_ARCH
61+ OUTPUT_STRIP_TRAILING_WHITESPACE
62+ )
63+ configure_file(manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/manifest.json)
64+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/manifest.json terminal.apparmor DESTINATION ${CMAKE_INSTALL_PREFIX})
65+
66+ # make the click files visible in qtcreator
67+ file(GLOB CLICK_FILES
68+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
69+ *.json *.json.in *.apparmor)
70+
71+ add_custom_target(com_ubuntu_terminal_CLICKFiles ALL SOURCES ${CLICK_FILES})
72+else(CLICK_MODE)
73+ execute_process(
74+ COMMAND qmake -query QT_INSTALL_QML
75+ OUTPUT_VARIABLE QT_IMPORTS_DIR
76+ OUTPUT_STRIP_TRAILING_WHITESPACE
77+ )
78+ set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_NAME})
79+ set(ICON ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON_FILE})
80+ set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)
81+endif(CLICK_MODE)
82+
83+file(GLOB_RECURSE I18N_SRC_FILES
84+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/po
85+ *.qml *.js *.cpp *.h)
86+list(APPEND I18N_SRC_FILES ${DESKTOP_FILE}.in.in.h)
87+list(SORT I18N_SRC_FILES)
88+
89+file(GLOB SRC_FILES
90+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
91+ *.qml *.js *.png *.js)
92+install(FILES ${SRC_FILES}
93+ DESTINATION ${DATA_DIR})
94+
95+configure_file(${DESKTOP_FILE}.in.in ${DESKTOP_FILE}.in)
96+
97+add_custom_target(${DESKTOP_FILE} ALL
98+ COMMENT "Merging translations into ${DESKTOP_FILE}..."
99+ COMMAND LC_ALL=C ${INTLTOOL_MERGE} -d -u ${CMAKE_SOURCE_DIR}/po ${DESKTOP_FILE}.in ${DESKTOP_FILE}
100+)
101+
102+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE}
103+ DESTINATION ${DESKTOP_DIR})
104+
105+# Tests
106+enable_testing()
107+
108+add_subdirectory(po)
109+add_subdirectory(tests)
110+add_subdirectory(src)
111
112=== renamed file 'CMakeLists.txt' => 'CMakeLists.txt.moved'
113=== added file 'COPYING'
114--- COPYING 1970-01-01 00:00:00 +0000
115+++ COPYING 2014-12-09 09:20:47 +0000
116@@ -0,0 +1,674 @@
117+ GNU GENERAL PUBLIC LICENSE
118+ Version 3, 29 June 2007
119+
120+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
121+ Everyone is permitted to copy and distribute verbatim copies
122+ of this license document, but changing it is not allowed.
123+
124+ Preamble
125+
126+ The GNU General Public License is a free, copyleft license for
127+software and other kinds of works.
128+
129+ The licenses for most software and other practical works are designed
130+to take away your freedom to share and change the works. By contrast,
131+the GNU General Public License is intended to guarantee your freedom to
132+share and change all versions of a program--to make sure it remains free
133+software for all its users. We, the Free Software Foundation, use the
134+GNU General Public License for most of our software; it applies also to
135+any other work released this way by its authors. You can apply it to
136+your programs, too.
137+
138+ When we speak of free software, we are referring to freedom, not
139+price. Our General Public Licenses are designed to make sure that you
140+have the freedom to distribute copies of free software (and charge for
141+them if you wish), that you receive source code or can get it if you
142+want it, that you can change the software or use pieces of it in new
143+free programs, and that you know you can do these things.
144+
145+ To protect your rights, we need to prevent others from denying you
146+these rights or asking you to surrender the rights. Therefore, you have
147+certain responsibilities if you distribute copies of the software, or if
148+you modify it: responsibilities to respect the freedom of others.
149+
150+ For example, if you distribute copies of such a program, whether
151+gratis or for a fee, you must pass on to the recipients the same
152+freedoms that you received. You must make sure that they, too, receive
153+or can get the source code. And you must show them these terms so they
154+know their rights.
155+
156+ Developers that use the GNU GPL protect your rights with two steps:
157+(1) assert copyright on the software, and (2) offer you this License
158+giving you legal permission to copy, distribute and/or modify it.
159+
160+ For the developers' and authors' protection, the GPL clearly explains
161+that there is no warranty for this free software. For both users' and
162+authors' sake, the GPL requires that modified versions be marked as
163+changed, so that their problems will not be attributed erroneously to
164+authors of previous versions.
165+
166+ Some devices are designed to deny users access to install or run
167+modified versions of the software inside them, although the manufacturer
168+can do so. This is fundamentally incompatible with the aim of
169+protecting users' freedom to change the software. The systematic
170+pattern of such abuse occurs in the area of products for individuals to
171+use, which is precisely where it is most unacceptable. Therefore, we
172+have designed this version of the GPL to prohibit the practice for those
173+products. If such problems arise substantially in other domains, we
174+stand ready to extend this provision to those domains in future versions
175+of the GPL, as needed to protect the freedom of users.
176+
177+ Finally, every program is threatened constantly by software patents.
178+States should not allow patents to restrict development and use of
179+software on general-purpose computers, but in those that do, we wish to
180+avoid the special danger that patents applied to a free program could
181+make it effectively proprietary. To prevent this, the GPL assures that
182+patents cannot be used to render the program non-free.
183+
184+ The precise terms and conditions for copying, distribution and
185+modification follow.
186+
187+ TERMS AND CONDITIONS
188+
189+ 0. Definitions.
190+
191+ "This License" refers to version 3 of the GNU General Public License.
192+
193+ "Copyright" also means copyright-like laws that apply to other kinds of
194+works, such as semiconductor masks.
195+
196+ "The Program" refers to any copyrightable work licensed under this
197+License. Each licensee is addressed as "you". "Licensees" and
198+"recipients" may be individuals or organizations.
199+
200+ To "modify" a work means to copy from or adapt all or part of the work
201+in a fashion requiring copyright permission, other than the making of an
202+exact copy. The resulting work is called a "modified version" of the
203+earlier work or a work "based on" the earlier work.
204+
205+ A "covered work" means either the unmodified Program or a work based
206+on the Program.
207+
208+ To "propagate" a work means to do anything with it that, without
209+permission, would make you directly or secondarily liable for
210+infringement under applicable copyright law, except executing it on a
211+computer or modifying a private copy. Propagation includes copying,
212+distribution (with or without modification), making available to the
213+public, and in some countries other activities as well.
214+
215+ To "convey" a work means any kind of propagation that enables other
216+parties to make or receive copies. Mere interaction with a user through
217+a computer network, with no transfer of a copy, is not conveying.
218+
219+ An interactive user interface displays "Appropriate Legal Notices"
220+to the extent that it includes a convenient and prominently visible
221+feature that (1) displays an appropriate copyright notice, and (2)
222+tells the user that there is no warranty for the work (except to the
223+extent that warranties are provided), that licensees may convey the
224+work under this License, and how to view a copy of this License. If
225+the interface presents a list of user commands or options, such as a
226+menu, a prominent item in the list meets this criterion.
227+
228+ 1. Source Code.
229+
230+ The "source code" for a work means the preferred form of the work
231+for making modifications to it. "Object code" means any non-source
232+form of a work.
233+
234+ A "Standard Interface" means an interface that either is an official
235+standard defined by a recognized standards body, or, in the case of
236+interfaces specified for a particular programming language, one that
237+is widely used among developers working in that language.
238+
239+ The "System Libraries" of an executable work include anything, other
240+than the work as a whole, that (a) is included in the normal form of
241+packaging a Major Component, but which is not part of that Major
242+Component, and (b) serves only to enable use of the work with that
243+Major Component, or to implement a Standard Interface for which an
244+implementation is available to the public in source code form. A
245+"Major Component", in this context, means a major essential component
246+(kernel, window system, and so on) of the specific operating system
247+(if any) on which the executable work runs, or a compiler used to
248+produce the work, or an object code interpreter used to run it.
249+
250+ The "Corresponding Source" for a work in object code form means all
251+the source code needed to generate, install, and (for an executable
252+work) run the object code and to modify the work, including scripts to
253+control those activities. However, it does not include the work's
254+System Libraries, or general-purpose tools or generally available free
255+programs which are used unmodified in performing those activities but
256+which are not part of the work. For example, Corresponding Source
257+includes interface definition files associated with source files for
258+the work, and the source code for shared libraries and dynamically
259+linked subprograms that the work is specifically designed to require,
260+such as by intimate data communication or control flow between those
261+subprograms and other parts of the work.
262+
263+ The Corresponding Source need not include anything that users
264+can regenerate automatically from other parts of the Corresponding
265+Source.
266+
267+ The Corresponding Source for a work in source code form is that
268+same work.
269+
270+ 2. Basic Permissions.
271+
272+ All rights granted under this License are granted for the term of
273+copyright on the Program, and are irrevocable provided the stated
274+conditions are met. This License explicitly affirms your unlimited
275+permission to run the unmodified Program. The output from running a
276+covered work is covered by this License only if the output, given its
277+content, constitutes a covered work. This License acknowledges your
278+rights of fair use or other equivalent, as provided by copyright law.
279+
280+ You may make, run and propagate covered works that you do not
281+convey, without conditions so long as your license otherwise remains
282+in force. You may convey covered works to others for the sole purpose
283+of having them make modifications exclusively for you, or provide you
284+with facilities for running those works, provided that you comply with
285+the terms of this License in conveying all material for which you do
286+not control copyright. Those thus making or running the covered works
287+for you must do so exclusively on your behalf, under your direction
288+and control, on terms that prohibit them from making any copies of
289+your copyrighted material outside their relationship with you.
290+
291+ Conveying under any other circumstances is permitted solely under
292+the conditions stated below. Sublicensing is not allowed; section 10
293+makes it unnecessary.
294+
295+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
296+
297+ No covered work shall be deemed part of an effective technological
298+measure under any applicable law fulfilling obligations under article
299+11 of the WIPO copyright treaty adopted on 20 December 1996, or
300+similar laws prohibiting or restricting circumvention of such
301+measures.
302+
303+ When you convey a covered work, you waive any legal power to forbid
304+circumvention of technological measures to the extent such circumvention
305+is effected by exercising rights under this License with respect to
306+the covered work, and you disclaim any intention to limit operation or
307+modification of the work as a means of enforcing, against the work's
308+users, your or third parties' legal rights to forbid circumvention of
309+technological measures.
310+
311+ 4. Conveying Verbatim Copies.
312+
313+ You may convey verbatim copies of the Program's source code as you
314+receive it, in any medium, provided that you conspicuously and
315+appropriately publish on each copy an appropriate copyright notice;
316+keep intact all notices stating that this License and any
317+non-permissive terms added in accord with section 7 apply to the code;
318+keep intact all notices of the absence of any warranty; and give all
319+recipients a copy of this License along with the Program.
320+
321+ You may charge any price or no price for each copy that you convey,
322+and you may offer support or warranty protection for a fee.
323+
324+ 5. Conveying Modified Source Versions.
325+
326+ You may convey a work based on the Program, or the modifications to
327+produce it from the Program, in the form of source code under the
328+terms of section 4, provided that you also meet all of these conditions:
329+
330+ a) The work must carry prominent notices stating that you modified
331+ it, and giving a relevant date.
332+
333+ b) The work must carry prominent notices stating that it is
334+ released under this License and any conditions added under section
335+ 7. This requirement modifies the requirement in section 4 to
336+ "keep intact all notices".
337+
338+ c) You must license the entire work, as a whole, under this
339+ License to anyone who comes into possession of a copy. This
340+ License will therefore apply, along with any applicable section 7
341+ additional terms, to the whole of the work, and all its parts,
342+ regardless of how they are packaged. This License gives no
343+ permission to license the work in any other way, but it does not
344+ invalidate such permission if you have separately received it.
345+
346+ d) If the work has interactive user interfaces, each must display
347+ Appropriate Legal Notices; however, if the Program has interactive
348+ interfaces that do not display Appropriate Legal Notices, your
349+ work need not make them do so.
350+
351+ A compilation of a covered work with other separate and independent
352+works, which are not by their nature extensions of the covered work,
353+and which are not combined with it such as to form a larger program,
354+in or on a volume of a storage or distribution medium, is called an
355+"aggregate" if the compilation and its resulting copyright are not
356+used to limit the access or legal rights of the compilation's users
357+beyond what the individual works permit. Inclusion of a covered work
358+in an aggregate does not cause this License to apply to the other
359+parts of the aggregate.
360+
361+ 6. Conveying Non-Source Forms.
362+
363+ You may convey a covered work in object code form under the terms
364+of sections 4 and 5, provided that you also convey the
365+machine-readable Corresponding Source under the terms of this License,
366+in one of these ways:
367+
368+ a) Convey the object code in, or embodied in, a physical product
369+ (including a physical distribution medium), accompanied by the
370+ Corresponding Source fixed on a durable physical medium
371+ customarily used for software interchange.
372+
373+ b) Convey the object code in, or embodied in, a physical product
374+ (including a physical distribution medium), accompanied by a
375+ written offer, valid for at least three years and valid for as
376+ long as you offer spare parts or customer support for that product
377+ model, to give anyone who possesses the object code either (1) a
378+ copy of the Corresponding Source for all the software in the
379+ product that is covered by this License, on a durable physical
380+ medium customarily used for software interchange, for a price no
381+ more than your reasonable cost of physically performing this
382+ conveying of source, or (2) access to copy the
383+ Corresponding Source from a network server at no charge.
384+
385+ c) Convey individual copies of the object code with a copy of the
386+ written offer to provide the Corresponding Source. This
387+ alternative is allowed only occasionally and noncommercially, and
388+ only if you received the object code with such an offer, in accord
389+ with subsection 6b.
390+
391+ d) Convey the object code by offering access from a designated
392+ place (gratis or for a charge), and offer equivalent access to the
393+ Corresponding Source in the same way through the same place at no
394+ further charge. You need not require recipients to copy the
395+ Corresponding Source along with the object code. If the place to
396+ copy the object code is a network server, the Corresponding Source
397+ may be on a different server (operated by you or a third party)
398+ that supports equivalent copying facilities, provided you maintain
399+ clear directions next to the object code saying where to find the
400+ Corresponding Source. Regardless of what server hosts the
401+ Corresponding Source, you remain obligated to ensure that it is
402+ available for as long as needed to satisfy these requirements.
403+
404+ e) Convey the object code using peer-to-peer transmission, provided
405+ you inform other peers where the object code and Corresponding
406+ Source of the work are being offered to the general public at no
407+ charge under subsection 6d.
408+
409+ A separable portion of the object code, whose source code is excluded
410+from the Corresponding Source as a System Library, need not be
411+included in conveying the object code work.
412+
413+ A "User Product" is either (1) a "consumer product", which means any
414+tangible personal property which is normally used for personal, family,
415+or household purposes, or (2) anything designed or sold for incorporation
416+into a dwelling. In determining whether a product is a consumer product,
417+doubtful cases shall be resolved in favor of coverage. For a particular
418+product received by a particular user, "normally used" refers to a
419+typical or common use of that class of product, regardless of the status
420+of the particular user or of the way in which the particular user
421+actually uses, or expects or is expected to use, the product. A product
422+is a consumer product regardless of whether the product has substantial
423+commercial, industrial or non-consumer uses, unless such uses represent
424+the only significant mode of use of the product.
425+
426+ "Installation Information" for a User Product means any methods,
427+procedures, authorization keys, or other information required to install
428+and execute modified versions of a covered work in that User Product from
429+a modified version of its Corresponding Source. The information must
430+suffice to ensure that the continued functioning of the modified object
431+code is in no case prevented or interfered with solely because
432+modification has been made.
433+
434+ If you convey an object code work under this section in, or with, or
435+specifically for use in, a User Product, and the conveying occurs as
436+part of a transaction in which the right of possession and use of the
437+User Product is transferred to the recipient in perpetuity or for a
438+fixed term (regardless of how the transaction is characterized), the
439+Corresponding Source conveyed under this section must be accompanied
440+by the Installation Information. But this requirement does not apply
441+if neither you nor any third party retains the ability to install
442+modified object code on the User Product (for example, the work has
443+been installed in ROM).
444+
445+ The requirement to provide Installation Information does not include a
446+requirement to continue to provide support service, warranty, or updates
447+for a work that has been modified or installed by the recipient, or for
448+the User Product in which it has been modified or installed. Access to a
449+network may be denied when the modification itself materially and
450+adversely affects the operation of the network or violates the rules and
451+protocols for communication across the network.
452+
453+ Corresponding Source conveyed, and Installation Information provided,
454+in accord with this section must be in a format that is publicly
455+documented (and with an implementation available to the public in
456+source code form), and must require no special password or key for
457+unpacking, reading or copying.
458+
459+ 7. Additional Terms.
460+
461+ "Additional permissions" are terms that supplement the terms of this
462+License by making exceptions from one or more of its conditions.
463+Additional permissions that are applicable to the entire Program shall
464+be treated as though they were included in this License, to the extent
465+that they are valid under applicable law. If additional permissions
466+apply only to part of the Program, that part may be used separately
467+under those permissions, but the entire Program remains governed by
468+this License without regard to the additional permissions.
469+
470+ When you convey a copy of a covered work, you may at your option
471+remove any additional permissions from that copy, or from any part of
472+it. (Additional permissions may be written to require their own
473+removal in certain cases when you modify the work.) You may place
474+additional permissions on material, added by you to a covered work,
475+for which you have or can give appropriate copyright permission.
476+
477+ Notwithstanding any other provision of this License, for material you
478+add to a covered work, you may (if authorized by the copyright holders of
479+that material) supplement the terms of this License with terms:
480+
481+ a) Disclaiming warranty or limiting liability differently from the
482+ terms of sections 15 and 16 of this License; or
483+
484+ b) Requiring preservation of specified reasonable legal notices or
485+ author attributions in that material or in the Appropriate Legal
486+ Notices displayed by works containing it; or
487+
488+ c) Prohibiting misrepresentation of the origin of that material, or
489+ requiring that modified versions of such material be marked in
490+ reasonable ways as different from the original version; or
491+
492+ d) Limiting the use for publicity purposes of names of licensors or
493+ authors of the material; or
494+
495+ e) Declining to grant rights under trademark law for use of some
496+ trade names, trademarks, or service marks; or
497+
498+ f) Requiring indemnification of licensors and authors of that
499+ material by anyone who conveys the material (or modified versions of
500+ it) with contractual assumptions of liability to the recipient, for
501+ any liability that these contractual assumptions directly impose on
502+ those licensors and authors.
503+
504+ All other non-permissive additional terms are considered "further
505+restrictions" within the meaning of section 10. If the Program as you
506+received it, or any part of it, contains a notice stating that it is
507+governed by this License along with a term that is a further
508+restriction, you may remove that term. If a license document contains
509+a further restriction but permits relicensing or conveying under this
510+License, you may add to a covered work material governed by the terms
511+of that license document, provided that the further restriction does
512+not survive such relicensing or conveying.
513+
514+ If you add terms to a covered work in accord with this section, you
515+must place, in the relevant source files, a statement of the
516+additional terms that apply to those files, or a notice indicating
517+where to find the applicable terms.
518+
519+ Additional terms, permissive or non-permissive, may be stated in the
520+form of a separately written license, or stated as exceptions;
521+the above requirements apply either way.
522+
523+ 8. Termination.
524+
525+ You may not propagate or modify a covered work except as expressly
526+provided under this License. Any attempt otherwise to propagate or
527+modify it is void, and will automatically terminate your rights under
528+this License (including any patent licenses granted under the third
529+paragraph of section 11).
530+
531+ However, if you cease all violation of this License, then your
532+license from a particular copyright holder is reinstated (a)
533+provisionally, unless and until the copyright holder explicitly and
534+finally terminates your license, and (b) permanently, if the copyright
535+holder fails to notify you of the violation by some reasonable means
536+prior to 60 days after the cessation.
537+
538+ Moreover, your license from a particular copyright holder is
539+reinstated permanently if the copyright holder notifies you of the
540+violation by some reasonable means, this is the first time you have
541+received notice of violation of this License (for any work) from that
542+copyright holder, and you cure the violation prior to 30 days after
543+your receipt of the notice.
544+
545+ Termination of your rights under this section does not terminate the
546+licenses of parties who have received copies or rights from you under
547+this License. If your rights have been terminated and not permanently
548+reinstated, you do not qualify to receive new licenses for the same
549+material under section 10.
550+
551+ 9. Acceptance Not Required for Having Copies.
552+
553+ You are not required to accept this License in order to receive or
554+run a copy of the Program. Ancillary propagation of a covered work
555+occurring solely as a consequence of using peer-to-peer transmission
556+to receive a copy likewise does not require acceptance. However,
557+nothing other than this License grants you permission to propagate or
558+modify any covered work. These actions infringe copyright if you do
559+not accept this License. Therefore, by modifying or propagating a
560+covered work, you indicate your acceptance of this License to do so.
561+
562+ 10. Automatic Licensing of Downstream Recipients.
563+
564+ Each time you convey a covered work, the recipient automatically
565+receives a license from the original licensors, to run, modify and
566+propagate that work, subject to this License. You are not responsible
567+for enforcing compliance by third parties with this License.
568+
569+ An "entity transaction" is a transaction transferring control of an
570+organization, or substantially all assets of one, or subdividing an
571+organization, or merging organizations. If propagation of a covered
572+work results from an entity transaction, each party to that
573+transaction who receives a copy of the work also receives whatever
574+licenses to the work the party's predecessor in interest had or could
575+give under the previous paragraph, plus a right to possession of the
576+Corresponding Source of the work from the predecessor in interest, if
577+the predecessor has it or can get it with reasonable efforts.
578+
579+ You may not impose any further restrictions on the exercise of the
580+rights granted or affirmed under this License. For example, you may
581+not impose a license fee, royalty, or other charge for exercise of
582+rights granted under this License, and you may not initiate litigation
583+(including a cross-claim or counterclaim in a lawsuit) alleging that
584+any patent claim is infringed by making, using, selling, offering for
585+sale, or importing the Program or any portion of it.
586+
587+ 11. Patents.
588+
589+ A "contributor" is a copyright holder who authorizes use under this
590+License of the Program or a work on which the Program is based. The
591+work thus licensed is called the contributor's "contributor version".
592+
593+ A contributor's "essential patent claims" are all patent claims
594+owned or controlled by the contributor, whether already acquired or
595+hereafter acquired, that would be infringed by some manner, permitted
596+by this License, of making, using, or selling its contributor version,
597+but do not include claims that would be infringed only as a
598+consequence of further modification of the contributor version. For
599+purposes of this definition, "control" includes the right to grant
600+patent sublicenses in a manner consistent with the requirements of
601+this License.
602+
603+ Each contributor grants you a non-exclusive, worldwide, royalty-free
604+patent license under the contributor's essential patent claims, to
605+make, use, sell, offer for sale, import and otherwise run, modify and
606+propagate the contents of its contributor version.
607+
608+ In the following three paragraphs, a "patent license" is any express
609+agreement or commitment, however denominated, not to enforce a patent
610+(such as an express permission to practice a patent or covenant not to
611+sue for patent infringement). To "grant" such a patent license to a
612+party means to make such an agreement or commitment not to enforce a
613+patent against the party.
614+
615+ If you convey a covered work, knowingly relying on a patent license,
616+and the Corresponding Source of the work is not available for anyone
617+to copy, free of charge and under the terms of this License, through a
618+publicly available network server or other readily accessible means,
619+then you must either (1) cause the Corresponding Source to be so
620+available, or (2) arrange to deprive yourself of the benefit of the
621+patent license for this particular work, or (3) arrange, in a manner
622+consistent with the requirements of this License, to extend the patent
623+license to downstream recipients. "Knowingly relying" means you have
624+actual knowledge that, but for the patent license, your conveying the
625+covered work in a country, or your recipient's use of the covered work
626+in a country, would infringe one or more identifiable patents in that
627+country that you have reason to believe are valid.
628+
629+ If, pursuant to or in connection with a single transaction or
630+arrangement, you convey, or propagate by procuring conveyance of, a
631+covered work, and grant a patent license to some of the parties
632+receiving the covered work authorizing them to use, propagate, modify
633+or convey a specific copy of the covered work, then the patent license
634+you grant is automatically extended to all recipients of the covered
635+work and works based on it.
636+
637+ A patent license is "discriminatory" if it does not include within
638+the scope of its coverage, prohibits the exercise of, or is
639+conditioned on the non-exercise of one or more of the rights that are
640+specifically granted under this License. You may not convey a covered
641+work if you are a party to an arrangement with a third party that is
642+in the business of distributing software, under which you make payment
643+to the third party based on the extent of your activity of conveying
644+the work, and under which the third party grants, to any of the
645+parties who would receive the covered work from you, a discriminatory
646+patent license (a) in connection with copies of the covered work
647+conveyed by you (or copies made from those copies), or (b) primarily
648+for and in connection with specific products or compilations that
649+contain the covered work, unless you entered into that arrangement,
650+or that patent license was granted, prior to 28 March 2007.
651+
652+ Nothing in this License shall be construed as excluding or limiting
653+any implied license or other defenses to infringement that may
654+otherwise be available to you under applicable patent law.
655+
656+ 12. No Surrender of Others' Freedom.
657+
658+ If conditions are imposed on you (whether by court order, agreement or
659+otherwise) that contradict the conditions of this License, they do not
660+excuse you from the conditions of this License. If you cannot convey a
661+covered work so as to satisfy simultaneously your obligations under this
662+License and any other pertinent obligations, then as a consequence you may
663+not convey it at all. For example, if you agree to terms that obligate you
664+to collect a royalty for further conveying from those to whom you convey
665+the Program, the only way you could satisfy both those terms and this
666+License would be to refrain entirely from conveying the Program.
667+
668+ 13. Use with the GNU Affero General Public License.
669+
670+ Notwithstanding any other provision of this License, you have
671+permission to link or combine any covered work with a work licensed
672+under version 3 of the GNU Affero General Public License into a single
673+combined work, and to convey the resulting work. The terms of this
674+License will continue to apply to the part which is the covered work,
675+but the special requirements of the GNU Affero General Public License,
676+section 13, concerning interaction through a network will apply to the
677+combination as such.
678+
679+ 14. Revised Versions of this License.
680+
681+ The Free Software Foundation may publish revised and/or new versions of
682+the GNU General Public License from time to time. Such new versions will
683+be similar in spirit to the present version, but may differ in detail to
684+address new problems or concerns.
685+
686+ Each version is given a distinguishing version number. If the
687+Program specifies that a certain numbered version of the GNU General
688+Public License "or any later version" applies to it, you have the
689+option of following the terms and conditions either of that numbered
690+version or of any later version published by the Free Software
691+Foundation. If the Program does not specify a version number of the
692+GNU General Public License, you may choose any version ever published
693+by the Free Software Foundation.
694+
695+ If the Program specifies that a proxy can decide which future
696+versions of the GNU General Public License can be used, that proxy's
697+public statement of acceptance of a version permanently authorizes you
698+to choose that version for the Program.
699+
700+ Later license versions may give you additional or different
701+permissions. However, no additional obligations are imposed on any
702+author or copyright holder as a result of your choosing to follow a
703+later version.
704+
705+ 15. Disclaimer of Warranty.
706+
707+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
708+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
709+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
710+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
711+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
712+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
713+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
714+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
715+
716+ 16. Limitation of Liability.
717+
718+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
719+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
720+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
721+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
722+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
723+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
724+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
725+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
726+SUCH DAMAGES.
727+
728+ 17. Interpretation of Sections 15 and 16.
729+
730+ If the disclaimer of warranty and limitation of liability provided
731+above cannot be given local legal effect according to their terms,
732+reviewing courts shall apply local law that most closely approximates
733+an absolute waiver of all civil liability in connection with the
734+Program, unless a warranty or assumption of liability accompanies a
735+copy of the Program in return for a fee.
736+
737+ END OF TERMS AND CONDITIONS
738+
739+ How to Apply These Terms to Your New Programs
740+
741+ If you develop a new program, and you want it to be of the greatest
742+possible use to the public, the best way to achieve this is to make it
743+free software which everyone can redistribute and change under these terms.
744+
745+ To do so, attach the following notices to the program. It is safest
746+to attach them to the start of each source file to most effectively
747+state the exclusion of warranty; and each file should have at least
748+the "copyright" line and a pointer to where the full notice is found.
749+
750+ <one line to give the program's name and a brief idea of what it does.>
751+ Copyright (C) <year> <name of author>
752+
753+ This program is free software: you can redistribute it and/or modify
754+ it under the terms of the GNU General Public License as published by
755+ the Free Software Foundation, either version 3 of the License, or
756+ (at your option) any later version.
757+
758+ This program is distributed in the hope that it will be useful,
759+ but WITHOUT ANY WARRANTY; without even the implied warranty of
760+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
761+ GNU General Public License for more details.
762+
763+ You should have received a copy of the GNU General Public License
764+ along with this program. If not, see <http://www.gnu.org/licenses/>.
765+
766+Also add information on how to contact you by electronic and paper mail.
767+
768+ If the program does terminal interaction, make it output a short
769+notice like this when it starts in an interactive mode:
770+
771+ <program> Copyright (C) <year> <name of author>
772+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
773+ This is free software, and you are welcome to redistribute it
774+ under certain conditions; type `show c' for details.
775+
776+The hypothetical commands `show w' and `show c' should show the appropriate
777+parts of the General Public License. Of course, your program's commands
778+might be different; for a GUI interface, you would use an "about box".
779+
780+ You should also get your employer (if you work as a programmer) or school,
781+if any, to sign a "copyright disclaimer" for the program, if necessary.
782+For more information on this, and how to apply and follow the GNU GPL, see
783+<http://www.gnu.org/licenses/>.
784+
785+ The GNU General Public License does not permit incorporating your program
786+into proprietary programs. If your program is a subroutine library, you
787+may consider it more useful to permit linking proprietary applications with
788+the library. If this is what you want to do, use the GNU Lesser General
789+Public License instead of this License. But first, please read
790+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
791
792=== renamed file 'COPYING' => 'COPYING.moved'
793=== added file 'README.md'
794--- README.md 1970-01-01 00:00:00 +0000
795+++ README.md 2014-12-09 09:20:47 +0000
796@@ -0,0 +1,150 @@
797+# Ubuntu Terminal
798+
799+A terminal app for desktop and mobile devices. It provides access to terminal
800+sessions and is based on KDE's Konsole plugin.
801+
802+The current plugin consists of:
803+- KTerminal: offers access to terminal session from qml
804+- KSessions: offers access to pty(s) from C++ layer
805+
806+## Building the app
807+
808+### For the desktop
809+
810+Install the following build dependencies:
811+
812+ sudo apt-get install libpam0g-dev
813+
814+Then open the CMakeLists.txt file in Qt Creator, and ensure that the kit
815+selected on the left sidebar (just above the green "Run" button) is "Desktop"
816+
817+### For a device
818+
819+If you don't have one already, you'll need to create an armhf chroot to
820+cross-compile the app. Here's how:
821+
822+1. In Qt Creator, open the CMakeLists.txt file
823+2. Go to Tools > Options > Ubuntu > Click
824+2. Click on Create Click Target
825+3. Follow the prompts to generate the chroot. You will be asked for your sudo
826+ password
827+4. Once created, you'll need to add the build dependencies for the app:
828+ - Click on the Maintain button on your chroot
829+ - On the terminal prompt that is started, type
830+ apt-get install libpam0g-dev:armhf
831+ - Close the terminal when the installation finishes
832+5. Now you can either do a clean checkout and wait to be prompted by Qt Creator
833+ to add the armhf kit, or alternatively:
834+6. Go to the Projects tab > Add kit and then select the UbuntuSDK armhf kit
835+
836+Additionally, you'll have to tell Qt Creator that you are doing a build for a
837+device to ultimately create a click package for installation:
838+
839+1. In Qt Creator, go to the Projects tab on the sidebar
840+2. Click on the "Build" subtab of the "UbuntuSDK for armhf..." tab
841+3. Then go to the "CMake arguments" text field and add "-DCLICK_MODE=on"
842+ without the quotes
843+
844+Before starting the build make sure to select the "UbuntuSDK" kit on Qt
845+Creator's left sidebar (just above the green "Run" button).
846+
847+### Doing the build
848+
849+Ensure you've selected the kit you want for your build and press the build
850+button on Qt Creator's left sidebar (or alternatively Ctrl+B).
851+
852+## Running the app
853+
854+### On the desktop
855+
856+No additional steps are required before running the app on the desktop.
857+
858+### On a device
859+
860+Due to Qt Creator's bug #1312094 in launchpad.net, there needs to be a manual
861+workaround done before the app can run on the device:
862+
863+1. Modify the desktop.in file: change the Exec line to read:
864+ Exec=lib/arm-linux-gnueabihf/bin/@EXEC@
865+
866+Remember to revert this temporary change if you are building a click package or
867+if you're making other changes to be committed to the code!
868+
869+### Starting the app
870+
871+Ensure you've selected the kit you want for your build and press the run
872+button on Qt Creator's left sidebar (or alternatively Ctrl+R).
873+
874+If the app hasn't been built yet, or if there are pending changes that require
875+a build, the app will automatically be built first before running.
876+
877+If you're starting the app on a device, the build will be copied over and the
878+code will run unconfined.
879+
880+## Building a click package
881+
882+There are two alternative ways of building a click package.
883+
884+### Using Qt Creator
885+
886+1. Ensure you've selected the UbuntuSDK for armhf kit on Qt Creator's sidebar
887+2. Click on Publish on the sidebar
888+3. Click on "Create package"
889+4. If all goes well, you'll find the final click package in the build directory
890+
891+Notes:
892+- You can see the output of the click build if you click on Edit on the sidebar
893+ and then "Application Output" at the bottom. This is useful to identify any
894+ failures during the build
895+- Run `sudo apt-get install click-reviewers-tools` to enable click package
896+ validation in Qt Creator. You might need to restart Qt Creator after you've
897+ installed them for it to detect them
898+
899+### Using click-buddy
900+
901+1. Install phablet-tools: `sudo apt-get install phablet-tools`
902+2. Run click-buddy in your source tree:
903+ click-buddy --dir . --arch armhf --framework ubuntu-sdk-14.04
904+3. Once finished, click-buddy will tell you the location of your source package
905+
906+## Installing a click package
907+
908+First of all, ensure you've got a working Ubuntu device attached over USB to
909+your host computer
910+
911+### Manually
912+
913+Run the following commands to manually install the click package (replace 0.1
914+with the version of your package):
915+
916+ adb push /home/phablet com.ubuntu.terminal_0.1_armhf.click
917+ adb shell
918+ sudo -H -u phablet pkcon install-local /home/phablet/com.ubuntu.terminal_0.1_armhf.click
919+
920+### Using click-buddy
921+
922+You can add the --provision argument to the previous command to install the
923+click package on the device.
924+
925+### Starting the app
926+
927+1. Either kill unity8 with `pkill unity8` or restart the system for the Apps
928+ (click) scope to pick up your newly installed click package
929+2. Search for Reminders in the Apps scope and tap on its icon to start it
930+3. You'll find the runtime logs at ~/.cache/upstart/application-click/
931+
932+## Uninstalling a click package
933+
934+Run the following commands, replacing the version of the click package you want
935+to uninstall:
936+
937+ adb shell
938+ sudo -iu phablet
939+ sudo click unregister com.ubuntu.terminal 0.1
940+
941+## Run the autopilot tests
942+
943+Once the app has been built, you can go to the build directory and run:
944+
945+ cd tests/autopilot
946+ autopilot run ubuntu_terminal_app
947
948=== renamed file 'README.md' => 'README.md.moved'
949=== added file 'README.translations'
950--- README.translations 1970-01-01 00:00:00 +0000
951+++ README.translations 2014-12-09 09:20:47 +0000
952@@ -0,0 +1,35 @@
953+# Updating translations
954+
955+Translations for the Terminal app happen in [Launchpad Translations][] and
956+are automatically committed daily on the trunk branch in the po/ folder.
957+
958+They are then built and installed as part of the package build, so that
959+developers don't really need to worry about them.
960+
961+However, there is one task that needs to be taken care of: exposing new
962+translatable messages to translators. So whenever you add new translatable
963+messages in the code, make sure to follow these steps:
964+
965+ 1. Run click-buddy retaining the build directory:
966+ `click-buddy --dir . --no-clean`
967+ 2. Commit and push the branch and send a merge proposal as usual
968+
969+And that's it, once the branch lands Launchpad should take care of all the rest!
970+
971+# Behind the scenes
972+
973+Behind the scenes, whenever the po/*.pot file (also known as translations template)
974+is committed to trunk Launchpad reads it and updates the translatable strings
975+exposed in the web UI. This will enable translators to work on the new strings.
976+The translations template contains all translatable strings that have been
977+extracted from the source code files.
978+
979+Launchpad will then store translations in its database and will commit them daily
980+in the form of textual po/*.po files to trunk. The PO files are also usually
981+referred to as the translations files. You'll find a translation file for each
982+language the app has got at least a translated message available for.
983+
984+Translations for core apps follow the standard [gettext format][].
985+
986+ [Launchpad Translations]: https://translations.launchpad.net/ubuntu-terminal-app
987+ [gettext format]: https://www.gnu.org/software/gettext/
988
989=== renamed file 'README.translations' => 'README.translations.moved'
990=== added file 'com.ubuntu.terminal.desktop.in.in'
991--- com.ubuntu.terminal.desktop.in.in 1970-01-01 00:00:00 +0000
992+++ com.ubuntu.terminal.desktop.in.in 2014-12-09 09:20:47 +0000
993@@ -0,0 +1,9 @@
994+[Desktop Entry]
995+Version=1.0
996+Type=Application
997+Terminal=false
998+Exec=@EXEC@
999+Icon=@ICON@
1000+_Name=Terminal
1001+X-Ubuntu-Touch=true
1002+X-Ubuntu-Default-Department-ID=accessories
1003
1004=== renamed file 'com.ubuntu.terminal.desktop.in.in' => 'com.ubuntu.terminal.desktop.in.in.moved'
1005=== added directory 'debian'
1006=== renamed directory 'debian' => 'debian.moved'
1007=== added file 'debian/changelog'
1008--- debian/changelog 1970-01-01 00:00:00 +0000
1009+++ debian/changelog 2014-12-09 09:20:47 +0000
1010@@ -0,0 +1,46 @@
1011+ubuntu-terminal-app (0.5ubuntu2) trusty; urgency=medium
1012+
1013+ [ Alan Pope ]
1014+ * Add -qt5 command line option (LP: #1288885)
1015+
1016+ [ David Planella ]
1017+ * Merge konsole plugin into the app's repo.
1018+
1019+ -- David Planella <david.planella@ubuntu.com> Sun, 27 Apr 2014 12:08:04 +0200
1020+
1021+ubuntu-terminal-app (0.5) raring; urgency=low
1022+
1023+ * Added landscape mode
1024+ * Fixed click effect on Circle Menu
1025+
1026+ -- Dmitry Zagnoyko <hiroshidi@gmail.com> Fri, 24 May 2013 19:07:40 +0300
1027+
1028+ubuntu-terminal-app (0.4) raring; urgency=low
1029+
1030+ * Widget uses only available space
1031+ * Widget scrolling replaced with swipe gestures
1032+ * Added double tap for autocomplete
1033+ * Added circle menu (test ver., aliases for CTRL+<key>)
1034+
1035+ -- Dmitry Zagnoyko <hiroshidi@gmail.com> Mon, 20 May 2013 12:52:01 +0300
1036+
1037+ubuntu-terminal-app (0.3) raring; urgency=low
1038+
1039+ * Added swipe gesture
1040+ * Added extra keys panels
1041+ * Sync with latest plugin revision
1042+
1043+ -- Michael Hall <mhall119@ubuntu.com> Mon, 06 May 2013 16:52:17 -0400
1044+
1045+ubuntu-terminal-app (0.2) raring; urgency=low
1046+
1047+ * Use Konsole plugin
1048+ * Add Settings tab for color scheme and font size
1049+
1050+ -- Michael Hall <mhall119@ubuntu.com> Tue, 30 Apr 2013 21:28:16 -0400
1051+
1052+ubuntu-terminal-app (0.1) raring; urgency=low
1053+
1054+ * Initial release
1055+
1056+ -- Michael Hall <mhall119@ubuntu.com> Mon, 11 Feb 2013 16:04:00 -0500
1057
1058=== added file 'debian/compat'
1059--- debian/compat 1970-01-01 00:00:00 +0000
1060+++ debian/compat 2014-12-09 09:20:47 +0000
1061@@ -0,0 +1,1 @@
1062+9
1063
1064=== added file 'debian/control'
1065--- debian/control 1970-01-01 00:00:00 +0000
1066+++ debian/control 2014-12-09 09:20:47 +0000
1067@@ -0,0 +1,59 @@
1068+Source: ubuntu-terminal-app
1069+Priority: extra
1070+Maintainer: Ubuntu App Cats <ubuntu-touch-coreapps@lists.launchpad.net>
1071+Build-Depends: cmake,
1072+ debhelper (>= 9),
1073+ python3-all,
1074+ gettext,
1075+ intltool,
1076+ libpam0g-dev,
1077+ qtbase5-dev,
1078+ qtdeclarative5-dev,
1079+ qt5-default,
1080+Standards-Version: 3.9.5
1081+Section: misc
1082+Homepage: https://launchpad.net/ubuntu-terminal-app
1083+Vcs-Bzr: https://code.launchpad.net/~ubuntu-terminal-dev/ubuntu-terminal-app/trunk
1084+
1085+Package: ubuntu-terminal-app
1086+Section: misc
1087+Architecture: any
1088+Depends: ${misc:Depends},
1089+ ${shlibs:Depends},
1090+ qtdeclarative5-qmltermwidget1.0,
1091+ qtdeclarative5-pamauthentication0.1,
1092+ qtdeclarative5-qtquick2-plugin,
1093+ qtdeclarative5-ubuntu-ui-toolkit-plugin,
1094+Description: Terminal application
1095+ Core Terminal application
1096+
1097+Package: qtdeclarative5-qmltermwidget1.0
1098+Architecture: any
1099+Multi-Arch: same
1100+Depends: ${misc:Depends},
1101+ ${shlibs:Depends},
1102+ ${misc:Pre-Depends},
1103+Description: QMLTermWidget QML plugin.
1104+ This package contains the QMLTermWidget terminal emulator plugin
1105+ for Qt Qml.
1106+
1107+Package: qtdeclarative5-pamauthentication0.1
1108+Architecture: any
1109+Multi-Arch: same
1110+Depends: ${misc:Depends},
1111+ ${shlibs:Depends},
1112+ ${misc:Pre-Depends},
1113+Description: PAM authentication QML plugin
1114+ This package contains a plugin that enables QML apps to do
1115+ password authentication via the PAM API.
1116+
1117+Package: ubuntu-terminal-app-autopilot
1118+Architecture: all
1119+Depends: ${misc:Depends},
1120+ libautopilot-qt,
1121+ libqt5test5,
1122+ python3-autopilot,
1123+ ubuntu-terminal-app (>= ${source:Version}),
1124+ ubuntu-ui-toolkit-autopilot,
1125+Description: Autopilot tests for Terminal Application
1126+ This package contains the autopilot tests for the Terminal
1127
1128=== added file 'debian/copyright'
1129--- debian/copyright 1970-01-01 00:00:00 +0000
1130+++ debian/copyright 2014-12-09 09:20:47 +0000
1131@@ -0,0 +1,50 @@
1132+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1133+Upstream-Name: ubuntu-terminal-app
1134+Source: https://launchpad.net/ubuntu-terminal-app
1135+
1136+Files: *
1137+Copyright: 2013 Canonical Ltd.
1138+ 2013 Dmitry Zagnoyko <hiroshidi@gmail.com>
1139+ 2013 Omer Akram <om26er@ubuntu.com>
1140+ 2013 Paolo Rotolo <paolorotolo@ubuntu.com>
1141+ 2013 Riccardo Padovani <rpadovani@ubuntu-it.org>
1142+ 2013 Sam Hewitt <snwh@ubuntu.com>
1143+License: GPL-3
1144+
1145+Files: debian/*
1146+Copyright: 2013 Canonical Ltd.
1147+License: LGPL-3
1148+
1149+License: GPL-3
1150+ This package is free software; you can redistribute it and/or
1151+ modify it under the terms of the GNU General Public
1152+ License as published by the Free Software Foundation; either
1153+ version 3 of the License.
1154+ .
1155+ This package is distributed in the hope that it will be useful,
1156+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1157+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1158+ General Public License for more details.
1159+ .
1160+ You should have received a copy of the GNU General Public License
1161+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1162+ .
1163+ On Debian systems, the complete text of the GNU General
1164+ Public License can be found in "/usr/share/common-licenses/GPL-3".
1165+
1166+License: LGPL-3
1167+ This package is free software; you can redistribute it and/or
1168+ modify it under the terms of the GNU Lesser General Public
1169+ License as published by the Free Software Foundation; either
1170+ version 3 of the License.
1171+ .
1172+ This package is distributed in the hope that it will be useful,
1173+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1174+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1175+ Lesser General Public License for more details.
1176+ .
1177+ You should have received a copy of the GNU General Public License
1178+ along with this program. If not, see <http://www.gnu.org/licenses/>.
1179+ .
1180+ On Debian systems, the complete text of the GNU Lesser General
1181+ Public License can be found in "/usr/share/common-licenses/LGPL-3".
1182
1183=== added file 'debian/qtdeclarative5-pamauthentication0.1.install'
1184--- debian/qtdeclarative5-pamauthentication0.1.install 1970-01-01 00:00:00 +0000
1185+++ debian/qtdeclarative5-pamauthentication0.1.install 2014-12-09 09:20:47 +0000
1186@@ -0,0 +1,1 @@
1187+usr/lib/*/qt5/qml/com/ubuntu/PamAuthentication/
1188
1189=== added file 'debian/qtdeclarative5-qmltermwidget1.0.install'
1190--- debian/qtdeclarative5-qmltermwidget1.0.install 1970-01-01 00:00:00 +0000
1191+++ debian/qtdeclarative5-qmltermwidget1.0.install 2014-12-09 09:20:47 +0000
1192@@ -0,0 +1,1 @@
1193+usr/lib/*/qt5/qml/QMLTermWidget
1194
1195=== added file 'debian/rules'
1196--- debian/rules 1970-01-01 00:00:00 +0000
1197+++ debian/rules 2014-12-09 09:20:47 +0000
1198@@ -0,0 +1,11 @@
1199+#!/usr/bin/make -f
1200+# -*- makefile -*-
1201+
1202+# Uncomment this to turn on verbose mode.
1203+#export DH_VERBOSE=1
1204+
1205+%:
1206+ dh $@
1207+
1208+override_dh_auto_configure:
1209+ dh_auto_configure -- -DCLICK_MODE=OFF
1210
1211=== added directory 'debian/source'
1212=== added file 'debian/source/format'
1213--- debian/source/format 1970-01-01 00:00:00 +0000
1214+++ debian/source/format 2014-12-09 09:20:47 +0000
1215@@ -0,0 +1,1 @@
1216+1.0
1217
1218=== added file 'debian/ubuntu-terminal-app-autopilot.install'
1219--- debian/ubuntu-terminal-app-autopilot.install 1970-01-01 00:00:00 +0000
1220+++ debian/ubuntu-terminal-app-autopilot.install 2014-12-09 09:20:47 +0000
1221@@ -0,0 +1,1 @@
1222+usr/lib/*/dist-packages/ubuntu_terminal_app/
1223
1224=== added file 'debian/ubuntu-terminal-app.install'
1225--- debian/ubuntu-terminal-app.install 1970-01-01 00:00:00 +0000
1226+++ debian/ubuntu-terminal-app.install 2014-12-09 09:20:47 +0000
1227@@ -0,0 +1,2 @@
1228+usr/bin/*
1229+usr/share/*
1230
1231=== added file 'manifest.json.in'
1232--- manifest.json.in 1970-01-01 00:00:00 +0000
1233+++ manifest.json.in 2014-12-09 09:20:47 +0000
1234@@ -0,0 +1,23 @@
1235+{
1236+ "description": "Terminal application",
1237+ "framework": "ubuntu-sdk-14.10-dev2",
1238+ "architecture": "@CLICK_ARCH@",
1239+ "hooks": {
1240+ "terminal": {
1241+ "apparmor": "terminal.apparmor",
1242+ "desktop": "com.ubuntu.terminal.desktop"
1243+ }
1244+ },
1245+ "icon": "terminal64.png",
1246+ "maintainer": "Ubuntu App Cats <ubuntu-touch-coreapps@lists.launchpad.net>",
1247+ "name": "com.ubuntu.terminal",
1248+ "title": "Terminal",
1249+ "version": "0.7.@BZR_REVNO@",
1250+ "x-source": {
1251+ "vcs-bzr": "@BZR_SOURCE@",
1252+ "vcs-bzr-revno": "@BZR_REVNO@"
1253+ },
1254+ "x-test": {
1255+ "autopilot": "@AUTOPILOT_DIR@"
1256+ }
1257+}
1258
1259=== renamed file 'manifest.json.in' => 'manifest.json.in.moved'
1260=== added directory 'po'
1261=== renamed directory 'po' => 'po.moved'
1262=== added file 'po/CMakeLists.txt'
1263--- po/CMakeLists.txt 1970-01-01 00:00:00 +0000
1264+++ po/CMakeLists.txt 2014-12-09 09:20:47 +0000
1265@@ -0,0 +1,30 @@
1266+include(FindGettext)
1267+find_program(GETTEXT_XGETTEXT_EXECUTABLE xgettext)
1268+
1269+set(DOMAIN ${PROJECT_NAME})
1270+set(POT_FILE ${DOMAIN}.pot)
1271+file(GLOB PO_FILES *.po)
1272+
1273+add_custom_target(${POT_FILE} ALL
1274+ COMMENT "Generating translation template..."
1275+ COMMAND ${INTLTOOL_EXTRACT} --update --type=gettext/ini
1276+ --srcdir=${CMAKE_SOURCE_DIR} ${DESKTOP_FILE}.in.in
1277+ COMMAND ${GETTEXT_XGETTEXT_EXECUTABLE} -o ${POT_FILE}
1278+ -D ${CMAKE_CURRENT_SOURCE_DIR}
1279+ -D ${CMAKE_CURRENT_BINARY_DIR}
1280+ --from-code=UTF-8
1281+ --c++ --qt --add-comments=TRANSLATORS
1282+ --keyword=tr --keyword=tr:1,2 --keyword=N_
1283+ --package-name='${PROJECT}'
1284+ --copyright-holder='Canonical Ltd.'
1285+ ${I18N_SRC_FILES}
1286+ COMMAND ${CMAKE_COMMAND} -E copy ${POT_FILE} ${CMAKE_CURRENT_SOURCE_DIR})
1287+
1288+foreach(PO_FILE ${PO_FILES})
1289+ get_filename_component(LANG ${PO_FILE} NAME_WE)
1290+ gettext_process_po_files(${LANG} ALL PO_FILES ${PO_FILE})
1291+ set(INSTALL_DIR ${CMAKE_INSTALL_LOCALEDIR}/${LANG}/LC_MESSAGES)
1292+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${LANG}.gmo
1293+ DESTINATION ${INSTALL_DIR}
1294+ RENAME ${DOMAIN}.mo)
1295+endforeach(PO_FILE)
1296
1297=== added file 'po/ar.po'
1298--- po/ar.po 1970-01-01 00:00:00 +0000
1299+++ po/ar.po 2014-12-09 09:20:47 +0000
1300@@ -0,0 +1,169 @@
1301+# Arabic translation for ubuntu-terminal-app
1302+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
1303+# This file is distributed under the same license as the ubuntu-terminal-app package.
1304+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
1305+#
1306+msgid ""
1307+msgstr ""
1308+"Project-Id-Version: ubuntu-terminal-app\n"
1309+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1310+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
1311+"PO-Revision-Date: 2014-04-16 11:58+0000\n"
1312+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313+"Language-Team: Arabic <ar@li.org>\n"
1314+"MIME-Version: 1.0\n"
1315+"Content-Type: text/plain; charset=UTF-8\n"
1316+"Content-Transfer-Encoding: 8bit\n"
1317+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
1318+"X-Generator: Launchpad (build 17196)\n"
1319+
1320+#: ../src/app/qml/AuthenticationDialog.qml:25
1321+msgid "Authentication required"
1322+msgstr ""
1323+
1324+#: ../src/app/qml/AuthenticationDialog.qml:27
1325+msgid "Enter password:"
1326+msgstr ""
1327+
1328+#: ../src/app/qml/AuthenticationDialog.qml:40
1329+msgid "password"
1330+msgstr ""
1331+
1332+#: ../src/app/qml/AuthenticationDialog.qml:50
1333+#: ../src/app/qml/NotifyDialog.qml:25
1334+msgid "Ok"
1335+msgstr ""
1336+
1337+#: ../src/app/qml/AuthenticationDialog.qml:61
1338+#: ../src/app/qml/ColorDialog.qml:149
1339+msgid "Cancel"
1340+msgstr ""
1341+
1342+#: ../src/app/qml/AuthenticationService.qml:55
1343+msgid "Authentication failed"
1344+msgstr ""
1345+
1346+#: ../src/app/qml/ColorDialog.qml:25
1347+msgid "Pick a color"
1348+msgstr ""
1349+
1350+#: ../src/app/qml/ColorDialog.qml:129
1351+msgid "OK"
1352+msgstr ""
1353+
1354+#: ../src/app/qml/Configs.qml:69
1355+msgid "Color scheme"
1356+msgstr ""
1357+
1358+#: ../src/app/qml/Configs.qml:85
1359+msgid "Font size"
1360+msgstr ""
1361+
1362+#: ../src/app/qml/Configs.qml:108
1363+msgid "Enable effects:"
1364+msgstr ""
1365+
1366+#: ../src/app/qml/Configs.qml:126
1367+msgid "Screen color"
1368+msgstr ""
1369+
1370+#: ../src/app/qml/Configs.qml:139
1371+msgid "Color intensity"
1372+msgstr ""
1373+
1374+#: ../src/app/qml/Configs.qml:167
1375+msgid "Bloom"
1376+msgstr ""
1377+
1378+#: ../src/app/qml/Configs.qml:195
1379+msgid "Curvature"
1380+msgstr ""
1381+
1382+#: ../src/app/qml/Configs.qml:223
1383+msgid "Noise"
1384+msgstr ""
1385+
1386+#: ../src/app/qml/Configs.qml:251
1387+msgid "Jitter"
1388+msgstr ""
1389+
1390+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
1391+msgid "PG_UP"
1392+msgstr ""
1393+
1394+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
1395+msgid "TAB"
1396+msgstr ""
1397+
1398+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
1399+msgid "DEL"
1400+msgstr ""
1401+
1402+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
1403+msgid "HOME"
1404+msgstr ""
1405+
1406+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
1407+msgid "PG_DN"
1408+msgstr ""
1409+
1410+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
1411+msgid "END"
1412+msgstr ""
1413+
1414+#: ../src/app/qml/ubuntu-terminal-app.qml:32
1415+#: com.ubuntu.terminal.desktop.in.in.h:1
1416+msgid "Terminal"
1417+msgstr ""
1418+
1419+#: ../src/app/qml/ubuntu-terminal-app.qml:51
1420+#: ../src/app/qml/ubuntu-terminal-app.qml:88
1421+msgid "Settings"
1422+msgstr ""
1423+
1424+#: ../src/app/qml/ubuntu-terminal-app.qml:57
1425+msgid "Hide all key panels"
1426+msgstr ""
1427+
1428+#: ../src/app/qml/ubuntu-terminal-app.qml:64
1429+msgid "Control keys"
1430+msgstr ""
1431+
1432+#: ../src/app/qml/ubuntu-terminal-app.qml:71
1433+msgid "Function keys"
1434+msgstr ""
1435+
1436+#: ../src/app/qml/ubuntu-terminal-app.qml:78
1437+msgid "Arrow keys"
1438+msgstr ""
1439+
1440+#: ../src/plugin/konsole/ColorScheme.cpp:276
1441+#: ../src/plugin/konsole/ColorScheme.cpp:291
1442+msgid "Un-named Color Scheme"
1443+msgstr ""
1444+
1445+#: ../src/plugin/konsole/ColorScheme.cpp:426
1446+msgid "Accessible Color Scheme"
1447+msgstr ""
1448+
1449+#: ../src/plugin/konsole/Filter.cpp:518
1450+msgid "Open Link"
1451+msgstr ""
1452+
1453+#: ../src/plugin/konsole/Filter.cpp:519
1454+msgid "Copy Link Address"
1455+msgstr ""
1456+
1457+#: ../src/plugin/konsole/Filter.cpp:523
1458+msgid "Send Email To..."
1459+msgstr ""
1460+
1461+#: ../src/plugin/konsole/Filter.cpp:524
1462+msgid "Copy Email Address"
1463+msgstr ""
1464+
1465+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
1466+msgid ""
1467+"No keyboard translator available. The information needed to convert key "
1468+"presses into characters to send to the terminal is missing."
1469+msgstr ""
1470
1471=== added file 'po/ast.po'
1472--- po/ast.po 1970-01-01 00:00:00 +0000
1473+++ po/ast.po 2014-12-09 09:20:47 +0000
1474@@ -0,0 +1,171 @@
1475+# Asturian translation for ubuntu-terminal-app
1476+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
1477+# This file is distributed under the same license as the ubuntu-terminal-app package.
1478+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
1479+#
1480+msgid ""
1481+msgstr ""
1482+"Project-Id-Version: ubuntu-terminal-app\n"
1483+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1484+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
1485+"PO-Revision-Date: 2014-10-12 16:26+0000\n"
1486+"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
1487+"Language-Team: Asturian <ast@li.org>\n"
1488+"MIME-Version: 1.0\n"
1489+"Content-Type: text/plain; charset=UTF-8\n"
1490+"Content-Transfer-Encoding: 8bit\n"
1491+"X-Launchpad-Export-Date: 2014-10-13 06:12+0000\n"
1492+"X-Generator: Launchpad (build 17196)\n"
1493+
1494+#: ../src/app/qml/AuthenticationDialog.qml:25
1495+msgid "Authentication required"
1496+msgstr "Necesítase autenticación"
1497+
1498+#: ../src/app/qml/AuthenticationDialog.qml:27
1499+msgid "Enter password:"
1500+msgstr "Escribi la contraseña:"
1501+
1502+#: ../src/app/qml/AuthenticationDialog.qml:40
1503+msgid "password"
1504+msgstr "contraseña"
1505+
1506+#: ../src/app/qml/AuthenticationDialog.qml:50
1507+#: ../src/app/qml/NotifyDialog.qml:25
1508+msgid "Ok"
1509+msgstr "Aceutar"
1510+
1511+#: ../src/app/qml/AuthenticationDialog.qml:61
1512+#: ../src/app/qml/ColorDialog.qml:149
1513+msgid "Cancel"
1514+msgstr "Encaboxar"
1515+
1516+#: ../src/app/qml/AuthenticationService.qml:55
1517+msgid "Authentication failed"
1518+msgstr "Falló l'autenticación"
1519+
1520+#: ../src/app/qml/ColorDialog.qml:25
1521+msgid "Pick a color"
1522+msgstr "Escueyi un color"
1523+
1524+#: ../src/app/qml/ColorDialog.qml:129
1525+msgid "OK"
1526+msgstr "Aceutar"
1527+
1528+#: ../src/app/qml/Configs.qml:69
1529+msgid "Color scheme"
1530+msgstr "Esquema de color"
1531+
1532+#: ../src/app/qml/Configs.qml:85
1533+msgid "Font size"
1534+msgstr "Tamañu de lletra"
1535+
1536+#: ../src/app/qml/Configs.qml:108
1537+msgid "Enable effects:"
1538+msgstr "Activar efeutos:"
1539+
1540+#: ../src/app/qml/Configs.qml:126
1541+msgid "Screen color"
1542+msgstr "Color de pantalla"
1543+
1544+#: ../src/app/qml/Configs.qml:139
1545+msgid "Color intensity"
1546+msgstr "Intensidá del color"
1547+
1548+#: ../src/app/qml/Configs.qml:167
1549+msgid "Bloom"
1550+msgstr ""
1551+
1552+#: ../src/app/qml/Configs.qml:195
1553+msgid "Curvature"
1554+msgstr "Curvatura"
1555+
1556+#: ../src/app/qml/Configs.qml:223
1557+msgid "Noise"
1558+msgstr "Ruíu"
1559+
1560+#: ../src/app/qml/Configs.qml:251
1561+msgid "Jitter"
1562+msgstr ""
1563+
1564+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
1565+msgid "PG_UP"
1566+msgstr "Av_Pax"
1567+
1568+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
1569+msgid "TAB"
1570+msgstr "TAB"
1571+
1572+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
1573+msgid "DEL"
1574+msgstr "Supr"
1575+
1576+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
1577+msgid "HOME"
1578+msgstr ""
1579+
1580+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
1581+msgid "PG_DN"
1582+msgstr ""
1583+
1584+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
1585+msgid "END"
1586+msgstr ""
1587+
1588+#: ../src/app/qml/ubuntu-terminal-app.qml:32
1589+#: com.ubuntu.terminal.desktop.in.in.h:1
1590+msgid "Terminal"
1591+msgstr "Terminal"
1592+
1593+#: ../src/app/qml/ubuntu-terminal-app.qml:51
1594+#: ../src/app/qml/ubuntu-terminal-app.qml:88
1595+msgid "Settings"
1596+msgstr "Axustes"
1597+
1598+#: ../src/app/qml/ubuntu-terminal-app.qml:57
1599+msgid "Hide all key panels"
1600+msgstr ""
1601+
1602+#: ../src/app/qml/ubuntu-terminal-app.qml:64
1603+msgid "Control keys"
1604+msgstr "Tecles de control"
1605+
1606+#: ../src/app/qml/ubuntu-terminal-app.qml:71
1607+msgid "Function keys"
1608+msgstr "Tecles de función"
1609+
1610+#: ../src/app/qml/ubuntu-terminal-app.qml:78
1611+msgid "Arrow keys"
1612+msgstr "Tecles de fleches"
1613+
1614+#: ../src/plugin/konsole/ColorScheme.cpp:276
1615+#: ../src/plugin/konsole/ColorScheme.cpp:291
1616+msgid "Un-named Color Scheme"
1617+msgstr "Esquema de color ensin nome"
1618+
1619+#: ../src/plugin/konsole/ColorScheme.cpp:426
1620+msgid "Accessible Color Scheme"
1621+msgstr "Esquema de color accesible"
1622+
1623+#: ../src/plugin/konsole/Filter.cpp:518
1624+msgid "Open Link"
1625+msgstr "Abrir enllaz"
1626+
1627+#: ../src/plugin/konsole/Filter.cpp:519
1628+msgid "Copy Link Address"
1629+msgstr "Copiar la direición del enllaz"
1630+
1631+#: ../src/plugin/konsole/Filter.cpp:523
1632+msgid "Send Email To..."
1633+msgstr "Unviar corréu a..."
1634+
1635+#: ../src/plugin/konsole/Filter.cpp:524
1636+msgid "Copy Email Address"
1637+msgstr "Copiar direición de corréu electrónicu"
1638+
1639+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
1640+msgid ""
1641+"No keyboard translator available. The information needed to convert key "
1642+"presses into characters to send to the terminal is missing."
1643+msgstr ""
1644+"Nun hai conversor de tecláu disponible. Falta la información necesaria pa "
1645+"convertir les pulsaciones de tecles en carauteres a mandar al terminal."
1646
1647=== added file 'po/br.po'
1648--- po/br.po 1970-01-01 00:00:00 +0000
1649+++ po/br.po 2014-12-09 09:20:47 +0000
1650@@ -0,0 +1,172 @@
1651+# Breton translation for ubuntu-terminal-app
1652+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
1653+# This file is distributed under the same license as the ubuntu-terminal-app package.
1654+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
1655+#
1656+msgid ""
1657+msgstr ""
1658+"Project-Id-Version: ubuntu-terminal-app\n"
1659+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1660+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
1661+"PO-Revision-Date: 2014-10-03 06:40+0000\n"
1662+"Last-Translator: Fohanno Thierry <thierry.fohanno@ofis-bzh.org>\n"
1663+"Language-Team: Breton <br@li.org>\n"
1664+"MIME-Version: 1.0\n"
1665+"Content-Type: text/plain; charset=UTF-8\n"
1666+"Content-Transfer-Encoding: 8bit\n"
1667+"X-Launchpad-Export-Date: 2014-10-04 06:25+0000\n"
1668+"X-Generator: Launchpad (build 17196)\n"
1669+
1670+#: ../src/app/qml/AuthenticationDialog.qml:25
1671+msgid "Authentication required"
1672+msgstr "Dilesadur rekis"
1673+
1674+#: ../src/app/qml/AuthenticationDialog.qml:27
1675+msgid "Enter password:"
1676+msgstr "Merkañ ar ger-tremen :"
1677+
1678+#: ../src/app/qml/AuthenticationDialog.qml:40
1679+msgid "password"
1680+msgstr "ger-tremen"
1681+
1682+#: ../src/app/qml/AuthenticationDialog.qml:50
1683+#: ../src/app/qml/NotifyDialog.qml:25
1684+msgid "Ok"
1685+msgstr "Mat eo"
1686+
1687+#: ../src/app/qml/AuthenticationDialog.qml:61
1688+#: ../src/app/qml/ColorDialog.qml:149
1689+msgid "Cancel"
1690+msgstr "Nullañ"
1691+
1692+#: ../src/app/qml/AuthenticationService.qml:55
1693+msgid "Authentication failed"
1694+msgstr "C'hwitet eo an dilesadur"
1695+
1696+#: ../src/app/qml/ColorDialog.qml:25
1697+msgid "Pick a color"
1698+msgstr "Dibab ul liv"
1699+
1700+#: ../src/app/qml/ColorDialog.qml:129
1701+msgid "OK"
1702+msgstr "Mat eo"
1703+
1704+#: ../src/app/qml/Configs.qml:69
1705+msgid "Color scheme"
1706+msgstr "Livaoueg"
1707+
1708+#: ../src/app/qml/Configs.qml:85
1709+msgid "Font size"
1710+msgstr "Ment ar font"
1711+
1712+#: ../src/app/qml/Configs.qml:108
1713+msgid "Enable effects:"
1714+msgstr "Gweredekaat an efedoù :"
1715+
1716+#: ../src/app/qml/Configs.qml:126
1717+msgid "Screen color"
1718+msgstr "Liv ar skramm"
1719+
1720+#: ../src/app/qml/Configs.qml:139
1721+msgid "Color intensity"
1722+msgstr "Splannder al liv"
1723+
1724+#: ../src/app/qml/Configs.qml:167
1725+msgid "Bloom"
1726+msgstr "Bleuñv"
1727+
1728+#: ../src/app/qml/Configs.qml:195
1729+msgid "Curvature"
1730+msgstr "Krommadur"
1731+
1732+#: ../src/app/qml/Configs.qml:223
1733+msgid "Noise"
1734+msgstr "Trouz"
1735+
1736+#: ../src/app/qml/Configs.qml:251
1737+msgid "Jitter"
1738+msgstr "Distabilder"
1739+
1740+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
1741+msgid "PG_UP"
1742+msgstr "PAJ_LEIN"
1743+
1744+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
1745+msgid "TAB"
1746+msgstr "TAOLENN"
1747+
1748+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
1749+msgid "DEL"
1750+msgstr "DIL"
1751+
1752+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
1753+msgid "HOME"
1754+msgstr "DEROÙ"
1755+
1756+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
1757+msgid "PG_DN"
1758+msgstr "PAJ_TRAOÑ"
1759+
1760+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
1761+msgid "END"
1762+msgstr "DIB"
1763+
1764+#: ../src/app/qml/ubuntu-terminal-app.qml:32
1765+#: com.ubuntu.terminal.desktop.in.in.h:1
1766+msgid "Terminal"
1767+msgstr "Termenell"
1768+
1769+#: ../src/app/qml/ubuntu-terminal-app.qml:51
1770+#: ../src/app/qml/ubuntu-terminal-app.qml:88
1771+msgid "Settings"
1772+msgstr "Arventennoù"
1773+
1774+#: ../src/app/qml/ubuntu-terminal-app.qml:57
1775+msgid "Hide all key panels"
1776+msgstr "Kuzhat an holl banelloù stokelloù"
1777+
1778+#: ../src/app/qml/ubuntu-terminal-app.qml:64
1779+msgid "Control keys"
1780+msgstr "Stokelloù kontroll"
1781+
1782+#: ../src/app/qml/ubuntu-terminal-app.qml:71
1783+msgid "Function keys"
1784+msgstr "Stokelloù arc'hwel"
1785+
1786+#: ../src/app/qml/ubuntu-terminal-app.qml:78
1787+msgid "Arrow keys"
1788+msgstr "Biroù ar c'hlavier"
1789+
1790+#: ../src/plugin/konsole/ColorScheme.cpp:276
1791+#: ../src/plugin/konsole/ColorScheme.cpp:291
1792+msgid "Un-named Color Scheme"
1793+msgstr "Patrom livioù dizanv"
1794+
1795+#: ../src/plugin/konsole/ColorScheme.cpp:426
1796+msgid "Accessible Color Scheme"
1797+msgstr "Patrom livioù a c'haller kaout"
1798+
1799+#: ../src/plugin/konsole/Filter.cpp:518
1800+msgid "Open Link"
1801+msgstr "Digeriñ al liamm"
1802+
1803+#: ../src/plugin/konsole/Filter.cpp:519
1804+msgid "Copy Link Address"
1805+msgstr "Eilañ chomlec'h al liamm"
1806+
1807+#: ../src/plugin/konsole/Filter.cpp:523
1808+msgid "Send Email To..."
1809+msgstr "Kas ur postel da..."
1810+
1811+#: ../src/plugin/konsole/Filter.cpp:524
1812+msgid "Copy Email Address"
1813+msgstr "Eilañ ar chomlec'h postel"
1814+
1815+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
1816+msgid ""
1817+"No keyboard translator available. The information needed to convert key "
1818+"presses into characters to send to the terminal is missing."
1819+msgstr ""
1820+"N'eus troer ebet da gaout evit ar c'hlavier. Mankout a ra an titouroù a zo "
1821+"ezhomm evit amdreiñ ar pouezañ war ar stokelloù en arouezennoù da gas d'an "
1822+"dermenell."
1823
1824=== added file 'po/ca.po'
1825--- po/ca.po 1970-01-01 00:00:00 +0000
1826+++ po/ca.po 2014-12-09 09:20:47 +0000
1827@@ -0,0 +1,169 @@
1828+# Catalan translation for ubuntu-terminal-app
1829+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
1830+# This file is distributed under the same license as the ubuntu-terminal-app package.
1831+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
1832+#
1833+msgid ""
1834+msgstr ""
1835+"Project-Id-Version: ubuntu-terminal-app\n"
1836+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1837+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
1838+"PO-Revision-Date: 2014-09-10 10:34+0000\n"
1839+"Last-Translator: David Planella <david.planella@ubuntu.com>\n"
1840+"Language-Team: Catalan <ca@li.org>\n"
1841+"MIME-Version: 1.0\n"
1842+"Content-Type: text/plain; charset=UTF-8\n"
1843+"Content-Transfer-Encoding: 8bit\n"
1844+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
1845+"X-Generator: Launchpad (build 17196)\n"
1846+
1847+#: ../src/app/qml/AuthenticationDialog.qml:25
1848+msgid "Authentication required"
1849+msgstr ""
1850+
1851+#: ../src/app/qml/AuthenticationDialog.qml:27
1852+msgid "Enter password:"
1853+msgstr ""
1854+
1855+#: ../src/app/qml/AuthenticationDialog.qml:40
1856+msgid "password"
1857+msgstr ""
1858+
1859+#: ../src/app/qml/AuthenticationDialog.qml:50
1860+#: ../src/app/qml/NotifyDialog.qml:25
1861+msgid "Ok"
1862+msgstr ""
1863+
1864+#: ../src/app/qml/AuthenticationDialog.qml:61
1865+#: ../src/app/qml/ColorDialog.qml:149
1866+msgid "Cancel"
1867+msgstr "Cancel·la"
1868+
1869+#: ../src/app/qml/AuthenticationService.qml:55
1870+msgid "Authentication failed"
1871+msgstr ""
1872+
1873+#: ../src/app/qml/ColorDialog.qml:25
1874+msgid "Pick a color"
1875+msgstr "Trieu un color"
1876+
1877+#: ../src/app/qml/ColorDialog.qml:129
1878+msgid "OK"
1879+msgstr "D'acord"
1880+
1881+#: ../src/app/qml/Configs.qml:69
1882+msgid "Color scheme"
1883+msgstr "Esquema de colors"
1884+
1885+#: ../src/app/qml/Configs.qml:85
1886+msgid "Font size"
1887+msgstr "Mida de la lletra"
1888+
1889+#: ../src/app/qml/Configs.qml:108
1890+msgid "Enable effects:"
1891+msgstr "Habilita els efectes:"
1892+
1893+#: ../src/app/qml/Configs.qml:126
1894+msgid "Screen color"
1895+msgstr "Color de la pantalla"
1896+
1897+#: ../src/app/qml/Configs.qml:139
1898+msgid "Color intensity"
1899+msgstr "Intensitat del color"
1900+
1901+#: ../src/app/qml/Configs.qml:167
1902+msgid "Bloom"
1903+msgstr ""
1904+
1905+#: ../src/app/qml/Configs.qml:195
1906+msgid "Curvature"
1907+msgstr "Curvatura"
1908+
1909+#: ../src/app/qml/Configs.qml:223
1910+msgid "Noise"
1911+msgstr "Soroll"
1912+
1913+#: ../src/app/qml/Configs.qml:251
1914+msgid "Jitter"
1915+msgstr "Tremolor"
1916+
1917+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
1918+msgid "PG_UP"
1919+msgstr ""
1920+
1921+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
1922+msgid "TAB"
1923+msgstr ""
1924+
1925+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
1926+msgid "DEL"
1927+msgstr ""
1928+
1929+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
1930+msgid "HOME"
1931+msgstr ""
1932+
1933+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
1934+msgid "PG_DN"
1935+msgstr ""
1936+
1937+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
1938+msgid "END"
1939+msgstr ""
1940+
1941+#: ../src/app/qml/ubuntu-terminal-app.qml:32
1942+#: com.ubuntu.terminal.desktop.in.in.h:1
1943+msgid "Terminal"
1944+msgstr "Terminal"
1945+
1946+#: ../src/app/qml/ubuntu-terminal-app.qml:51
1947+#: ../src/app/qml/ubuntu-terminal-app.qml:88
1948+msgid "Settings"
1949+msgstr "Paràmetres"
1950+
1951+#: ../src/app/qml/ubuntu-terminal-app.qml:57
1952+msgid "Hide all key panels"
1953+msgstr "Amaga tots els taulers de tecles"
1954+
1955+#: ../src/app/qml/ubuntu-terminal-app.qml:64
1956+msgid "Control keys"
1957+msgstr "Tecles de control"
1958+
1959+#: ../src/app/qml/ubuntu-terminal-app.qml:71
1960+msgid "Function keys"
1961+msgstr "Tecles de funció"
1962+
1963+#: ../src/app/qml/ubuntu-terminal-app.qml:78
1964+msgid "Arrow keys"
1965+msgstr "Tecles de posició"
1966+
1967+#: ../src/plugin/konsole/ColorScheme.cpp:276
1968+#: ../src/plugin/konsole/ColorScheme.cpp:291
1969+msgid "Un-named Color Scheme"
1970+msgstr "Esquema de color sense nom"
1971+
1972+#: ../src/plugin/konsole/ColorScheme.cpp:426
1973+msgid "Accessible Color Scheme"
1974+msgstr "Esquema de color accessible"
1975+
1976+#: ../src/plugin/konsole/Filter.cpp:518
1977+msgid "Open Link"
1978+msgstr ""
1979+
1980+#: ../src/plugin/konsole/Filter.cpp:519
1981+msgid "Copy Link Address"
1982+msgstr ""
1983+
1984+#: ../src/plugin/konsole/Filter.cpp:523
1985+msgid "Send Email To..."
1986+msgstr ""
1987+
1988+#: ../src/plugin/konsole/Filter.cpp:524
1989+msgid "Copy Email Address"
1990+msgstr ""
1991+
1992+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
1993+msgid ""
1994+"No keyboard translator available. The information needed to convert key "
1995+"presses into characters to send to the terminal is missing."
1996+msgstr ""
1997
1998=== added file 'po/com.ubuntu.terminal.pot'
1999--- po/com.ubuntu.terminal.pot 1970-01-01 00:00:00 +0000
2000+++ po/com.ubuntu.terminal.pot 2014-12-09 09:20:47 +0000
2001@@ -0,0 +1,142 @@
2002+# SOME DESCRIPTIVE TITLE.
2003+# Copyright (C) YEAR Canonical Ltd.
2004+# This file is distributed under the same license as the PACKAGE package.
2005+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
2006+#
2007+#, fuzzy
2008+msgid ""
2009+msgstr ""
2010+"Project-Id-Version: \n"
2011+"Report-Msgid-Bugs-To: \n"
2012+"POT-Creation-Date: 2014-12-08 21:43+0000\n"
2013+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
2014+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2015+"Language-Team: LANGUAGE <LL@li.org>\n"
2016+"Language: \n"
2017+"MIME-Version: 1.0\n"
2018+"Content-Type: text/plain; charset=CHARSET\n"
2019+"Content-Transfer-Encoding: 8bit\n"
2020+
2021+#: ../src/app/qml/AuthenticationDialog.qml:25
2022+msgid "Authentication required"
2023+msgstr ""
2024+
2025+#: ../src/app/qml/AuthenticationDialog.qml:27
2026+msgid "Enter password:"
2027+msgstr ""
2028+
2029+#: ../src/app/qml/AuthenticationDialog.qml:40
2030+msgid "password"
2031+msgstr ""
2032+
2033+#: ../src/app/qml/AuthenticationDialog.qml:50
2034+msgid "Ok"
2035+msgstr ""
2036+
2037+#: ../src/app/qml/AuthenticationDialog.qml:62
2038+msgid "Cancel"
2039+msgstr ""
2040+
2041+#: ../src/app/qml/AuthenticationService.qml:55
2042+msgid "Authentication failed"
2043+msgstr ""
2044+
2045+#: ../src/app/qml/KeyboardBar.qml:43
2046+msgid "Scroll Keys"
2047+msgstr ""
2048+
2049+#: ../src/app/qml/KeyboardBar.qml:48
2050+msgid "Functions Keys"
2051+msgstr ""
2052+
2053+#: ../src/app/qml/KeyboardBar.qml:53
2054+msgid "Command Keys"
2055+msgstr ""
2056+
2057+#: ../src/app/qml/KeyboardBar.qml:58
2058+msgid "Control Keys"
2059+msgstr ""
2060+
2061+#: ../src/app/qml/SettingsPage.qml:27
2062+msgid "Settings"
2063+msgstr ""
2064+
2065+#: ../src/app/qml/SettingsPage.qml:36
2066+msgid "Font Size:"
2067+msgstr ""
2068+
2069+#: ../src/app/qml/SettingsPage.qml:58
2070+msgid "Color Scheme"
2071+msgstr ""
2072+
2073+#: ../src/app/qml/TabsPage.qml:8
2074+msgid "Tabs"
2075+msgstr ""
2076+
2077+#: ../src/app/qml/TabsPage.qml:14
2078+msgid "New tab"
2079+msgstr ""
2080+
2081+#: ../src/plugin/konsole/ColorScheme.cpp:276
2082+#: ../src/plugin/konsole/ColorScheme.cpp:291
2083+#: ../src/plugin/qmltermwidget/lib/ColorScheme.cpp:277
2084+#: ../src/plugin/qmltermwidget/lib/ColorScheme.cpp:292
2085+msgid "Un-named Color Scheme"
2086+msgstr ""
2087+
2088+#: ../src/plugin/konsole/ColorScheme.cpp:426
2089+#: ../src/plugin/qmltermwidget/lib/ColorScheme.cpp:427
2090+msgid "Accessible Color Scheme"
2091+msgstr ""
2092+
2093+#: ../src/plugin/konsole/Filter.cpp:518
2094+#: ../src/plugin/qmltermwidget/lib/Filter.cpp:533
2095+msgid "Open Link"
2096+msgstr ""
2097+
2098+#: ../src/plugin/konsole/Filter.cpp:519
2099+#: ../src/plugin/qmltermwidget/lib/Filter.cpp:534
2100+msgid "Copy Link Address"
2101+msgstr ""
2102+
2103+#: ../src/plugin/konsole/Filter.cpp:523
2104+#: ../src/plugin/qmltermwidget/lib/Filter.cpp:538
2105+msgid "Send Email To..."
2106+msgstr ""
2107+
2108+#: ../src/plugin/konsole/Filter.cpp:524
2109+#: ../src/plugin/qmltermwidget/lib/Filter.cpp:539
2110+msgid "Copy Email Address"
2111+msgstr ""
2112+
2113+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
2114+#: ../src/plugin/qmltermwidget/lib/Vt102Emulation.cpp:977
2115+msgid ""
2116+"No keyboard translator available. The information needed to convert key "
2117+"presses into characters to send to the terminal is missing."
2118+msgstr ""
2119+
2120+#: ../src/plugin/qmltermwidget/lib/SearchBar.cpp:39
2121+msgid "Match case"
2122+msgstr ""
2123+
2124+#: ../src/plugin/qmltermwidget/lib/SearchBar.cpp:45
2125+msgid "Regular expression"
2126+msgstr ""
2127+
2128+#: ../src/plugin/qmltermwidget/lib/SearchBar.cpp:49
2129+msgid "Higlight all matches"
2130+msgstr ""
2131+
2132+#: ../src/plugin/qmltermwidget/lib/qtermwidget.cpp:405
2133+msgid "Color Scheme Error"
2134+msgstr ""
2135+
2136+#: ../src/plugin/qmltermwidget/lib/qtermwidget.cpp:406
2137+#, qt-format
2138+msgid "Cannot load color scheme: %1"
2139+msgstr ""
2140+
2141+#: com.ubuntu.terminal.desktop.in.in.h:1
2142+msgid "Terminal"
2143+msgstr ""
2144
2145=== added file 'po/cs.po'
2146--- po/cs.po 1970-01-01 00:00:00 +0000
2147+++ po/cs.po 2014-12-09 09:20:47 +0000
2148@@ -0,0 +1,169 @@
2149+# Czech translation for ubuntu-terminal-app
2150+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
2151+# This file is distributed under the same license as the ubuntu-terminal-app package.
2152+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
2153+#
2154+msgid ""
2155+msgstr ""
2156+"Project-Id-Version: ubuntu-terminal-app\n"
2157+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2158+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
2159+"PO-Revision-Date: 2014-09-24 07:12+0000\n"
2160+"Last-Translator: Vojtěch Daněk <vdanek@outlook.com>\n"
2161+"Language-Team: Czech <cs@li.org>\n"
2162+"MIME-Version: 1.0\n"
2163+"Content-Type: text/plain; charset=UTF-8\n"
2164+"Content-Transfer-Encoding: 8bit\n"
2165+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
2166+"X-Generator: Launchpad (build 17196)\n"
2167+
2168+#: ../src/app/qml/AuthenticationDialog.qml:25
2169+msgid "Authentication required"
2170+msgstr ""
2171+
2172+#: ../src/app/qml/AuthenticationDialog.qml:27
2173+msgid "Enter password:"
2174+msgstr ""
2175+
2176+#: ../src/app/qml/AuthenticationDialog.qml:40
2177+msgid "password"
2178+msgstr ""
2179+
2180+#: ../src/app/qml/AuthenticationDialog.qml:50
2181+#: ../src/app/qml/NotifyDialog.qml:25
2182+msgid "Ok"
2183+msgstr ""
2184+
2185+#: ../src/app/qml/AuthenticationDialog.qml:61
2186+#: ../src/app/qml/ColorDialog.qml:149
2187+msgid "Cancel"
2188+msgstr "Zrušit"
2189+
2190+#: ../src/app/qml/AuthenticationService.qml:55
2191+msgid "Authentication failed"
2192+msgstr ""
2193+
2194+#: ../src/app/qml/ColorDialog.qml:25
2195+msgid "Pick a color"
2196+msgstr "Vyberte barvu"
2197+
2198+#: ../src/app/qml/ColorDialog.qml:129
2199+msgid "OK"
2200+msgstr "OK"
2201+
2202+#: ../src/app/qml/Configs.qml:69
2203+msgid "Color scheme"
2204+msgstr "Barevné schéma"
2205+
2206+#: ../src/app/qml/Configs.qml:85
2207+msgid "Font size"
2208+msgstr "Velikost písma"
2209+
2210+#: ../src/app/qml/Configs.qml:108
2211+msgid "Enable effects:"
2212+msgstr "Povolit efekty:"
2213+
2214+#: ../src/app/qml/Configs.qml:126
2215+msgid "Screen color"
2216+msgstr "Barva obrazovky"
2217+
2218+#: ../src/app/qml/Configs.qml:139
2219+msgid "Color intensity"
2220+msgstr "Intenzita barev"
2221+
2222+#: ../src/app/qml/Configs.qml:167
2223+msgid "Bloom"
2224+msgstr "Záře"
2225+
2226+#: ../src/app/qml/Configs.qml:195
2227+msgid "Curvature"
2228+msgstr "Zakřivení"
2229+
2230+#: ../src/app/qml/Configs.qml:223
2231+msgid "Noise"
2232+msgstr "Šum"
2233+
2234+#: ../src/app/qml/Configs.qml:251
2235+msgid "Jitter"
2236+msgstr "Chvění"
2237+
2238+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
2239+msgid "PG_UP"
2240+msgstr ""
2241+
2242+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
2243+msgid "TAB"
2244+msgstr ""
2245+
2246+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
2247+msgid "DEL"
2248+msgstr ""
2249+
2250+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
2251+msgid "HOME"
2252+msgstr ""
2253+
2254+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
2255+msgid "PG_DN"
2256+msgstr ""
2257+
2258+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
2259+msgid "END"
2260+msgstr ""
2261+
2262+#: ../src/app/qml/ubuntu-terminal-app.qml:32
2263+#: com.ubuntu.terminal.desktop.in.in.h:1
2264+msgid "Terminal"
2265+msgstr ""
2266+
2267+#: ../src/app/qml/ubuntu-terminal-app.qml:51
2268+#: ../src/app/qml/ubuntu-terminal-app.qml:88
2269+msgid "Settings"
2270+msgstr ""
2271+
2272+#: ../src/app/qml/ubuntu-terminal-app.qml:57
2273+msgid "Hide all key panels"
2274+msgstr ""
2275+
2276+#: ../src/app/qml/ubuntu-terminal-app.qml:64
2277+msgid "Control keys"
2278+msgstr ""
2279+
2280+#: ../src/app/qml/ubuntu-terminal-app.qml:71
2281+msgid "Function keys"
2282+msgstr ""
2283+
2284+#: ../src/app/qml/ubuntu-terminal-app.qml:78
2285+msgid "Arrow keys"
2286+msgstr ""
2287+
2288+#: ../src/plugin/konsole/ColorScheme.cpp:276
2289+#: ../src/plugin/konsole/ColorScheme.cpp:291
2290+msgid "Un-named Color Scheme"
2291+msgstr ""
2292+
2293+#: ../src/plugin/konsole/ColorScheme.cpp:426
2294+msgid "Accessible Color Scheme"
2295+msgstr ""
2296+
2297+#: ../src/plugin/konsole/Filter.cpp:518
2298+msgid "Open Link"
2299+msgstr ""
2300+
2301+#: ../src/plugin/konsole/Filter.cpp:519
2302+msgid "Copy Link Address"
2303+msgstr ""
2304+
2305+#: ../src/plugin/konsole/Filter.cpp:523
2306+msgid "Send Email To..."
2307+msgstr ""
2308+
2309+#: ../src/plugin/konsole/Filter.cpp:524
2310+msgid "Copy Email Address"
2311+msgstr ""
2312+
2313+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
2314+msgid ""
2315+"No keyboard translator available. The information needed to convert key "
2316+"presses into characters to send to the terminal is missing."
2317+msgstr ""
2318
2319=== added file 'po/cy.po'
2320--- po/cy.po 1970-01-01 00:00:00 +0000
2321+++ po/cy.po 2014-12-09 09:20:47 +0000
2322@@ -0,0 +1,169 @@
2323+# Welsh translation for ubuntu-terminal-app
2324+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
2325+# This file is distributed under the same license as the ubuntu-terminal-app package.
2326+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
2327+#
2328+msgid ""
2329+msgstr ""
2330+"Project-Id-Version: ubuntu-terminal-app\n"
2331+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2332+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
2333+"PO-Revision-Date: 2014-08-04 10:16+0000\n"
2334+"Last-Translator: Owen Llywelyn <owen.llywelyn@gmail.com>\n"
2335+"Language-Team: Welsh <cy@li.org>\n"
2336+"MIME-Version: 1.0\n"
2337+"Content-Type: text/plain; charset=UTF-8\n"
2338+"Content-Transfer-Encoding: 8bit\n"
2339+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
2340+"X-Generator: Launchpad (build 17196)\n"
2341+
2342+#: ../src/app/qml/AuthenticationDialog.qml:25
2343+msgid "Authentication required"
2344+msgstr ""
2345+
2346+#: ../src/app/qml/AuthenticationDialog.qml:27
2347+msgid "Enter password:"
2348+msgstr ""
2349+
2350+#: ../src/app/qml/AuthenticationDialog.qml:40
2351+msgid "password"
2352+msgstr ""
2353+
2354+#: ../src/app/qml/AuthenticationDialog.qml:50
2355+#: ../src/app/qml/NotifyDialog.qml:25
2356+msgid "Ok"
2357+msgstr ""
2358+
2359+#: ../src/app/qml/AuthenticationDialog.qml:61
2360+#: ../src/app/qml/ColorDialog.qml:149
2361+msgid "Cancel"
2362+msgstr ""
2363+
2364+#: ../src/app/qml/AuthenticationService.qml:55
2365+msgid "Authentication failed"
2366+msgstr ""
2367+
2368+#: ../src/app/qml/ColorDialog.qml:25
2369+msgid "Pick a color"
2370+msgstr ""
2371+
2372+#: ../src/app/qml/ColorDialog.qml:129
2373+msgid "OK"
2374+msgstr ""
2375+
2376+#: ../src/app/qml/Configs.qml:69
2377+msgid "Color scheme"
2378+msgstr "Cynllun lliw"
2379+
2380+#: ../src/app/qml/Configs.qml:85
2381+msgid "Font size"
2382+msgstr "Maint ffont"
2383+
2384+#: ../src/app/qml/Configs.qml:108
2385+msgid "Enable effects:"
2386+msgstr ""
2387+
2388+#: ../src/app/qml/Configs.qml:126
2389+msgid "Screen color"
2390+msgstr ""
2391+
2392+#: ../src/app/qml/Configs.qml:139
2393+msgid "Color intensity"
2394+msgstr ""
2395+
2396+#: ../src/app/qml/Configs.qml:167
2397+msgid "Bloom"
2398+msgstr ""
2399+
2400+#: ../src/app/qml/Configs.qml:195
2401+msgid "Curvature"
2402+msgstr ""
2403+
2404+#: ../src/app/qml/Configs.qml:223
2405+msgid "Noise"
2406+msgstr ""
2407+
2408+#: ../src/app/qml/Configs.qml:251
2409+msgid "Jitter"
2410+msgstr ""
2411+
2412+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
2413+msgid "PG_UP"
2414+msgstr ""
2415+
2416+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
2417+msgid "TAB"
2418+msgstr ""
2419+
2420+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
2421+msgid "DEL"
2422+msgstr ""
2423+
2424+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
2425+msgid "HOME"
2426+msgstr ""
2427+
2428+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
2429+msgid "PG_DN"
2430+msgstr ""
2431+
2432+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
2433+msgid "END"
2434+msgstr ""
2435+
2436+#: ../src/app/qml/ubuntu-terminal-app.qml:32
2437+#: com.ubuntu.terminal.desktop.in.in.h:1
2438+msgid "Terminal"
2439+msgstr ""
2440+
2441+#: ../src/app/qml/ubuntu-terminal-app.qml:51
2442+#: ../src/app/qml/ubuntu-terminal-app.qml:88
2443+msgid "Settings"
2444+msgstr ""
2445+
2446+#: ../src/app/qml/ubuntu-terminal-app.qml:57
2447+msgid "Hide all key panels"
2448+msgstr ""
2449+
2450+#: ../src/app/qml/ubuntu-terminal-app.qml:64
2451+msgid "Control keys"
2452+msgstr ""
2453+
2454+#: ../src/app/qml/ubuntu-terminal-app.qml:71
2455+msgid "Function keys"
2456+msgstr ""
2457+
2458+#: ../src/app/qml/ubuntu-terminal-app.qml:78
2459+msgid "Arrow keys"
2460+msgstr ""
2461+
2462+#: ../src/plugin/konsole/ColorScheme.cpp:276
2463+#: ../src/plugin/konsole/ColorScheme.cpp:291
2464+msgid "Un-named Color Scheme"
2465+msgstr ""
2466+
2467+#: ../src/plugin/konsole/ColorScheme.cpp:426
2468+msgid "Accessible Color Scheme"
2469+msgstr ""
2470+
2471+#: ../src/plugin/konsole/Filter.cpp:518
2472+msgid "Open Link"
2473+msgstr ""
2474+
2475+#: ../src/plugin/konsole/Filter.cpp:519
2476+msgid "Copy Link Address"
2477+msgstr ""
2478+
2479+#: ../src/plugin/konsole/Filter.cpp:523
2480+msgid "Send Email To..."
2481+msgstr ""
2482+
2483+#: ../src/plugin/konsole/Filter.cpp:524
2484+msgid "Copy Email Address"
2485+msgstr ""
2486+
2487+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
2488+msgid ""
2489+"No keyboard translator available. The information needed to convert key "
2490+"presses into characters to send to the terminal is missing."
2491+msgstr ""
2492
2493=== added file 'po/de.po'
2494--- po/de.po 1970-01-01 00:00:00 +0000
2495+++ po/de.po 2014-12-09 09:20:47 +0000
2496@@ -0,0 +1,171 @@
2497+# German translation for ubuntu-terminal-app
2498+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
2499+# This file is distributed under the same license as the ubuntu-terminal-app package.
2500+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
2501+#
2502+msgid ""
2503+msgstr ""
2504+"Project-Id-Version: ubuntu-terminal-app\n"
2505+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2506+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
2507+"PO-Revision-Date: 2014-10-04 15:50+0000\n"
2508+"Last-Translator: Phillip Sz <Unknown>\n"
2509+"Language-Team: German <de@li.org>\n"
2510+"MIME-Version: 1.0\n"
2511+"Content-Type: text/plain; charset=UTF-8\n"
2512+"Content-Transfer-Encoding: 8bit\n"
2513+"X-Launchpad-Export-Date: 2014-10-05 06:34+0000\n"
2514+"X-Generator: Launchpad (build 17196)\n"
2515+
2516+#: ../src/app/qml/AuthenticationDialog.qml:25
2517+msgid "Authentication required"
2518+msgstr "Legitimierung erforderlich"
2519+
2520+#: ../src/app/qml/AuthenticationDialog.qml:27
2521+msgid "Enter password:"
2522+msgstr "Passwort eingeben:"
2523+
2524+#: ../src/app/qml/AuthenticationDialog.qml:40
2525+msgid "password"
2526+msgstr "Passwort"
2527+
2528+#: ../src/app/qml/AuthenticationDialog.qml:50
2529+#: ../src/app/qml/NotifyDialog.qml:25
2530+msgid "Ok"
2531+msgstr "Ok"
2532+
2533+#: ../src/app/qml/AuthenticationDialog.qml:61
2534+#: ../src/app/qml/ColorDialog.qml:149
2535+msgid "Cancel"
2536+msgstr "Abbrechen"
2537+
2538+#: ../src/app/qml/AuthenticationService.qml:55
2539+msgid "Authentication failed"
2540+msgstr "Legitimierung fehlgeschlagen"
2541+
2542+#: ../src/app/qml/ColorDialog.qml:25
2543+msgid "Pick a color"
2544+msgstr "Wählen Sie eine Farbe"
2545+
2546+#: ../src/app/qml/ColorDialog.qml:129
2547+msgid "OK"
2548+msgstr "OK"
2549+
2550+#: ../src/app/qml/Configs.qml:69
2551+msgid "Color scheme"
2552+msgstr "Farbschema"
2553+
2554+#: ../src/app/qml/Configs.qml:85
2555+msgid "Font size"
2556+msgstr "Schriftgröße"
2557+
2558+#: ../src/app/qml/Configs.qml:108
2559+msgid "Enable effects:"
2560+msgstr "Effekte aktivieren:"
2561+
2562+#: ../src/app/qml/Configs.qml:126
2563+msgid "Screen color"
2564+msgstr "Bildschirmfarbe"
2565+
2566+#: ../src/app/qml/Configs.qml:139
2567+msgid "Color intensity"
2568+msgstr "Farbintensität"
2569+
2570+#: ../src/app/qml/Configs.qml:167
2571+msgid "Bloom"
2572+msgstr "Überblendeffekt"
2573+
2574+#: ../src/app/qml/Configs.qml:195
2575+msgid "Curvature"
2576+msgstr "Krümmung"
2577+
2578+#: ../src/app/qml/Configs.qml:223
2579+msgid "Noise"
2580+msgstr "Rauschen"
2581+
2582+#: ../src/app/qml/Configs.qml:251
2583+msgid "Jitter"
2584+msgstr "Flimmern"
2585+
2586+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
2587+msgid "PG_UP"
2588+msgstr "Bild_auf"
2589+
2590+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
2591+msgid "TAB"
2592+msgstr "Tab"
2593+
2594+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
2595+msgid "DEL"
2596+msgstr "Entf"
2597+
2598+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
2599+msgid "HOME"
2600+msgstr "Pos1"
2601+
2602+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
2603+msgid "PG_DN"
2604+msgstr "Bild_ab"
2605+
2606+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
2607+msgid "END"
2608+msgstr "Ende"
2609+
2610+#: ../src/app/qml/ubuntu-terminal-app.qml:32
2611+#: com.ubuntu.terminal.desktop.in.in.h:1
2612+msgid "Terminal"
2613+msgstr "Befehlsfenster"
2614+
2615+#: ../src/app/qml/ubuntu-terminal-app.qml:51
2616+#: ../src/app/qml/ubuntu-terminal-app.qml:88
2617+msgid "Settings"
2618+msgstr "Einstellungen"
2619+
2620+#: ../src/app/qml/ubuntu-terminal-app.qml:57
2621+msgid "Hide all key panels"
2622+msgstr "Alle Tastaturbereiche ausblenden"
2623+
2624+#: ../src/app/qml/ubuntu-terminal-app.qml:64
2625+msgid "Control keys"
2626+msgstr "Kontrolltasten"
2627+
2628+#: ../src/app/qml/ubuntu-terminal-app.qml:71
2629+msgid "Function keys"
2630+msgstr "Funktionstasten"
2631+
2632+#: ../src/app/qml/ubuntu-terminal-app.qml:78
2633+msgid "Arrow keys"
2634+msgstr "Pfeiltasten"
2635+
2636+#: ../src/plugin/konsole/ColorScheme.cpp:276
2637+#: ../src/plugin/konsole/ColorScheme.cpp:291
2638+msgid "Un-named Color Scheme"
2639+msgstr "Unbenanntes Farbschema"
2640+
2641+#: ../src/plugin/konsole/ColorScheme.cpp:426
2642+msgid "Accessible Color Scheme"
2643+msgstr "Farbschema für Sehbehinderung"
2644+
2645+#: ../src/plugin/konsole/Filter.cpp:518
2646+msgid "Open Link"
2647+msgstr "Verweis aufrufen"
2648+
2649+#: ../src/plugin/konsole/Filter.cpp:519
2650+msgid "Copy Link Address"
2651+msgstr "Linkadresse kopieren"
2652+
2653+#: ../src/plugin/konsole/Filter.cpp:523
2654+msgid "Send Email To..."
2655+msgstr "E-Mail senden an …"
2656+
2657+#: ../src/plugin/konsole/Filter.cpp:524
2658+msgid "Copy Email Address"
2659+msgstr "E-Mail-Adresse kopieren"
2660+
2661+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
2662+msgid ""
2663+"No keyboard translator available. The information needed to convert key "
2664+"presses into characters to send to the terminal is missing."
2665+msgstr ""
2666+"Keinen Tastatur-Übersetzer verfügbar. Die Informationen um die Zeichen der "
2667+"gedrückten Tasten in das Terminal zu senden fehlen."
2668
2669=== added file 'po/en_GB.po'
2670--- po/en_GB.po 1970-01-01 00:00:00 +0000
2671+++ po/en_GB.po 2014-12-09 09:20:47 +0000
2672@@ -0,0 +1,171 @@
2673+# English (United Kingdom) translation for ubuntu-terminal-app
2674+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
2675+# This file is distributed under the same license as the ubuntu-terminal-app package.
2676+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
2677+#
2678+msgid ""
2679+msgstr ""
2680+"Project-Id-Version: ubuntu-terminal-app\n"
2681+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2682+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
2683+"PO-Revision-Date: 2014-10-07 10:47+0000\n"
2684+"Last-Translator: Andi Chandler <Unknown>\n"
2685+"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
2686+"MIME-Version: 1.0\n"
2687+"Content-Type: text/plain; charset=UTF-8\n"
2688+"Content-Transfer-Encoding: 8bit\n"
2689+"X-Launchpad-Export-Date: 2014-10-08 07:35+0000\n"
2690+"X-Generator: Launchpad (build 17196)\n"
2691+
2692+#: ../src/app/qml/AuthenticationDialog.qml:25
2693+msgid "Authentication required"
2694+msgstr "Authentication required"
2695+
2696+#: ../src/app/qml/AuthenticationDialog.qml:27
2697+msgid "Enter password:"
2698+msgstr "Enter password:"
2699+
2700+#: ../src/app/qml/AuthenticationDialog.qml:40
2701+msgid "password"
2702+msgstr "password"
2703+
2704+#: ../src/app/qml/AuthenticationDialog.qml:50
2705+#: ../src/app/qml/NotifyDialog.qml:25
2706+msgid "Ok"
2707+msgstr "Ok"
2708+
2709+#: ../src/app/qml/AuthenticationDialog.qml:61
2710+#: ../src/app/qml/ColorDialog.qml:149
2711+msgid "Cancel"
2712+msgstr "Cancel"
2713+
2714+#: ../src/app/qml/AuthenticationService.qml:55
2715+msgid "Authentication failed"
2716+msgstr "Authentication failed"
2717+
2718+#: ../src/app/qml/ColorDialog.qml:25
2719+msgid "Pick a color"
2720+msgstr "Pick a colour"
2721+
2722+#: ../src/app/qml/ColorDialog.qml:129
2723+msgid "OK"
2724+msgstr "OK"
2725+
2726+#: ../src/app/qml/Configs.qml:69
2727+msgid "Color scheme"
2728+msgstr "Colour scheme"
2729+
2730+#: ../src/app/qml/Configs.qml:85
2731+msgid "Font size"
2732+msgstr "Font size"
2733+
2734+#: ../src/app/qml/Configs.qml:108
2735+msgid "Enable effects:"
2736+msgstr "Enable effects:"
2737+
2738+#: ../src/app/qml/Configs.qml:126
2739+msgid "Screen color"
2740+msgstr "Screen colour"
2741+
2742+#: ../src/app/qml/Configs.qml:139
2743+msgid "Color intensity"
2744+msgstr "Colour intensity"
2745+
2746+#: ../src/app/qml/Configs.qml:167
2747+msgid "Bloom"
2748+msgstr "Bloom"
2749+
2750+#: ../src/app/qml/Configs.qml:195
2751+msgid "Curvature"
2752+msgstr "Curvature"
2753+
2754+#: ../src/app/qml/Configs.qml:223
2755+msgid "Noise"
2756+msgstr "Noise"
2757+
2758+#: ../src/app/qml/Configs.qml:251
2759+msgid "Jitter"
2760+msgstr "Jitter"
2761+
2762+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
2763+msgid "PG_UP"
2764+msgstr "PG_UP"
2765+
2766+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
2767+msgid "TAB"
2768+msgstr "TAB"
2769+
2770+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
2771+msgid "DEL"
2772+msgstr "DEL"
2773+
2774+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
2775+msgid "HOME"
2776+msgstr "HOME"
2777+
2778+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
2779+msgid "PG_DN"
2780+msgstr "PG_DN"
2781+
2782+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
2783+msgid "END"
2784+msgstr "END"
2785+
2786+#: ../src/app/qml/ubuntu-terminal-app.qml:32
2787+#: com.ubuntu.terminal.desktop.in.in.h:1
2788+msgid "Terminal"
2789+msgstr "Terminal"
2790+
2791+#: ../src/app/qml/ubuntu-terminal-app.qml:51
2792+#: ../src/app/qml/ubuntu-terminal-app.qml:88
2793+msgid "Settings"
2794+msgstr "Settings"
2795+
2796+#: ../src/app/qml/ubuntu-terminal-app.qml:57
2797+msgid "Hide all key panels"
2798+msgstr "Hide all key panels"
2799+
2800+#: ../src/app/qml/ubuntu-terminal-app.qml:64
2801+msgid "Control keys"
2802+msgstr "Control keys"
2803+
2804+#: ../src/app/qml/ubuntu-terminal-app.qml:71
2805+msgid "Function keys"
2806+msgstr "Function keys"
2807+
2808+#: ../src/app/qml/ubuntu-terminal-app.qml:78
2809+msgid "Arrow keys"
2810+msgstr "Arrow keys"
2811+
2812+#: ../src/plugin/konsole/ColorScheme.cpp:276
2813+#: ../src/plugin/konsole/ColorScheme.cpp:291
2814+msgid "Un-named Color Scheme"
2815+msgstr "Un-named Colour Scheme"
2816+
2817+#: ../src/plugin/konsole/ColorScheme.cpp:426
2818+msgid "Accessible Color Scheme"
2819+msgstr "Accessible Colour Scheme"
2820+
2821+#: ../src/plugin/konsole/Filter.cpp:518
2822+msgid "Open Link"
2823+msgstr "Open Link"
2824+
2825+#: ../src/plugin/konsole/Filter.cpp:519
2826+msgid "Copy Link Address"
2827+msgstr "Copy Link Address"
2828+
2829+#: ../src/plugin/konsole/Filter.cpp:523
2830+msgid "Send Email To..."
2831+msgstr "Send Email To..."
2832+
2833+#: ../src/plugin/konsole/Filter.cpp:524
2834+msgid "Copy Email Address"
2835+msgstr "Copy Email Address"
2836+
2837+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
2838+msgid ""
2839+"No keyboard translator available. The information needed to convert key "
2840+"presses into characters to send to the terminal is missing."
2841+msgstr ""
2842+"No keyboard translator available. The information needed to convert key "
2843+"presses into characters to send to the terminal is missing."
2844
2845=== added file 'po/es.po'
2846--- po/es.po 1970-01-01 00:00:00 +0000
2847+++ po/es.po 2014-12-09 09:20:47 +0000
2848@@ -0,0 +1,172 @@
2849+# Spanish translation for ubuntu-terminal-app
2850+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
2851+# This file is distributed under the same license as the ubuntu-terminal-app package.
2852+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
2853+#
2854+msgid ""
2855+msgstr ""
2856+"Project-Id-Version: ubuntu-terminal-app\n"
2857+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2858+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
2859+"PO-Revision-Date: 2014-09-14 20:46+0000\n"
2860+"Last-Translator: Adolfo Jayme <fitoschido@gmail.com>\n"
2861+"Language-Team: Spanish <es@li.org>\n"
2862+"MIME-Version: 1.0\n"
2863+"Content-Type: text/plain; charset=UTF-8\n"
2864+"Content-Transfer-Encoding: 8bit\n"
2865+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
2866+"X-Generator: Launchpad (build 17196)\n"
2867+
2868+#: ../src/app/qml/AuthenticationDialog.qml:25
2869+msgid "Authentication required"
2870+msgstr ""
2871+
2872+#: ../src/app/qml/AuthenticationDialog.qml:27
2873+msgid "Enter password:"
2874+msgstr ""
2875+
2876+#: ../src/app/qml/AuthenticationDialog.qml:40
2877+msgid "password"
2878+msgstr ""
2879+
2880+#: ../src/app/qml/AuthenticationDialog.qml:50
2881+#: ../src/app/qml/NotifyDialog.qml:25
2882+msgid "Ok"
2883+msgstr ""
2884+
2885+#: ../src/app/qml/AuthenticationDialog.qml:61
2886+#: ../src/app/qml/ColorDialog.qml:149
2887+msgid "Cancel"
2888+msgstr "Cancelar"
2889+
2890+#: ../src/app/qml/AuthenticationService.qml:55
2891+msgid "Authentication failed"
2892+msgstr ""
2893+
2894+#: ../src/app/qml/ColorDialog.qml:25
2895+msgid "Pick a color"
2896+msgstr "Seleccione un color"
2897+
2898+#: ../src/app/qml/ColorDialog.qml:129
2899+msgid "OK"
2900+msgstr "Aceptar"
2901+
2902+#: ../src/app/qml/Configs.qml:69
2903+msgid "Color scheme"
2904+msgstr "Esquema de colores"
2905+
2906+#: ../src/app/qml/Configs.qml:85
2907+msgid "Font size"
2908+msgstr "Tamaño de la letra"
2909+
2910+#: ../src/app/qml/Configs.qml:108
2911+msgid "Enable effects:"
2912+msgstr "Activar efectos:"
2913+
2914+#: ../src/app/qml/Configs.qml:126
2915+msgid "Screen color"
2916+msgstr "Color de pantalla"
2917+
2918+#: ../src/app/qml/Configs.qml:139
2919+msgid "Color intensity"
2920+msgstr "Intensidad de color"
2921+
2922+#: ../src/app/qml/Configs.qml:167
2923+msgid "Bloom"
2924+msgstr "Resplandor"
2925+
2926+#: ../src/app/qml/Configs.qml:195
2927+msgid "Curvature"
2928+msgstr "Curvatura"
2929+
2930+#: ../src/app/qml/Configs.qml:223
2931+msgid "Noise"
2932+msgstr "Ruido"
2933+
2934+#: ../src/app/qml/Configs.qml:251
2935+msgid "Jitter"
2936+msgstr "Vibración"
2937+
2938+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
2939+msgid "PG_UP"
2940+msgstr "RE_PÁG"
2941+
2942+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
2943+msgid "TAB"
2944+msgstr "TAB"
2945+
2946+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
2947+msgid "DEL"
2948+msgstr "SUPR"
2949+
2950+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
2951+msgid "HOME"
2952+msgstr "INICIO"
2953+
2954+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
2955+msgid "PG_DN"
2956+msgstr "AV_PÁG"
2957+
2958+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
2959+msgid "END"
2960+msgstr "FIN"
2961+
2962+#: ../src/app/qml/ubuntu-terminal-app.qml:32
2963+#: com.ubuntu.terminal.desktop.in.in.h:1
2964+msgid "Terminal"
2965+msgstr "Terminal"
2966+
2967+#: ../src/app/qml/ubuntu-terminal-app.qml:51
2968+#: ../src/app/qml/ubuntu-terminal-app.qml:88
2969+msgid "Settings"
2970+msgstr "Configuración"
2971+
2972+#: ../src/app/qml/ubuntu-terminal-app.qml:57
2973+msgid "Hide all key panels"
2974+msgstr "Ocultar todos los paneles de teclas"
2975+
2976+#: ../src/app/qml/ubuntu-terminal-app.qml:64
2977+msgid "Control keys"
2978+msgstr "Teclas de control"
2979+
2980+#: ../src/app/qml/ubuntu-terminal-app.qml:71
2981+msgid "Function keys"
2982+msgstr "Teclas de función"
2983+
2984+#: ../src/app/qml/ubuntu-terminal-app.qml:78
2985+msgid "Arrow keys"
2986+msgstr "Teclas de flechas"
2987+
2988+#: ../src/plugin/konsole/ColorScheme.cpp:276
2989+#: ../src/plugin/konsole/ColorScheme.cpp:291
2990+msgid "Un-named Color Scheme"
2991+msgstr "Esquema de color sin nombre"
2992+
2993+#: ../src/plugin/konsole/ColorScheme.cpp:426
2994+msgid "Accessible Color Scheme"
2995+msgstr "Esquema de color accesible"
2996+
2997+#: ../src/plugin/konsole/Filter.cpp:518
2998+msgid "Open Link"
2999+msgstr "Abrir enlace"
3000+
3001+#: ../src/plugin/konsole/Filter.cpp:519
3002+msgid "Copy Link Address"
3003+msgstr "Copiar dirección de enlace"
3004+
3005+#: ../src/plugin/konsole/Filter.cpp:523
3006+msgid "Send Email To..."
3007+msgstr "Enviar correo a..."
3008+
3009+#: ../src/plugin/konsole/Filter.cpp:524
3010+msgid "Copy Email Address"
3011+msgstr "Copiar dirección de correo"
3012+
3013+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3014+msgid ""
3015+"No keyboard translator available. The information needed to convert key "
3016+"presses into characters to send to the terminal is missing."
3017+msgstr ""
3018+"No hay conversores de teclado disponibles. Falta la información necesaria "
3019+"para convertir las pulsaciones de teclas en caracteres que enviar a la "
3020+"consola."
3021
3022=== added file 'po/eu.po'
3023--- po/eu.po 1970-01-01 00:00:00 +0000
3024+++ po/eu.po 2014-12-09 09:20:47 +0000
3025@@ -0,0 +1,169 @@
3026+# Basque translation for ubuntu-terminal-app
3027+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3028+# This file is distributed under the same license as the ubuntu-terminal-app package.
3029+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3030+#
3031+msgid ""
3032+msgstr ""
3033+"Project-Id-Version: ubuntu-terminal-app\n"
3034+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3035+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3036+"PO-Revision-Date: 2014-04-22 20:49+0000\n"
3037+"Last-Translator: Ibai Oihanguren Sala <Unknown>\n"
3038+"Language-Team: Basque <eu@li.org>\n"
3039+"MIME-Version: 1.0\n"
3040+"Content-Type: text/plain; charset=UTF-8\n"
3041+"Content-Transfer-Encoding: 8bit\n"
3042+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3043+"X-Generator: Launchpad (build 17196)\n"
3044+
3045+#: ../src/app/qml/AuthenticationDialog.qml:25
3046+msgid "Authentication required"
3047+msgstr ""
3048+
3049+#: ../src/app/qml/AuthenticationDialog.qml:27
3050+msgid "Enter password:"
3051+msgstr ""
3052+
3053+#: ../src/app/qml/AuthenticationDialog.qml:40
3054+msgid "password"
3055+msgstr ""
3056+
3057+#: ../src/app/qml/AuthenticationDialog.qml:50
3058+#: ../src/app/qml/NotifyDialog.qml:25
3059+msgid "Ok"
3060+msgstr ""
3061+
3062+#: ../src/app/qml/AuthenticationDialog.qml:61
3063+#: ../src/app/qml/ColorDialog.qml:149
3064+msgid "Cancel"
3065+msgstr ""
3066+
3067+#: ../src/app/qml/AuthenticationService.qml:55
3068+msgid "Authentication failed"
3069+msgstr ""
3070+
3071+#: ../src/app/qml/ColorDialog.qml:25
3072+msgid "Pick a color"
3073+msgstr ""
3074+
3075+#: ../src/app/qml/ColorDialog.qml:129
3076+msgid "OK"
3077+msgstr ""
3078+
3079+#: ../src/app/qml/Configs.qml:69
3080+msgid "Color scheme"
3081+msgstr "Kolore-eskema"
3082+
3083+#: ../src/app/qml/Configs.qml:85
3084+msgid "Font size"
3085+msgstr "Letra-tamaina"
3086+
3087+#: ../src/app/qml/Configs.qml:108
3088+msgid "Enable effects:"
3089+msgstr ""
3090+
3091+#: ../src/app/qml/Configs.qml:126
3092+msgid "Screen color"
3093+msgstr ""
3094+
3095+#: ../src/app/qml/Configs.qml:139
3096+msgid "Color intensity"
3097+msgstr ""
3098+
3099+#: ../src/app/qml/Configs.qml:167
3100+msgid "Bloom"
3101+msgstr ""
3102+
3103+#: ../src/app/qml/Configs.qml:195
3104+msgid "Curvature"
3105+msgstr ""
3106+
3107+#: ../src/app/qml/Configs.qml:223
3108+msgid "Noise"
3109+msgstr ""
3110+
3111+#: ../src/app/qml/Configs.qml:251
3112+msgid "Jitter"
3113+msgstr ""
3114+
3115+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3116+msgid "PG_UP"
3117+msgstr ""
3118+
3119+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3120+msgid "TAB"
3121+msgstr ""
3122+
3123+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
3124+msgid "DEL"
3125+msgstr ""
3126+
3127+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
3128+msgid "HOME"
3129+msgstr ""
3130+
3131+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
3132+msgid "PG_DN"
3133+msgstr ""
3134+
3135+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
3136+msgid "END"
3137+msgstr ""
3138+
3139+#: ../src/app/qml/ubuntu-terminal-app.qml:32
3140+#: com.ubuntu.terminal.desktop.in.in.h:1
3141+msgid "Terminal"
3142+msgstr "Terminala"
3143+
3144+#: ../src/app/qml/ubuntu-terminal-app.qml:51
3145+#: ../src/app/qml/ubuntu-terminal-app.qml:88
3146+msgid "Settings"
3147+msgstr "Ezarpenak"
3148+
3149+#: ../src/app/qml/ubuntu-terminal-app.qml:57
3150+msgid "Hide all key panels"
3151+msgstr ""
3152+
3153+#: ../src/app/qml/ubuntu-terminal-app.qml:64
3154+msgid "Control keys"
3155+msgstr "Kontrol-teklak"
3156+
3157+#: ../src/app/qml/ubuntu-terminal-app.qml:71
3158+msgid "Function keys"
3159+msgstr "Funtzio-teklak"
3160+
3161+#: ../src/app/qml/ubuntu-terminal-app.qml:78
3162+msgid "Arrow keys"
3163+msgstr ""
3164+
3165+#: ../src/plugin/konsole/ColorScheme.cpp:276
3166+#: ../src/plugin/konsole/ColorScheme.cpp:291
3167+msgid "Un-named Color Scheme"
3168+msgstr ""
3169+
3170+#: ../src/plugin/konsole/ColorScheme.cpp:426
3171+msgid "Accessible Color Scheme"
3172+msgstr ""
3173+
3174+#: ../src/plugin/konsole/Filter.cpp:518
3175+msgid "Open Link"
3176+msgstr ""
3177+
3178+#: ../src/plugin/konsole/Filter.cpp:519
3179+msgid "Copy Link Address"
3180+msgstr ""
3181+
3182+#: ../src/plugin/konsole/Filter.cpp:523
3183+msgid "Send Email To..."
3184+msgstr ""
3185+
3186+#: ../src/plugin/konsole/Filter.cpp:524
3187+msgid "Copy Email Address"
3188+msgstr ""
3189+
3190+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3191+msgid ""
3192+"No keyboard translator available. The information needed to convert key "
3193+"presses into characters to send to the terminal is missing."
3194+msgstr ""
3195
3196=== added file 'po/fa.po'
3197--- po/fa.po 1970-01-01 00:00:00 +0000
3198+++ po/fa.po 2014-12-09 09:20:47 +0000
3199@@ -0,0 +1,169 @@
3200+# Persian translation for ubuntu-terminal-app
3201+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3202+# This file is distributed under the same license as the ubuntu-terminal-app package.
3203+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3204+#
3205+msgid ""
3206+msgstr ""
3207+"Project-Id-Version: ubuntu-terminal-app\n"
3208+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3209+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3210+"PO-Revision-Date: 2014-08-03 20:59+0000\n"
3211+"Last-Translator: Danial Behzadi <dani.behzi@gmail.com>\n"
3212+"Language-Team: Persian <fa@li.org>\n"
3213+"MIME-Version: 1.0\n"
3214+"Content-Type: text/plain; charset=UTF-8\n"
3215+"Content-Transfer-Encoding: 8bit\n"
3216+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3217+"X-Generator: Launchpad (build 17196)\n"
3218+
3219+#: ../src/app/qml/AuthenticationDialog.qml:25
3220+msgid "Authentication required"
3221+msgstr ""
3222+
3223+#: ../src/app/qml/AuthenticationDialog.qml:27
3224+msgid "Enter password:"
3225+msgstr ""
3226+
3227+#: ../src/app/qml/AuthenticationDialog.qml:40
3228+msgid "password"
3229+msgstr ""
3230+
3231+#: ../src/app/qml/AuthenticationDialog.qml:50
3232+#: ../src/app/qml/NotifyDialog.qml:25
3233+msgid "Ok"
3234+msgstr ""
3235+
3236+#: ../src/app/qml/AuthenticationDialog.qml:61
3237+#: ../src/app/qml/ColorDialog.qml:149
3238+msgid "Cancel"
3239+msgstr ""
3240+
3241+#: ../src/app/qml/AuthenticationService.qml:55
3242+msgid "Authentication failed"
3243+msgstr ""
3244+
3245+#: ../src/app/qml/ColorDialog.qml:25
3246+msgid "Pick a color"
3247+msgstr ""
3248+
3249+#: ../src/app/qml/ColorDialog.qml:129
3250+msgid "OK"
3251+msgstr ""
3252+
3253+#: ../src/app/qml/Configs.qml:69
3254+msgid "Color scheme"
3255+msgstr "طیف رنگ"
3256+
3257+#: ../src/app/qml/Configs.qml:85
3258+msgid "Font size"
3259+msgstr "اندازه‌ی قلم"
3260+
3261+#: ../src/app/qml/Configs.qml:108
3262+msgid "Enable effects:"
3263+msgstr ""
3264+
3265+#: ../src/app/qml/Configs.qml:126
3266+msgid "Screen color"
3267+msgstr ""
3268+
3269+#: ../src/app/qml/Configs.qml:139
3270+msgid "Color intensity"
3271+msgstr ""
3272+
3273+#: ../src/app/qml/Configs.qml:167
3274+msgid "Bloom"
3275+msgstr ""
3276+
3277+#: ../src/app/qml/Configs.qml:195
3278+msgid "Curvature"
3279+msgstr ""
3280+
3281+#: ../src/app/qml/Configs.qml:223
3282+msgid "Noise"
3283+msgstr ""
3284+
3285+#: ../src/app/qml/Configs.qml:251
3286+msgid "Jitter"
3287+msgstr ""
3288+
3289+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3290+msgid "PG_UP"
3291+msgstr ""
3292+
3293+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3294+msgid "TAB"
3295+msgstr ""
3296+
3297+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
3298+msgid "DEL"
3299+msgstr ""
3300+
3301+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
3302+msgid "HOME"
3303+msgstr ""
3304+
3305+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
3306+msgid "PG_DN"
3307+msgstr ""
3308+
3309+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
3310+msgid "END"
3311+msgstr ""
3312+
3313+#: ../src/app/qml/ubuntu-terminal-app.qml:32
3314+#: com.ubuntu.terminal.desktop.in.in.h:1
3315+msgid "Terminal"
3316+msgstr "پایانه"
3317+
3318+#: ../src/app/qml/ubuntu-terminal-app.qml:51
3319+#: ../src/app/qml/ubuntu-terminal-app.qml:88
3320+msgid "Settings"
3321+msgstr "تنظیمات"
3322+
3323+#: ../src/app/qml/ubuntu-terminal-app.qml:57
3324+msgid "Hide all key panels"
3325+msgstr ""
3326+
3327+#: ../src/app/qml/ubuntu-terminal-app.qml:64
3328+msgid "Control keys"
3329+msgstr "کلیدهای کنترلی"
3330+
3331+#: ../src/app/qml/ubuntu-terminal-app.qml:71
3332+msgid "Function keys"
3333+msgstr "کلیدهای تابعی"
3334+
3335+#: ../src/app/qml/ubuntu-terminal-app.qml:78
3336+msgid "Arrow keys"
3337+msgstr "کلیدهای جهتی"
3338+
3339+#: ../src/plugin/konsole/ColorScheme.cpp:276
3340+#: ../src/plugin/konsole/ColorScheme.cpp:291
3341+msgid "Un-named Color Scheme"
3342+msgstr ""
3343+
3344+#: ../src/plugin/konsole/ColorScheme.cpp:426
3345+msgid "Accessible Color Scheme"
3346+msgstr ""
3347+
3348+#: ../src/plugin/konsole/Filter.cpp:518
3349+msgid "Open Link"
3350+msgstr ""
3351+
3352+#: ../src/plugin/konsole/Filter.cpp:519
3353+msgid "Copy Link Address"
3354+msgstr ""
3355+
3356+#: ../src/plugin/konsole/Filter.cpp:523
3357+msgid "Send Email To..."
3358+msgstr ""
3359+
3360+#: ../src/plugin/konsole/Filter.cpp:524
3361+msgid "Copy Email Address"
3362+msgstr ""
3363+
3364+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3365+msgid ""
3366+"No keyboard translator available. The information needed to convert key "
3367+"presses into characters to send to the terminal is missing."
3368+msgstr ""
3369
3370=== added file 'po/fi.po'
3371--- po/fi.po 1970-01-01 00:00:00 +0000
3372+++ po/fi.po 2014-12-09 09:20:47 +0000
3373@@ -0,0 +1,171 @@
3374+# Finnish translation for ubuntu-terminal-app
3375+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3376+# This file is distributed under the same license as the ubuntu-terminal-app package.
3377+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3378+#
3379+msgid ""
3380+msgstr ""
3381+"Project-Id-Version: ubuntu-terminal-app\n"
3382+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3383+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3384+"PO-Revision-Date: 2014-09-01 09:49+0000\n"
3385+"Last-Translator: Jiri Grönroos <Unknown>\n"
3386+"Language-Team: Finnish <fi@li.org>\n"
3387+"MIME-Version: 1.0\n"
3388+"Content-Type: text/plain; charset=UTF-8\n"
3389+"Content-Transfer-Encoding: 8bit\n"
3390+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3391+"X-Generator: Launchpad (build 17196)\n"
3392+
3393+#: ../src/app/qml/AuthenticationDialog.qml:25
3394+msgid "Authentication required"
3395+msgstr ""
3396+
3397+#: ../src/app/qml/AuthenticationDialog.qml:27
3398+msgid "Enter password:"
3399+msgstr ""
3400+
3401+#: ../src/app/qml/AuthenticationDialog.qml:40
3402+msgid "password"
3403+msgstr ""
3404+
3405+#: ../src/app/qml/AuthenticationDialog.qml:50
3406+#: ../src/app/qml/NotifyDialog.qml:25
3407+msgid "Ok"
3408+msgstr ""
3409+
3410+#: ../src/app/qml/AuthenticationDialog.qml:61
3411+#: ../src/app/qml/ColorDialog.qml:149
3412+msgid "Cancel"
3413+msgstr "Peru"
3414+
3415+#: ../src/app/qml/AuthenticationService.qml:55
3416+msgid "Authentication failed"
3417+msgstr ""
3418+
3419+#: ../src/app/qml/ColorDialog.qml:25
3420+msgid "Pick a color"
3421+msgstr "Valitse väri"
3422+
3423+#: ../src/app/qml/ColorDialog.qml:129
3424+msgid "OK"
3425+msgstr "OK"
3426+
3427+#: ../src/app/qml/Configs.qml:69
3428+msgid "Color scheme"
3429+msgstr "Värimalli"
3430+
3431+#: ../src/app/qml/Configs.qml:85
3432+msgid "Font size"
3433+msgstr "Fonttikoko"
3434+
3435+#: ../src/app/qml/Configs.qml:108
3436+msgid "Enable effects:"
3437+msgstr "Käytä tehosteita:"
3438+
3439+#: ../src/app/qml/Configs.qml:126
3440+msgid "Screen color"
3441+msgstr ""
3442+
3443+#: ../src/app/qml/Configs.qml:139
3444+msgid "Color intensity"
3445+msgstr ""
3446+
3447+#: ../src/app/qml/Configs.qml:167
3448+msgid "Bloom"
3449+msgstr ""
3450+
3451+#: ../src/app/qml/Configs.qml:195
3452+msgid "Curvature"
3453+msgstr ""
3454+
3455+#: ../src/app/qml/Configs.qml:223
3456+msgid "Noise"
3457+msgstr ""
3458+
3459+#: ../src/app/qml/Configs.qml:251
3460+msgid "Jitter"
3461+msgstr ""
3462+
3463+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3464+msgid "PG_UP"
3465+msgstr ""
3466+
3467+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3468+msgid "TAB"
3469+msgstr ""
3470+
3471+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
3472+msgid "DEL"
3473+msgstr ""
3474+
3475+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
3476+msgid "HOME"
3477+msgstr ""
3478+
3479+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
3480+msgid "PG_DN"
3481+msgstr ""
3482+
3483+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
3484+msgid "END"
3485+msgstr ""
3486+
3487+#: ../src/app/qml/ubuntu-terminal-app.qml:32
3488+#: com.ubuntu.terminal.desktop.in.in.h:1
3489+msgid "Terminal"
3490+msgstr "Pääte"
3491+
3492+#: ../src/app/qml/ubuntu-terminal-app.qml:51
3493+#: ../src/app/qml/ubuntu-terminal-app.qml:88
3494+msgid "Settings"
3495+msgstr "Asetukset"
3496+
3497+#: ../src/app/qml/ubuntu-terminal-app.qml:57
3498+msgid "Hide all key panels"
3499+msgstr "Piilota kaikki näppäinpaneelit"
3500+
3501+#: ../src/app/qml/ubuntu-terminal-app.qml:64
3502+msgid "Control keys"
3503+msgstr "Control-näppäimet"
3504+
3505+#: ../src/app/qml/ubuntu-terminal-app.qml:71
3506+msgid "Function keys"
3507+msgstr "Toimintonäppäimet"
3508+
3509+#: ../src/app/qml/ubuntu-terminal-app.qml:78
3510+msgid "Arrow keys"
3511+msgstr "Nuolinäppäimet"
3512+
3513+#: ../src/plugin/konsole/ColorScheme.cpp:276
3514+#: ../src/plugin/konsole/ColorScheme.cpp:291
3515+msgid "Un-named Color Scheme"
3516+msgstr "Nimetön väriteema"
3517+
3518+#: ../src/plugin/konsole/ColorScheme.cpp:426
3519+msgid "Accessible Color Scheme"
3520+msgstr "Esteetön väriteema"
3521+
3522+#: ../src/plugin/konsole/Filter.cpp:518
3523+msgid "Open Link"
3524+msgstr "Avaa linkki"
3525+
3526+#: ../src/plugin/konsole/Filter.cpp:519
3527+msgid "Copy Link Address"
3528+msgstr "Kopioi linkin osoite"
3529+
3530+#: ../src/plugin/konsole/Filter.cpp:523
3531+msgid "Send Email To..."
3532+msgstr "Lähetä sähköposti osoitteeseen..."
3533+
3534+#: ../src/plugin/konsole/Filter.cpp:524
3535+msgid "Copy Email Address"
3536+msgstr "Kopioi sähköpostiosoite"
3537+
3538+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3539+msgid ""
3540+"No keyboard translator available. The information needed to convert key "
3541+"presses into characters to send to the terminal is missing."
3542+msgstr ""
3543+"Näppäimistökääntäjää ei ole saatavilla. Näppäinpainalluksia ei voida muuttaa "
3544+"merkeiksi ja lähettää päätteelle."
3545
3546=== added file 'po/fr.po'
3547--- po/fr.po 1970-01-01 00:00:00 +0000
3548+++ po/fr.po 2014-12-09 09:20:47 +0000
3549@@ -0,0 +1,172 @@
3550+# French translation for ubuntu-terminal-app
3551+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3552+# This file is distributed under the same license as the ubuntu-terminal-app package.
3553+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3554+#
3555+msgid ""
3556+msgstr ""
3557+"Project-Id-Version: ubuntu-terminal-app\n"
3558+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3559+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3560+"PO-Revision-Date: 2014-09-14 15:52+0000\n"
3561+"Last-Translator: Anne <anneonyme017@gmail.com>\n"
3562+"Language-Team: French <fr@li.org>\n"
3563+"MIME-Version: 1.0\n"
3564+"Content-Type: text/plain; charset=UTF-8\n"
3565+"Content-Transfer-Encoding: 8bit\n"
3566+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3567+"X-Generator: Launchpad (build 17196)\n"
3568+
3569+#: ../src/app/qml/AuthenticationDialog.qml:25
3570+msgid "Authentication required"
3571+msgstr ""
3572+
3573+#: ../src/app/qml/AuthenticationDialog.qml:27
3574+msgid "Enter password:"
3575+msgstr ""
3576+
3577+#: ../src/app/qml/AuthenticationDialog.qml:40
3578+msgid "password"
3579+msgstr ""
3580+
3581+#: ../src/app/qml/AuthenticationDialog.qml:50
3582+#: ../src/app/qml/NotifyDialog.qml:25
3583+msgid "Ok"
3584+msgstr ""
3585+
3586+#: ../src/app/qml/AuthenticationDialog.qml:61
3587+#: ../src/app/qml/ColorDialog.qml:149
3588+msgid "Cancel"
3589+msgstr "Annuler"
3590+
3591+#: ../src/app/qml/AuthenticationService.qml:55
3592+msgid "Authentication failed"
3593+msgstr ""
3594+
3595+#: ../src/app/qml/ColorDialog.qml:25
3596+msgid "Pick a color"
3597+msgstr "Choisissez une couleur"
3598+
3599+#: ../src/app/qml/ColorDialog.qml:129
3600+msgid "OK"
3601+msgstr "Valider"
3602+
3603+#: ../src/app/qml/Configs.qml:69
3604+msgid "Color scheme"
3605+msgstr "Schéma de couleurs"
3606+
3607+#: ../src/app/qml/Configs.qml:85
3608+msgid "Font size"
3609+msgstr "Taille des caractères"
3610+
3611+#: ../src/app/qml/Configs.qml:108
3612+msgid "Enable effects:"
3613+msgstr "Activer les effets :"
3614+
3615+#: ../src/app/qml/Configs.qml:126
3616+msgid "Screen color"
3617+msgstr "Couleur d'écran"
3618+
3619+#: ../src/app/qml/Configs.qml:139
3620+msgid "Color intensity"
3621+msgstr "Intensité de la couleur"
3622+
3623+#: ../src/app/qml/Configs.qml:167
3624+msgid "Bloom"
3625+msgstr "Ébouissement"
3626+
3627+#: ../src/app/qml/Configs.qml:195
3628+msgid "Curvature"
3629+msgstr "Courbure"
3630+
3631+#: ../src/app/qml/Configs.qml:223
3632+msgid "Noise"
3633+msgstr "Bruit"
3634+
3635+#: ../src/app/qml/Configs.qml:251
3636+msgid "Jitter"
3637+msgstr ""
3638+
3639+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3640+msgid "PG_UP"
3641+msgstr "PG_UP"
3642+
3643+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3644+msgid "TAB"
3645+msgstr "TAB"
3646+
3647+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
3648+msgid "DEL"
3649+msgstr ""
3650+
3651+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
3652+msgid "HOME"
3653+msgstr "ACCUEIL"
3654+
3655+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
3656+msgid "PG_DN"
3657+msgstr "PG_DN"
3658+
3659+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
3660+msgid "END"
3661+msgstr "FIN"
3662+
3663+#: ../src/app/qml/ubuntu-terminal-app.qml:32
3664+#: com.ubuntu.terminal.desktop.in.in.h:1
3665+msgid "Terminal"
3666+msgstr "Terminal"
3667+
3668+#: ../src/app/qml/ubuntu-terminal-app.qml:51
3669+#: ../src/app/qml/ubuntu-terminal-app.qml:88
3670+msgid "Settings"
3671+msgstr "Préférences"
3672+
3673+#: ../src/app/qml/ubuntu-terminal-app.qml:57
3674+msgid "Hide all key panels"
3675+msgstr ""
3676+
3677+#: ../src/app/qml/ubuntu-terminal-app.qml:64
3678+msgid "Control keys"
3679+msgstr "Touches de contrôle"
3680+
3681+#: ../src/app/qml/ubuntu-terminal-app.qml:71
3682+msgid "Function keys"
3683+msgstr "Touches de fonction"
3684+
3685+#: ../src/app/qml/ubuntu-terminal-app.qml:78
3686+msgid "Arrow keys"
3687+msgstr "Touches directionnelles"
3688+
3689+#: ../src/plugin/konsole/ColorScheme.cpp:276
3690+#: ../src/plugin/konsole/ColorScheme.cpp:291
3691+msgid "Un-named Color Scheme"
3692+msgstr "Thème de couleur sans nom"
3693+
3694+#: ../src/plugin/konsole/ColorScheme.cpp:426
3695+msgid "Accessible Color Scheme"
3696+msgstr "Thème de couleur accessible"
3697+
3698+#: ../src/plugin/konsole/Filter.cpp:518
3699+msgid "Open Link"
3700+msgstr "Ouvrir le lien"
3701+
3702+#: ../src/plugin/konsole/Filter.cpp:519
3703+msgid "Copy Link Address"
3704+msgstr "Copier l'adresse du lien"
3705+
3706+#: ../src/plugin/konsole/Filter.cpp:523
3707+msgid "Send Email To..."
3708+msgstr "Envoyer un courriel à..."
3709+
3710+#: ../src/plugin/konsole/Filter.cpp:524
3711+msgid "Copy Email Address"
3712+msgstr "Copier l'adresse de courriel"
3713+
3714+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3715+msgid ""
3716+"No keyboard translator available. The information needed to convert key "
3717+"presses into characters to send to the terminal is missing."
3718+msgstr ""
3719+"Aucun traducteur de clavier disponible. Les informations nécessaires pour "
3720+"convertir les appuis sur les touches en caractères à envoyer au terminal "
3721+"sont manquantes."
3722
3723=== added file 'po/gd.po'
3724--- po/gd.po 1970-01-01 00:00:00 +0000
3725+++ po/gd.po 2014-12-09 09:20:47 +0000
3726@@ -0,0 +1,170 @@
3727+# Gaelic; Scottish translation for ubuntu-terminal-app
3728+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3729+# This file is distributed under the same license as the ubuntu-terminal-app package.
3730+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3731+# GunChleoc <fios@foramnagaidhlig.net>, 2014.
3732+msgid ""
3733+msgstr ""
3734+"Project-Id-Version: ubuntu-terminal-app\n"
3735+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3736+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3737+"PO-Revision-Date: 2014-07-16 14:48+0000\n"
3738+"Last-Translator: GunChleoc <Unknown>\n"
3739+"Language-Team: Fòram na Gàidhlig http://www.foramnagaidhlig.net\n"
3740+"MIME-Version: 1.0\n"
3741+"Content-Type: text/plain; charset=UTF-8\n"
3742+"Content-Transfer-Encoding: 8bit\n"
3743+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3744+"X-Generator: Launchpad (build 17196)\n"
3745+"Language: gd\n"
3746+
3747+#: ../src/app/qml/AuthenticationDialog.qml:25
3748+msgid "Authentication required"
3749+msgstr ""
3750+
3751+#: ../src/app/qml/AuthenticationDialog.qml:27
3752+msgid "Enter password:"
3753+msgstr ""
3754+
3755+#: ../src/app/qml/AuthenticationDialog.qml:40
3756+msgid "password"
3757+msgstr ""
3758+
3759+#: ../src/app/qml/AuthenticationDialog.qml:50
3760+#: ../src/app/qml/NotifyDialog.qml:25
3761+msgid "Ok"
3762+msgstr ""
3763+
3764+#: ../src/app/qml/AuthenticationDialog.qml:61
3765+#: ../src/app/qml/ColorDialog.qml:149
3766+msgid "Cancel"
3767+msgstr ""
3768+
3769+#: ../src/app/qml/AuthenticationService.qml:55
3770+msgid "Authentication failed"
3771+msgstr ""
3772+
3773+#: ../src/app/qml/ColorDialog.qml:25
3774+msgid "Pick a color"
3775+msgstr ""
3776+
3777+#: ../src/app/qml/ColorDialog.qml:129
3778+msgid "OK"
3779+msgstr ""
3780+
3781+#: ../src/app/qml/Configs.qml:69
3782+msgid "Color scheme"
3783+msgstr "Sgeama nan dathan"
3784+
3785+#: ../src/app/qml/Configs.qml:85
3786+msgid "Font size"
3787+msgstr "Meud a' chrutha-chlò"
3788+
3789+#: ../src/app/qml/Configs.qml:108
3790+msgid "Enable effects:"
3791+msgstr ""
3792+
3793+#: ../src/app/qml/Configs.qml:126
3794+msgid "Screen color"
3795+msgstr ""
3796+
3797+#: ../src/app/qml/Configs.qml:139
3798+msgid "Color intensity"
3799+msgstr ""
3800+
3801+#: ../src/app/qml/Configs.qml:167
3802+msgid "Bloom"
3803+msgstr ""
3804+
3805+#: ../src/app/qml/Configs.qml:195
3806+msgid "Curvature"
3807+msgstr ""
3808+
3809+#: ../src/app/qml/Configs.qml:223
3810+msgid "Noise"
3811+msgstr ""
3812+
3813+#: ../src/app/qml/Configs.qml:251
3814+msgid "Jitter"
3815+msgstr ""
3816+
3817+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3818+msgid "PG_UP"
3819+msgstr ""
3820+
3821+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3822+msgid "TAB"
3823+msgstr ""
3824+
3825+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
3826+msgid "DEL"
3827+msgstr ""
3828+
3829+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
3830+msgid "HOME"
3831+msgstr ""
3832+
3833+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
3834+msgid "PG_DN"
3835+msgstr ""
3836+
3837+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
3838+msgid "END"
3839+msgstr ""
3840+
3841+#: ../src/app/qml/ubuntu-terminal-app.qml:32
3842+#: com.ubuntu.terminal.desktop.in.in.h:1
3843+msgid "Terminal"
3844+msgstr "Terminal"
3845+
3846+#: ../src/app/qml/ubuntu-terminal-app.qml:51
3847+#: ../src/app/qml/ubuntu-terminal-app.qml:88
3848+msgid "Settings"
3849+msgstr "Roghainnean"
3850+
3851+#: ../src/app/qml/ubuntu-terminal-app.qml:57
3852+msgid "Hide all key panels"
3853+msgstr ""
3854+
3855+#: ../src/app/qml/ubuntu-terminal-app.qml:64
3856+msgid "Control keys"
3857+msgstr "Iuchraichean-smachd"
3858+
3859+#: ../src/app/qml/ubuntu-terminal-app.qml:71
3860+msgid "Function keys"
3861+msgstr "Putanan nam foincseanan"
3862+
3863+#: ../src/app/qml/ubuntu-terminal-app.qml:78
3864+msgid "Arrow keys"
3865+msgstr ""
3866+
3867+#: ../src/plugin/konsole/ColorScheme.cpp:276
3868+#: ../src/plugin/konsole/ColorScheme.cpp:291
3869+msgid "Un-named Color Scheme"
3870+msgstr ""
3871+
3872+#: ../src/plugin/konsole/ColorScheme.cpp:426
3873+msgid "Accessible Color Scheme"
3874+msgstr ""
3875+
3876+#: ../src/plugin/konsole/Filter.cpp:518
3877+msgid "Open Link"
3878+msgstr ""
3879+
3880+#: ../src/plugin/konsole/Filter.cpp:519
3881+msgid "Copy Link Address"
3882+msgstr ""
3883+
3884+#: ../src/plugin/konsole/Filter.cpp:523
3885+msgid "Send Email To..."
3886+msgstr ""
3887+
3888+#: ../src/plugin/konsole/Filter.cpp:524
3889+msgid "Copy Email Address"
3890+msgstr ""
3891+
3892+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
3893+msgid ""
3894+"No keyboard translator available. The information needed to convert key "
3895+"presses into characters to send to the terminal is missing."
3896+msgstr ""
3897
3898=== added file 'po/gl.po'
3899--- po/gl.po 1970-01-01 00:00:00 +0000
3900+++ po/gl.po 2014-12-09 09:20:47 +0000
3901@@ -0,0 +1,171 @@
3902+# Galician translation for ubuntu-terminal-app
3903+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3904+# This file is distributed under the same license as the ubuntu-terminal-app package.
3905+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
3906+#
3907+msgid ""
3908+msgstr ""
3909+"Project-Id-Version: ubuntu-terminal-app\n"
3910+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3911+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
3912+"PO-Revision-Date: 2014-10-01 22:26+0000\n"
3913+"Last-Translator: Marcos Lans <Unknown>\n"
3914+"Language-Team: Galician <gl@li.org>\n"
3915+"MIME-Version: 1.0\n"
3916+"Content-Type: text/plain; charset=UTF-8\n"
3917+"Content-Transfer-Encoding: 8bit\n"
3918+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
3919+"X-Generator: Launchpad (build 17196)\n"
3920+
3921+#: ../src/app/qml/AuthenticationDialog.qml:25
3922+msgid "Authentication required"
3923+msgstr "Requírese autenticación"
3924+
3925+#: ../src/app/qml/AuthenticationDialog.qml:27
3926+msgid "Enter password:"
3927+msgstr "Introduza o contrasinal:"
3928+
3929+#: ../src/app/qml/AuthenticationDialog.qml:40
3930+msgid "password"
3931+msgstr "contrasinal"
3932+
3933+#: ../src/app/qml/AuthenticationDialog.qml:50
3934+#: ../src/app/qml/NotifyDialog.qml:25
3935+msgid "Ok"
3936+msgstr "Aceptar"
3937+
3938+#: ../src/app/qml/AuthenticationDialog.qml:61
3939+#: ../src/app/qml/ColorDialog.qml:149
3940+msgid "Cancel"
3941+msgstr "Cancelar"
3942+
3943+#: ../src/app/qml/AuthenticationService.qml:55
3944+msgid "Authentication failed"
3945+msgstr "Fallou a autenticación"
3946+
3947+#: ../src/app/qml/ColorDialog.qml:25
3948+msgid "Pick a color"
3949+msgstr "Escoller unha cor"
3950+
3951+#: ../src/app/qml/ColorDialog.qml:129
3952+msgid "OK"
3953+msgstr "Aceptar"
3954+
3955+#: ../src/app/qml/Configs.qml:69
3956+msgid "Color scheme"
3957+msgstr "Esquema de cores"
3958+
3959+#: ../src/app/qml/Configs.qml:85
3960+msgid "Font size"
3961+msgstr "Tamaño de letra"
3962+
3963+#: ../src/app/qml/Configs.qml:108
3964+msgid "Enable effects:"
3965+msgstr "Activar os efectos:"
3966+
3967+#: ../src/app/qml/Configs.qml:126
3968+msgid "Screen color"
3969+msgstr "Cor da pantalla"
3970+
3971+#: ../src/app/qml/Configs.qml:139
3972+msgid "Color intensity"
3973+msgstr "Intensidade da cor"
3974+
3975+#: ../src/app/qml/Configs.qml:167
3976+msgid "Bloom"
3977+msgstr "Bloom"
3978+
3979+#: ../src/app/qml/Configs.qml:195
3980+msgid "Curvature"
3981+msgstr "Curvatura"
3982+
3983+#: ../src/app/qml/Configs.qml:223
3984+msgid "Noise"
3985+msgstr "Ruído"
3986+
3987+#: ../src/app/qml/Configs.qml:251
3988+msgid "Jitter"
3989+msgstr "Jitter"
3990+
3991+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
3992+msgid "PG_UP"
3993+msgstr "AV_PÁX"
3994+
3995+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
3996+msgid "TAB"
3997+msgstr "TAB"
3998+
3999+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4000+msgid "DEL"
4001+msgstr "SUPR"
4002+
4003+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4004+msgid "HOME"
4005+msgstr "INICIO"
4006+
4007+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4008+msgid "PG_DN"
4009+msgstr "RET_PÁX"
4010+
4011+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4012+msgid "END"
4013+msgstr "FIN"
4014+
4015+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4016+#: com.ubuntu.terminal.desktop.in.in.h:1
4017+msgid "Terminal"
4018+msgstr "Terminal"
4019+
4020+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4021+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4022+msgid "Settings"
4023+msgstr "Axustes"
4024+
4025+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4026+msgid "Hide all key panels"
4027+msgstr "Ocultar paneis de teclas"
4028+
4029+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4030+msgid "Control keys"
4031+msgstr "Teclas de control"
4032+
4033+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4034+msgid "Function keys"
4035+msgstr "Teclas de función"
4036+
4037+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4038+msgid "Arrow keys"
4039+msgstr "Frechas (teclas)"
4040+
4041+#: ../src/plugin/konsole/ColorScheme.cpp:276
4042+#: ../src/plugin/konsole/ColorScheme.cpp:291
4043+msgid "Un-named Color Scheme"
4044+msgstr "Esquema de cores sen nome"
4045+
4046+#: ../src/plugin/konsole/ColorScheme.cpp:426
4047+msgid "Accessible Color Scheme"
4048+msgstr "Esquema accesíbel de cores"
4049+
4050+#: ../src/plugin/konsole/Filter.cpp:518
4051+msgid "Open Link"
4052+msgstr "Abrir a ligazón"
4053+
4054+#: ../src/plugin/konsole/Filter.cpp:519
4055+msgid "Copy Link Address"
4056+msgstr "Copiar o enderezo da ligazón"
4057+
4058+#: ../src/plugin/konsole/Filter.cpp:523
4059+msgid "Send Email To..."
4060+msgstr "Enviar un correo a..."
4061+
4062+#: ../src/plugin/konsole/Filter.cpp:524
4063+msgid "Copy Email Address"
4064+msgstr "Copiar o enderezo do correo"
4065+
4066+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4067+msgid ""
4068+"No keyboard translator available. The information needed to convert key "
4069+"presses into characters to send to the terminal is missing."
4070+msgstr ""
4071+"Non hai ningún tradutor de teclado dispoñíbel. Falta a información precisa "
4072+"para converter as pulsacións en caracteres."
4073
4074=== added file 'po/he.po'
4075--- po/he.po 1970-01-01 00:00:00 +0000
4076+++ po/he.po 2014-12-09 09:20:47 +0000
4077@@ -0,0 +1,169 @@
4078+# Hebrew translation for ubuntu-terminal-app
4079+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4080+# This file is distributed under the same license as the ubuntu-terminal-app package.
4081+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4082+#
4083+msgid ""
4084+msgstr ""
4085+"Project-Id-Version: ubuntu-terminal-app\n"
4086+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4087+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4088+"PO-Revision-Date: 2014-05-18 22:56+0000\n"
4089+"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
4090+"Language-Team: Hebrew <he@li.org>\n"
4091+"MIME-Version: 1.0\n"
4092+"Content-Type: text/plain; charset=UTF-8\n"
4093+"Content-Transfer-Encoding: 8bit\n"
4094+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
4095+"X-Generator: Launchpad (build 17196)\n"
4096+
4097+#: ../src/app/qml/AuthenticationDialog.qml:25
4098+msgid "Authentication required"
4099+msgstr ""
4100+
4101+#: ../src/app/qml/AuthenticationDialog.qml:27
4102+msgid "Enter password:"
4103+msgstr ""
4104+
4105+#: ../src/app/qml/AuthenticationDialog.qml:40
4106+msgid "password"
4107+msgstr ""
4108+
4109+#: ../src/app/qml/AuthenticationDialog.qml:50
4110+#: ../src/app/qml/NotifyDialog.qml:25
4111+msgid "Ok"
4112+msgstr ""
4113+
4114+#: ../src/app/qml/AuthenticationDialog.qml:61
4115+#: ../src/app/qml/ColorDialog.qml:149
4116+msgid "Cancel"
4117+msgstr ""
4118+
4119+#: ../src/app/qml/AuthenticationService.qml:55
4120+msgid "Authentication failed"
4121+msgstr ""
4122+
4123+#: ../src/app/qml/ColorDialog.qml:25
4124+msgid "Pick a color"
4125+msgstr ""
4126+
4127+#: ../src/app/qml/ColorDialog.qml:129
4128+msgid "OK"
4129+msgstr ""
4130+
4131+#: ../src/app/qml/Configs.qml:69
4132+msgid "Color scheme"
4133+msgstr "ערכת צבעים"
4134+
4135+#: ../src/app/qml/Configs.qml:85
4136+msgid "Font size"
4137+msgstr "גודל הגופן"
4138+
4139+#: ../src/app/qml/Configs.qml:108
4140+msgid "Enable effects:"
4141+msgstr ""
4142+
4143+#: ../src/app/qml/Configs.qml:126
4144+msgid "Screen color"
4145+msgstr ""
4146+
4147+#: ../src/app/qml/Configs.qml:139
4148+msgid "Color intensity"
4149+msgstr ""
4150+
4151+#: ../src/app/qml/Configs.qml:167
4152+msgid "Bloom"
4153+msgstr ""
4154+
4155+#: ../src/app/qml/Configs.qml:195
4156+msgid "Curvature"
4157+msgstr ""
4158+
4159+#: ../src/app/qml/Configs.qml:223
4160+msgid "Noise"
4161+msgstr ""
4162+
4163+#: ../src/app/qml/Configs.qml:251
4164+msgid "Jitter"
4165+msgstr ""
4166+
4167+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
4168+msgid "PG_UP"
4169+msgstr ""
4170+
4171+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
4172+msgid "TAB"
4173+msgstr ""
4174+
4175+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4176+msgid "DEL"
4177+msgstr ""
4178+
4179+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4180+msgid "HOME"
4181+msgstr ""
4182+
4183+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4184+msgid "PG_DN"
4185+msgstr ""
4186+
4187+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4188+msgid "END"
4189+msgstr ""
4190+
4191+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4192+#: com.ubuntu.terminal.desktop.in.in.h:1
4193+msgid "Terminal"
4194+msgstr "מסוף"
4195+
4196+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4197+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4198+msgid "Settings"
4199+msgstr "הגדרות"
4200+
4201+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4202+msgid "Hide all key panels"
4203+msgstr ""
4204+
4205+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4206+msgid "Control keys"
4207+msgstr "מקשי שליטה"
4208+
4209+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4210+msgid "Function keys"
4211+msgstr "מקשי פונקציות"
4212+
4213+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4214+msgid "Arrow keys"
4215+msgstr ""
4216+
4217+#: ../src/plugin/konsole/ColorScheme.cpp:276
4218+#: ../src/plugin/konsole/ColorScheme.cpp:291
4219+msgid "Un-named Color Scheme"
4220+msgstr ""
4221+
4222+#: ../src/plugin/konsole/ColorScheme.cpp:426
4223+msgid "Accessible Color Scheme"
4224+msgstr ""
4225+
4226+#: ../src/plugin/konsole/Filter.cpp:518
4227+msgid "Open Link"
4228+msgstr ""
4229+
4230+#: ../src/plugin/konsole/Filter.cpp:519
4231+msgid "Copy Link Address"
4232+msgstr ""
4233+
4234+#: ../src/plugin/konsole/Filter.cpp:523
4235+msgid "Send Email To..."
4236+msgstr ""
4237+
4238+#: ../src/plugin/konsole/Filter.cpp:524
4239+msgid "Copy Email Address"
4240+msgstr ""
4241+
4242+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4243+msgid ""
4244+"No keyboard translator available. The information needed to convert key "
4245+"presses into characters to send to the terminal is missing."
4246+msgstr ""
4247
4248=== added file 'po/hu.po'
4249--- po/hu.po 1970-01-01 00:00:00 +0000
4250+++ po/hu.po 2014-12-09 09:20:47 +0000
4251@@ -0,0 +1,171 @@
4252+# Hungarian translation for ubuntu-terminal-app
4253+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4254+# This file is distributed under the same license as the ubuntu-terminal-app package.
4255+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4256+#
4257+msgid ""
4258+msgstr ""
4259+"Project-Id-Version: ubuntu-terminal-app\n"
4260+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4261+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4262+"PO-Revision-Date: 2014-10-05 08:38+0000\n"
4263+"Last-Translator: Richard Somlói <ricsipontaz@gmail.com>\n"
4264+"Language-Team: Hungarian <hu@li.org>\n"
4265+"MIME-Version: 1.0\n"
4266+"Content-Type: text/plain; charset=UTF-8\n"
4267+"Content-Transfer-Encoding: 8bit\n"
4268+"X-Launchpad-Export-Date: 2014-10-06 06:58+0000\n"
4269+"X-Generator: Launchpad (build 17196)\n"
4270+
4271+#: ../src/app/qml/AuthenticationDialog.qml:25
4272+msgid "Authentication required"
4273+msgstr "Hitelesítés szükséges"
4274+
4275+#: ../src/app/qml/AuthenticationDialog.qml:27
4276+msgid "Enter password:"
4277+msgstr "Jelszó megadása:"
4278+
4279+#: ../src/app/qml/AuthenticationDialog.qml:40
4280+msgid "password"
4281+msgstr "jelszó"
4282+
4283+#: ../src/app/qml/AuthenticationDialog.qml:50
4284+#: ../src/app/qml/NotifyDialog.qml:25
4285+msgid "Ok"
4286+msgstr "Ok"
4287+
4288+#: ../src/app/qml/AuthenticationDialog.qml:61
4289+#: ../src/app/qml/ColorDialog.qml:149
4290+msgid "Cancel"
4291+msgstr "Mégse"
4292+
4293+#: ../src/app/qml/AuthenticationService.qml:55
4294+msgid "Authentication failed"
4295+msgstr "Hitelesítés sikertelen"
4296+
4297+#: ../src/app/qml/ColorDialog.qml:25
4298+msgid "Pick a color"
4299+msgstr "Válasszon színt"
4300+
4301+#: ../src/app/qml/ColorDialog.qml:129
4302+msgid "OK"
4303+msgstr "Ok"
4304+
4305+#: ../src/app/qml/Configs.qml:69
4306+msgid "Color scheme"
4307+msgstr "Színséma"
4308+
4309+#: ../src/app/qml/Configs.qml:85
4310+msgid "Font size"
4311+msgstr "Betűméret"
4312+
4313+#: ../src/app/qml/Configs.qml:108
4314+msgid "Enable effects:"
4315+msgstr "Effektet engedélyezése:"
4316+
4317+#: ../src/app/qml/Configs.qml:126
4318+msgid "Screen color"
4319+msgstr "Kijelző színe"
4320+
4321+#: ../src/app/qml/Configs.qml:139
4322+msgid "Color intensity"
4323+msgstr "Színintenzitás"
4324+
4325+#: ../src/app/qml/Configs.qml:167
4326+msgid "Bloom"
4327+msgstr "Szöveg háttérvilágítása"
4328+
4329+#: ../src/app/qml/Configs.qml:195
4330+msgid "Curvature"
4331+msgstr "Görbület"
4332+
4333+#: ../src/app/qml/Configs.qml:223
4334+msgid "Noise"
4335+msgstr "Zaj"
4336+
4337+#: ../src/app/qml/Configs.qml:251
4338+msgid "Jitter"
4339+msgstr "Remegés"
4340+
4341+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
4342+msgid "PG_UP"
4343+msgstr "PG_UP"
4344+
4345+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
4346+msgid "TAB"
4347+msgstr "TAB"
4348+
4349+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4350+msgid "DEL"
4351+msgstr "DEL"
4352+
4353+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4354+msgid "HOME"
4355+msgstr "HOME"
4356+
4357+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4358+msgid "PG_DN"
4359+msgstr "PG_DN"
4360+
4361+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4362+msgid "END"
4363+msgstr "END"
4364+
4365+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4366+#: com.ubuntu.terminal.desktop.in.in.h:1
4367+msgid "Terminal"
4368+msgstr "Terminál"
4369+
4370+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4371+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4372+msgid "Settings"
4373+msgstr "Beállítások"
4374+
4375+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4376+msgid "Hide all key panels"
4377+msgstr "Billentyűpanelek elrejtése"
4378+
4379+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4380+msgid "Control keys"
4381+msgstr "Vezérlőbillentyűk"
4382+
4383+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4384+msgid "Function keys"
4385+msgstr "Funkcióbillentyűk"
4386+
4387+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4388+msgid "Arrow keys"
4389+msgstr "Nyílbillentyűk"
4390+
4391+#: ../src/plugin/konsole/ColorScheme.cpp:276
4392+#: ../src/plugin/konsole/ColorScheme.cpp:291
4393+msgid "Un-named Color Scheme"
4394+msgstr "Névtelen színséma"
4395+
4396+#: ../src/plugin/konsole/ColorScheme.cpp:426
4397+msgid "Accessible Color Scheme"
4398+msgstr "Színséma csökkent látóképességűeknek"
4399+
4400+#: ../src/plugin/konsole/Filter.cpp:518
4401+msgid "Open Link"
4402+msgstr "Hivatkozás megnyitása"
4403+
4404+#: ../src/plugin/konsole/Filter.cpp:519
4405+msgid "Copy Link Address"
4406+msgstr "Hivatkozás címének másolása"
4407+
4408+#: ../src/plugin/konsole/Filter.cpp:523
4409+msgid "Send Email To..."
4410+msgstr "E-mail küldése…"
4411+
4412+#: ../src/plugin/konsole/Filter.cpp:524
4413+msgid "Copy Email Address"
4414+msgstr "E-mail cím másolása"
4415+
4416+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4417+msgid ""
4418+"No keyboard translator available. The information needed to convert key "
4419+"presses into characters to send to the terminal is missing."
4420+msgstr ""
4421+"Nincs elérhető billentyűkonvertáló. Így nem lehet a leütött billentyűket "
4422+"továbbítani a terminálprogramnak."
4423
4424=== added file 'po/id.po'
4425--- po/id.po 1970-01-01 00:00:00 +0000
4426+++ po/id.po 2014-12-09 09:20:47 +0000
4427@@ -0,0 +1,172 @@
4428+# Indonesian translation for ubuntu-terminal-app
4429+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4430+# This file is distributed under the same license as the ubuntu-terminal-app package.
4431+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4432+#
4433+msgid ""
4434+msgstr ""
4435+"Project-Id-Version: ubuntu-terminal-app\n"
4436+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4437+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4438+"PO-Revision-Date: 2014-10-11 03:31+0000\n"
4439+"Last-Translator: Dirgita <Unknown>\n"
4440+"Language-Team: Indonesian <id@li.org>\n"
4441+"MIME-Version: 1.0\n"
4442+"Content-Type: text/plain; charset=UTF-8\n"
4443+"Content-Transfer-Encoding: 8bit\n"
4444+"X-Launchpad-Export-Date: 2014-10-12 06:52+0000\n"
4445+"X-Generator: Launchpad (build 17196)\n"
4446+
4447+#: ../src/app/qml/AuthenticationDialog.qml:25
4448+msgid "Authentication required"
4449+msgstr "Perlu otentikasi"
4450+
4451+#: ../src/app/qml/AuthenticationDialog.qml:27
4452+msgid "Enter password:"
4453+msgstr "Masukkan sandi:"
4454+
4455+#: ../src/app/qml/AuthenticationDialog.qml:40
4456+msgid "password"
4457+msgstr "sandi"
4458+
4459+#: ../src/app/qml/AuthenticationDialog.qml:50
4460+#: ../src/app/qml/NotifyDialog.qml:25
4461+msgid "Ok"
4462+msgstr "Oke"
4463+
4464+#: ../src/app/qml/AuthenticationDialog.qml:61
4465+#: ../src/app/qml/ColorDialog.qml:149
4466+msgid "Cancel"
4467+msgstr "Batal"
4468+
4469+#: ../src/app/qml/AuthenticationService.qml:55
4470+msgid "Authentication failed"
4471+msgstr "Otentikasi gagal"
4472+
4473+#: ../src/app/qml/ColorDialog.qml:25
4474+msgid "Pick a color"
4475+msgstr "Pilih warna"
4476+
4477+#: ../src/app/qml/ColorDialog.qml:129
4478+msgid "OK"
4479+msgstr "Oke"
4480+
4481+#: ../src/app/qml/Configs.qml:69
4482+msgid "Color scheme"
4483+msgstr "Skema warna"
4484+
4485+#: ../src/app/qml/Configs.qml:85
4486+msgid "Font size"
4487+msgstr "Ukuran fonta"
4488+
4489+#: ../src/app/qml/Configs.qml:108
4490+msgid "Enable effects:"
4491+msgstr "Aktifkan efek:"
4492+
4493+#: ../src/app/qml/Configs.qml:126
4494+msgid "Screen color"
4495+msgstr "Warna layar"
4496+
4497+#: ../src/app/qml/Configs.qml:139
4498+msgid "Color intensity"
4499+msgstr "Intensitas warna"
4500+
4501+#: ../src/app/qml/Configs.qml:167
4502+msgid "Bloom"
4503+msgstr ""
4504+
4505+#: ../src/app/qml/Configs.qml:195
4506+msgid "Curvature"
4507+msgstr ""
4508+
4509+#: ../src/app/qml/Configs.qml:223
4510+msgid "Noise"
4511+msgstr ""
4512+
4513+#: ../src/app/qml/Configs.qml:251
4514+msgid "Jitter"
4515+msgstr ""
4516+
4517+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
4518+msgid "PG_UP"
4519+msgstr "PG_UP"
4520+
4521+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
4522+msgid "TAB"
4523+msgstr "TAB"
4524+
4525+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4526+msgid "DEL"
4527+msgstr "DEL"
4528+
4529+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4530+msgid "HOME"
4531+msgstr "HOME"
4532+
4533+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4534+msgid "PG_DN"
4535+msgstr "PG_DN"
4536+
4537+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4538+msgid "END"
4539+msgstr "END"
4540+
4541+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4542+#: com.ubuntu.terminal.desktop.in.in.h:1
4543+msgid "Terminal"
4544+msgstr "Terminal"
4545+
4546+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4547+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4548+msgid "Settings"
4549+msgstr "Pengaturan"
4550+
4551+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4552+msgid "Hide all key panels"
4553+msgstr "Sembunyikan tombol"
4554+
4555+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4556+msgid "Control keys"
4557+msgstr "Tombol kendali"
4558+
4559+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4560+msgid "Function keys"
4561+msgstr "Tombol fungsi"
4562+
4563+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4564+msgid "Arrow keys"
4565+msgstr "Tombol panah"
4566+
4567+#: ../src/plugin/konsole/ColorScheme.cpp:276
4568+#: ../src/plugin/konsole/ColorScheme.cpp:291
4569+msgid "Un-named Color Scheme"
4570+msgstr "Skema Warna Anonim"
4571+
4572+#: ../src/plugin/konsole/ColorScheme.cpp:426
4573+msgid "Accessible Color Scheme"
4574+msgstr "Skema Warna Dapat Diakses"
4575+
4576+#: ../src/plugin/konsole/Filter.cpp:518
4577+msgid "Open Link"
4578+msgstr "Buka Tautan"
4579+
4580+#: ../src/plugin/konsole/Filter.cpp:519
4581+msgid "Copy Link Address"
4582+msgstr "Salin Alamat Tautan"
4583+
4584+#: ../src/plugin/konsole/Filter.cpp:523
4585+msgid "Send Email To..."
4586+msgstr "Kirim Surel ke..."
4587+
4588+#: ../src/plugin/konsole/Filter.cpp:524
4589+msgid "Copy Email Address"
4590+msgstr "Salin Alamat Email"
4591+
4592+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4593+msgid ""
4594+"No keyboard translator available. The information needed to convert key "
4595+"presses into characters to send to the terminal is missing."
4596+msgstr ""
4597+"Tak ada tersedia penerjemah papan ketik. Informasi yang diperlukan untuk "
4598+"mengonversi tekanan tombol menjadi karakter yang dikirim ke terminal telah "
4599+"hilang."
4600
4601=== added file 'po/it.po'
4602--- po/it.po 1970-01-01 00:00:00 +0000
4603+++ po/it.po 2014-12-09 09:20:47 +0000
4604@@ -0,0 +1,172 @@
4605+# Italian translation for ubuntu-terminal-app
4606+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4607+# This file is distributed under the same license as the ubuntu-terminal-app package.
4608+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4609+#
4610+msgid ""
4611+msgstr ""
4612+"Project-Id-Version: ubuntu-terminal-app\n"
4613+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4614+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4615+"PO-Revision-Date: 2014-09-01 08:05+0000\n"
4616+"Last-Translator: Claudio Arseni <claudio.arseni@gmail.com>\n"
4617+"Language-Team: Italian <it@li.org>\n"
4618+"MIME-Version: 1.0\n"
4619+"Content-Type: text/plain; charset=UTF-8\n"
4620+"Content-Transfer-Encoding: 8bit\n"
4621+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
4622+"X-Generator: Launchpad (build 17196)\n"
4623+
4624+#: ../src/app/qml/AuthenticationDialog.qml:25
4625+msgid "Authentication required"
4626+msgstr ""
4627+
4628+#: ../src/app/qml/AuthenticationDialog.qml:27
4629+msgid "Enter password:"
4630+msgstr ""
4631+
4632+#: ../src/app/qml/AuthenticationDialog.qml:40
4633+msgid "password"
4634+msgstr ""
4635+
4636+#: ../src/app/qml/AuthenticationDialog.qml:50
4637+#: ../src/app/qml/NotifyDialog.qml:25
4638+msgid "Ok"
4639+msgstr ""
4640+
4641+#: ../src/app/qml/AuthenticationDialog.qml:61
4642+#: ../src/app/qml/ColorDialog.qml:149
4643+msgid "Cancel"
4644+msgstr "Annulla"
4645+
4646+#: ../src/app/qml/AuthenticationService.qml:55
4647+msgid "Authentication failed"
4648+msgstr ""
4649+
4650+#: ../src/app/qml/ColorDialog.qml:25
4651+msgid "Pick a color"
4652+msgstr "Scelta di un colore"
4653+
4654+#: ../src/app/qml/ColorDialog.qml:129
4655+msgid "OK"
4656+msgstr "OK"
4657+
4658+#: ../src/app/qml/Configs.qml:69
4659+msgid "Color scheme"
4660+msgstr "Schema colore"
4661+
4662+#: ../src/app/qml/Configs.qml:85
4663+msgid "Font size"
4664+msgstr "Dimensione carattere"
4665+
4666+#: ../src/app/qml/Configs.qml:108
4667+msgid "Enable effects:"
4668+msgstr "Abilita effetti:"
4669+
4670+#: ../src/app/qml/Configs.qml:126
4671+msgid "Screen color"
4672+msgstr "Colore schermo"
4673+
4674+#: ../src/app/qml/Configs.qml:139
4675+msgid "Color intensity"
4676+msgstr "Intensità colore"
4677+
4678+#: ../src/app/qml/Configs.qml:167
4679+msgid "Bloom"
4680+msgstr ""
4681+
4682+#: ../src/app/qml/Configs.qml:195
4683+msgid "Curvature"
4684+msgstr "Curvatura"
4685+
4686+#: ../src/app/qml/Configs.qml:223
4687+msgid "Noise"
4688+msgstr "Disturbo"
4689+
4690+#: ../src/app/qml/Configs.qml:251
4691+msgid "Jitter"
4692+msgstr ""
4693+
4694+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
4695+msgid "PG_UP"
4696+msgstr "Pag ↑"
4697+
4698+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
4699+msgid "TAB"
4700+msgstr "Tab"
4701+
4702+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4703+msgid "DEL"
4704+msgstr "Canc"
4705+
4706+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4707+msgid "HOME"
4708+msgstr "Home"
4709+
4710+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4711+msgid "PG_DN"
4712+msgstr "Pag ↓"
4713+
4714+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4715+msgid "END"
4716+msgstr "Fine"
4717+
4718+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4719+#: com.ubuntu.terminal.desktop.in.in.h:1
4720+msgid "Terminal"
4721+msgstr "Terminale"
4722+
4723+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4724+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4725+msgid "Settings"
4726+msgstr "Impostazioni"
4727+
4728+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4729+msgid "Hide all key panels"
4730+msgstr "Nascondi tutti i pannelli"
4731+
4732+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4733+msgid "Control keys"
4734+msgstr "Tasti controllo"
4735+
4736+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4737+msgid "Function keys"
4738+msgstr "Tasti funzione"
4739+
4740+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4741+msgid "Arrow keys"
4742+msgstr "Tasti freccia"
4743+
4744+#: ../src/plugin/konsole/ColorScheme.cpp:276
4745+#: ../src/plugin/konsole/ColorScheme.cpp:291
4746+msgid "Un-named Color Scheme"
4747+msgstr "Schema di colori senza nome"
4748+
4749+#: ../src/plugin/konsole/ColorScheme.cpp:426
4750+msgid "Accessible Color Scheme"
4751+msgstr "Schema di colori accessibile"
4752+
4753+#: ../src/plugin/konsole/Filter.cpp:518
4754+msgid "Open Link"
4755+msgstr "Apri collegamento"
4756+
4757+#: ../src/plugin/konsole/Filter.cpp:519
4758+msgid "Copy Link Address"
4759+msgstr "Copia indirizzo del collegamento"
4760+
4761+#: ../src/plugin/konsole/Filter.cpp:523
4762+msgid "Send Email To..."
4763+msgstr "Invia email a..."
4764+
4765+#: ../src/plugin/konsole/Filter.cpp:524
4766+msgid "Copy Email Address"
4767+msgstr "Copia indirizzo email"
4768+
4769+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4770+msgid ""
4771+"No keyboard translator available. The information needed to convert key "
4772+"presses into characters to send to the terminal is missing."
4773+msgstr ""
4774+"Non è disponibile alcun traduttore di tastiera. Mancano le informazione "
4775+"necessarie per convertire i pulsanti premuti in caratteri da inviare al "
4776+"terminale."
4777
4778=== added file 'po/km.po'
4779--- po/km.po 1970-01-01 00:00:00 +0000
4780+++ po/km.po 2014-12-09 09:20:47 +0000
4781@@ -0,0 +1,172 @@
4782+# Khmer translation for ubuntu-terminal-app
4783+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4784+# This file is distributed under the same license as the ubuntu-terminal-app package.
4785+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4786+#
4787+msgid ""
4788+msgstr ""
4789+"Project-Id-Version: ubuntu-terminal-app\n"
4790+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4791+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4792+"PO-Revision-Date: 2014-09-01 07:30+0000\n"
4793+"Last-Translator: Sok Sophea <sksophea@gmail.com>\n"
4794+"Language-Team: Khmer <km@li.org>\n"
4795+"MIME-Version: 1.0\n"
4796+"Content-Type: text/plain; charset=UTF-8\n"
4797+"Content-Transfer-Encoding: 8bit\n"
4798+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
4799+"X-Generator: Launchpad (build 17196)\n"
4800+
4801+#: ../src/app/qml/AuthenticationDialog.qml:25
4802+msgid "Authentication required"
4803+msgstr ""
4804+
4805+#: ../src/app/qml/AuthenticationDialog.qml:27
4806+msgid "Enter password:"
4807+msgstr ""
4808+
4809+#: ../src/app/qml/AuthenticationDialog.qml:40
4810+msgid "password"
4811+msgstr ""
4812+
4813+#: ../src/app/qml/AuthenticationDialog.qml:50
4814+#: ../src/app/qml/NotifyDialog.qml:25
4815+msgid "Ok"
4816+msgstr ""
4817+
4818+#: ../src/app/qml/AuthenticationDialog.qml:61
4819+#: ../src/app/qml/ColorDialog.qml:149
4820+msgid "Cancel"
4821+msgstr "បោះបង់"
4822+
4823+#: ../src/app/qml/AuthenticationService.qml:55
4824+msgid "Authentication failed"
4825+msgstr ""
4826+
4827+#: ../src/app/qml/ColorDialog.qml:25
4828+msgid "Pick a color"
4829+msgstr "ជ្រើស​ពណ៌"
4830+
4831+#: ../src/app/qml/ColorDialog.qml:129
4832+msgid "OK"
4833+msgstr "យល់ព្រម"
4834+
4835+#: ../src/app/qml/Configs.qml:69
4836+msgid "Color scheme"
4837+msgstr "ពណ៌​ចម្រុះ"
4838+
4839+#: ../src/app/qml/Configs.qml:85
4840+msgid "Font size"
4841+msgstr "ទំហំ​ពុម្ព​អក្សរ"
4842+
4843+#: ../src/app/qml/Configs.qml:108
4844+msgid "Enable effects:"
4845+msgstr "បើក​បែបផែន៖"
4846+
4847+#: ../src/app/qml/Configs.qml:126
4848+msgid "Screen color"
4849+msgstr "ពណ៌​អេក្រង់"
4850+
4851+#: ../src/app/qml/Configs.qml:139
4852+msgid "Color intensity"
4853+msgstr "អាំងតង់ស៊ីតេ​ពណ៌"
4854+
4855+#: ../src/app/qml/Configs.qml:167
4856+msgid "Bloom"
4857+msgstr "ពង្រីក"
4858+
4859+#: ../src/app/qml/Configs.qml:195
4860+msgid "Curvature"
4861+msgstr "កំណោង"
4862+
4863+#: ../src/app/qml/Configs.qml:223
4864+msgid "Noise"
4865+msgstr "​ជ្រៀតជ្រែក"
4866+
4867+#: ../src/app/qml/Configs.qml:251
4868+msgid "Jitter"
4869+msgstr "ញ័រ"
4870+
4871+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
4872+msgid "PG_UP"
4873+msgstr "ទំព័រ​លើ"
4874+
4875+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
4876+msgid "TAB"
4877+msgstr "ថេប"
4878+
4879+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
4880+msgid "DEL"
4881+msgstr "លុប"
4882+
4883+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
4884+msgid "HOME"
4885+msgstr "ដើម"
4886+
4887+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
4888+msgid "PG_DN"
4889+msgstr "ទំព័រ​ក្រោម"
4890+
4891+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
4892+msgid "END"
4893+msgstr "ចុង"
4894+
4895+#: ../src/app/qml/ubuntu-terminal-app.qml:32
4896+#: com.ubuntu.terminal.desktop.in.in.h:1
4897+msgid "Terminal"
4898+msgstr "ស្ថានីយ"
4899+
4900+#: ../src/app/qml/ubuntu-terminal-app.qml:51
4901+#: ../src/app/qml/ubuntu-terminal-app.qml:88
4902+msgid "Settings"
4903+msgstr "ការកំណត់"
4904+
4905+#: ../src/app/qml/ubuntu-terminal-app.qml:57
4906+msgid "Hide all key panels"
4907+msgstr "លាក់​បន្ទះ​គ្រាប់ចុច​ទាំងអស់"
4908+
4909+#: ../src/app/qml/ubuntu-terminal-app.qml:64
4910+msgid "Control keys"
4911+msgstr "គ្រាប់​ចុច​បញ្ជា"
4912+
4913+#: ../src/app/qml/ubuntu-terminal-app.qml:71
4914+msgid "Function keys"
4915+msgstr "គ្រាប់​ចុច​មុខងារ"
4916+
4917+#: ../src/app/qml/ubuntu-terminal-app.qml:78
4918+msgid "Arrow keys"
4919+msgstr "គ្រាប់​ចុច​ព្រួញ"
4920+
4921+#: ../src/plugin/konsole/ColorScheme.cpp:276
4922+#: ../src/plugin/konsole/ColorScheme.cpp:291
4923+msgid "Un-named Color Scheme"
4924+msgstr "ពណ៌​ចម្រុះ​ដែល​មិនបាន​ដាក់ឈ្មោះ"
4925+
4926+#: ../src/plugin/konsole/ColorScheme.cpp:426
4927+msgid "Accessible Color Scheme"
4928+msgstr "ពណ៌​ចម្រុះ​ដែល​អាច​ចូល​ប្រើ​បាន"
4929+
4930+#: ../src/plugin/konsole/Filter.cpp:518
4931+msgid "Open Link"
4932+msgstr "បើក​តំណ"
4933+
4934+#: ../src/plugin/konsole/Filter.cpp:519
4935+msgid "Copy Link Address"
4936+msgstr "ចម្លង​អាសយដ្ឋាន​តំណ"
4937+
4938+#: ../src/plugin/konsole/Filter.cpp:523
4939+msgid "Send Email To..."
4940+msgstr "ផ្ញើ​អ៊ីមែល​ទៅ..."
4941+
4942+#: ../src/plugin/konsole/Filter.cpp:524
4943+msgid "Copy Email Address"
4944+msgstr "ចម្លង​អាសយដ្ឋាន​អ៊ីមែល"
4945+
4946+#: ../src/plugin/konsole/Vt102Emulation.cpp:961
4947+msgid ""
4948+"No keyboard translator available. The information needed to convert key "
4949+"presses into characters to send to the terminal is missing."
4950+msgstr ""
4951+"មិន​មាន​កម្មវិធី​បកប្រែ​ក្ដារចុច។ "
4952+"ព័ត៌មាន​ដែល​ត្រូវ​បម្លែង​ការ​ចុច​គ្រាប់ចុច​ទៅ​ជា​តួ​អក្សរ​ដើម្បី​ផ្ញើ​ទៅ​ស្ថា"
4953+"នីយ​គឺ​បាន​បាត់។"
4954
4955=== added file 'po/lv.po'
4956--- po/lv.po 1970-01-01 00:00:00 +0000
4957+++ po/lv.po 2014-12-09 09:20:47 +0000
4958@@ -0,0 +1,169 @@
4959+# Latvian translation for ubuntu-terminal-app
4960+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
4961+# This file is distributed under the same license as the ubuntu-terminal-app package.
4962+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
4963+#
4964+msgid ""
4965+msgstr ""
4966+"Project-Id-Version: ubuntu-terminal-app\n"
4967+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4968+"POT-Creation-Date: 2014-09-26 08:27-0700\n"
4969+"PO-Revision-Date: 2014-05-26 19:30+0000\n"
4970+"Last-Translator: Jānis-Marks Gailis <jm-gailis@fai-vianet.fr>\n"
4971+"Language-Team: Latvian <lv@li.org>\n"
4972+"MIME-Version: 1.0\n"
4973+"Content-Type: text/plain; charset=UTF-8\n"
4974+"Content-Transfer-Encoding: 8bit\n"
4975+"X-Launchpad-Export-Date: 2014-10-02 06:33+0000\n"
4976+"X-Generator: Launchpad (build 17196)\n"
4977+
4978+#: ../src/app/qml/AuthenticationDialog.qml:25
4979+msgid "Authentication required"
4980+msgstr ""
4981+
4982+#: ../src/app/qml/AuthenticationDialog.qml:27
4983+msgid "Enter password:"
4984+msgstr ""
4985+
4986+#: ../src/app/qml/AuthenticationDialog.qml:40
4987+msgid "password"
4988+msgstr ""
4989+
4990+#: ../src/app/qml/AuthenticationDialog.qml:50
4991+#: ../src/app/qml/NotifyDialog.qml:25
4992+msgid "Ok"
4993+msgstr ""
4994+
4995+#: ../src/app/qml/AuthenticationDialog.qml:61
4996+#: ../src/app/qml/ColorDialog.qml:149
4997+msgid "Cancel"
4998+msgstr ""
4999+
5000+#: ../src/app/qml/AuthenticationService.qml:55
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches