Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tails
tails
Commits
c3ebb7cf
Commit
c3ebb7cf
authored
Jan 16, 2019
by
intrigeri
Browse files
Merge remote-tracking branch 'origin/devel' into devel
parents
98c0c3f9
e9ebe765
Changes
59
Hide whitespace changes
Inline
Side-by-side
config/chroot_local-hooks/51-update-bash.bashrc
0 → 100755
View file @
c3ebb7cf
#!/bin/sh
set
-e
set
-u
# Make /etc/bash.bashrc source /etc/bash.bashrc.d/*
echo
"Updating /etc/bash.bashrc"
cat
<<
EOF
>> /etc/bash.bashrc
# The following code snippet is added by 'config/chroot_local-hooks/51-update-bash.bashrc'
for file in /etc/bash.bashrc.d/*;
do
source "
\$
file"
done
EOF
config/chroot_local-includes/etc/bash.bashrc.d/replace-su-with-sudo.sh
0 → 100755
View file @
c3ebb7cf
#!/bin/bash
# Replace su by a message to use sudo.
#
# In Tails, the administration password doesn't work with 'su'. New
# users in particular may be puzzled by the authentication failures
# while trying to 'su' using administration password.
#
# This script introduces 'su' function for non-root users. The 'su'
# function executes '/usr/local/bin/replace-su-with-sudo', which asks
# them to use 'sudo' instead of 'su'.
#
# https://redmine.tails.boum.org/code/issues/15583
# Get LIVE_USERNAME
.
/etc/live/config.d/username.conf
# Only add the 'su' function for the desktop user.
[
"
$USER
"
==
"
$LIVE_USERNAME
"
]
||
return
su
(){
/usr/local/bin/replace-su-with-sudo
}
config/chroot_local-includes/usr/local/bin/replace-su-with-sudo
0 → 100755
View file @
c3ebb7cf
#!/usr/bin/env python3
# In Tails, the administration password doesn't work with 'su'. New
# users in particular may be puzzled by the authentication failures
# while trying to 'su' using administration password.
#
# This script is called by '/etc/bash.bashrc.d/replace-su-with-sudo.sh'.
# It checks if the current user's password is set or not using
# 'is_password_set()' function from 'adminpassword.py' library. If the
# password is set, the user is asked to use 'sudo' instead of 'su'.
# Otherwise, the user is asked to first set the administration password.
#
# https://redmine.tails.boum.org/code/issues/15583
import
gettext
import
sys
from
tailslib.adminpassword
import
is_password_set
def
main
()
->
None
:
if
is_password_set
():
print
(
_
(
'su is disabled. Please use sudo instead.'
))
sys
.
exit
(
0
)
else
:
print
(
open
(
"/usr/share/tails-greeter/no-password-lecture.txt"
).
read
())
sys
.
exit
(
1
)
if
__name__
==
"__main__"
:
# Initialize translations
translation
=
gettext
.
translation
(
"tails"
,
fallback
=
True
)
_
=
translation
.
gettext
main
()
config/chroot_local-includes/usr/local/bin/tails-screen-locker
View file @
c3ebb7cf
...
...
@@ -17,6 +17,7 @@ from gi.repository import Gtk, GLib
gi
.
require_version
(
'Gdk'
,
'3.0'
)
from
gi.repository
import
Gdk
from
tailslib.adminpassword
import
is_password_set
_
=
gettext
.
gettext
gettext
.
textdomain
(
"tails"
)
...
...
@@ -197,11 +198,6 @@ def get_lock():
get_lock
.
_lock_socket
.
bind
(
'
\0
'
+
'tails-screen-locker'
)
def
is_password_set
():
output
=
subprocess
.
check_output
([
"passwd"
,
"--status"
])
return
output
.
split
()[
1
]
==
b
"P"
def
main
():
get_lock
()
if
is_password_set
():
...
...
po/POTFILES.in
View file @
c3ebb7cf
...
...
@@ -4,6 +4,7 @@ tmp/pot/config.py.pot
tmp/pot/configuration-window.ui.pot
tmp/pot/electrum.pot
tmp/pot/keepassx.pot
tmp/pot/replace-su-with-sudo.pot
tmp/pot/status-menu-helper-extension.js.pot
tmp/pot/tails-about.pot
tmp/pot/tails-additional-software.pot
...
...
po/ar.po
View file @
c3ebb7cf
...
...
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2014-12-05 17:21+0000\n"
"Last-Translator: Osama M. Mneina <o.mneina@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/torproject/"
...
...
@@ -137,6 +137,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr ""
...
...
@@ -286,7 +290,7 @@ msgid "Remove"
msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "إلغاء"
...
...
@@ -446,23 +450,23 @@ msgstr ""
"href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en."
"html'>الوثائق</a>."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr ""
...
...
po/az.po
View file @
c3ebb7cf
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2014-12-30 17:30+0000\n"
"Last-Translator: E <ehuseynzade@gmail.com>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/torproject/"
...
...
@@ -130,6 +130,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr ""
...
...
@@ -280,7 +284,7 @@ msgid "Remove"
msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Ləğv et"
...
...
@@ -443,23 +447,23 @@ msgstr ""
"<a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en."
"html'>Sənədləşmə</a>yə bax."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr ""
...
...
po/bg.po
View file @
c3ebb7cf
...
...
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-03-08 03:22+0000\n"
"Last-Translator: Ivo\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/"
...
...
@@ -144,6 +144,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "Рестарт"
...
...
@@ -300,7 +304,7 @@ msgid "Remove"
msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Отказ"
...
...
@@ -463,25 +467,25 @@ msgstr ""
"забранени.\n"
"Може би предпочитате рестартиране на Tails и забраняване на MAC спуфинга."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
#, fuzzy
msgid "Lock Screen"
msgstr "Заключване на екрана"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
#, fuzzy
msgid "Set up a password to unlock the screen."
msgstr "Задаване на парола за заключване на екрана"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr "Парола"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr "Потвърждение"
...
...
po/bn.po
View file @
c3ebb7cf
...
...
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-10-07 00:42+0000\n"
"Last-Translator: Emma Peel\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/"
...
...
@@ -140,6 +140,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "পুনরায় চালু করুন"
...
...
@@ -296,7 +300,7 @@ msgid "Remove"
msgstr "অপসারণ"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "বাতিল"
...
...
@@ -461,23 +465,23 @@ msgstr ""
"ব্যর্থ তাই সমস্ত নেটওয়ার্কিং নিষ্ক্রিয় করা হয়।\n"
"আপনি পুচ্ছ পুনর্সূচনা এবং ম্যাক spoofing অক্ষম করতে পারে।"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr "লক স্ক্রিন"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr "স্ক্রিন লকার"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr "স্ক্রিন আনলক করতে একটি পাসওয়ার্ড সেট আপ করুন।"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr "পাসওয়ার্ড"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr "নিশ্চিত করা"
...
...
po/bn_BD.po
View file @
c3ebb7cf
...
...
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-10-06 22:54+0000\n"
"Last-Translator: Emma Peel\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/otf/torproject/"
...
...
@@ -141,6 +141,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "পুনরায় চালু করুন"
...
...
@@ -297,7 +301,7 @@ msgid "Remove"
msgstr "অপসারণ"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "বাতিল"
...
...
@@ -462,23 +466,23 @@ msgstr ""
"ব্যর্থ তাই সমস্ত নেটওয়ার্কিং নিষ্ক্রিয় করা হয়।\n"
"আপনি পুচ্ছ পুনর্সূচনা এবং ম্যাক spoofing অক্ষম করতে পারে।"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr "লক স্ক্রিন"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr "স্ক্রিন লকার"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr "স্ক্রিন আনলক করতে একটি পাসওয়ার্ড সেট আপ করুন।"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr "পাসওয়ার্ড"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr "নিশ্চিত করা"
...
...
po/ca.po
View file @
c3ebb7cf
...
...
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-10-06 22:32+0000\n"
"Last-Translator: Emma Peel\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/"
...
...
@@ -153,6 +153,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "Reinicia"
...
...
@@ -311,7 +315,7 @@ msgid "Remove"
msgstr "Suprimeix la subscripció"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel·la"
...
...
@@ -483,23 +487,23 @@ msgstr ""
"Potser preferireu reiniciar el Tails i desactivar el falsejament de l'adreça "
"MAC "
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr "Bloca la pantalla"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr "Bloqueig de la pantalla"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr "Establiu una contrasenya per a desblocar la pantalla."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr "Contrasenya"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr "Confirma"
...
...
po/cs.po
View file @
c3ebb7cf
...
...
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2017-12-07 22:10+0000\n"
"Last-Translator: Michal Vašíček <michalvasicek@icloud.com>\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
...
...
@@ -140,6 +140,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "Restart"
...
...
@@ -290,7 +294,7 @@ msgid "Remove"
msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Zrušit"
...
...
@@ -449,23 +453,23 @@ msgstr ""
"také selhalo a veškerý síťový provoz byl deaktivován.\n"
"Měli byste restartovat Tails a vypnout MAC spoofing."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr ""
...
...
po/cy.po
View file @
c3ebb7cf
...
...
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2014-04-30 09:10+0000\n"
"Last-Translator: runasand <runa.sandvik@gmail.com>\n"
"Language-Team: Welsh (http://www.transifex.com/projects/p/torproject/"
...
...
@@ -131,6 +131,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr ""
...
...
@@ -281,7 +285,7 @@ msgid "Remove"
msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Canslo"
...
...
@@ -444,23 +448,23 @@ msgstr ""
"Gwelwch y <a href='file:///usr/share/doc/tails/website/doc/first_steps/"
"startup_options/mac_spoofing.en.html'>dogfenniaeth Saesneg</a>."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr ""
...
...
po/da.po
View file @
c3ebb7cf
...
...
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-12-07 13:55+0000\n"
"Last-Translator: carolyn <carolyn@anhalt.org>\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/"
...
...
@@ -153,6 +153,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "Genstart"
...
...
@@ -310,7 +314,7 @@ msgid "Remove"
msgstr "Fjern"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annuller"
...
...
@@ -477,23 +481,23 @@ msgstr ""
"fejlede også, så al netværk er slået fra. \n"
"Du vil måske foretrække at genstarte Tails og slå MAC spoofing fra."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr "Lås skærm"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5
msgid "Screen Locker"
msgstr "Skærmlåser"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
0
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
1
msgid "Set up a password to unlock the screen."
msgstr "Opsæt en adgangskode til at låse skærmen op."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
5
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:13
6
msgid "Password"
msgstr "Adgangskode"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
1
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:14
2
msgid "Confirm"
msgstr "Bekræft"
...
...
po/de.po
View file @
c3ebb7cf
...
...
@@ -35,7 +35,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-14 2
0:19
+0100\n"
"POT-Creation-Date: 2019-01-14 2
1:20
+0100\n"
"PO-Revision-Date: 2018-10-24 15:37+0000\n"
"Last-Translator: Traumschule Riebau <traumschuleriebau@riseup.net>\n"
"Language-Team: German (http://www.transifex.com/otf/torproject/language/"
...
...
@@ -168,6 +168,10 @@ msgstr ""
msgid "Keep current name"
msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
msgstr "Neustart"
...
...
@@ -326,7 +330,7 @@ msgid "Remove"
msgstr "Aufheben"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
8
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:11
9
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Abbrechen"
...
...
@@ -501,23 +505,23 @@ msgstr ""
"Sie sollten eventuell die MAC-Manipulation deaktivieren und Tails neu "
"starten."
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:10
9
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:1
1
0
msgid "Lock Screen"
msgstr "Sperrbildschirm"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
4
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:12
5