mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-06 00:15:11 +01:00
feat: Ubuntu focal 20.04
This commit is contained in:
parent
0e70047bdc
commit
c3bce99da9
7 changed files with 162 additions and 73 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
# Built with arch: amd64 flavor: lxde image: ubuntu:18.04
|
# Built with arch: amd64 flavor: lxde image: ubuntu:20.04
|
||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
# base system
|
# base system
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
FROM ubuntu:18.04 as system
|
FROM ubuntu:20.04 as system
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -24,16 +24,22 @@ RUN apt update \
|
||||||
&& apt autoremove -y \
|
&& apt autoremove -y \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
# install debs error if combine together
|
# install debs error if combine together
|
||||||
RUN add-apt-repository -y ppa:fcwu-tw/apps \
|
RUN apt update \
|
||||||
&& apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
xvfb x11vnc=0.9.16-1 \
|
xvfb x11vnc \
|
||||||
vim-tiny firefox chromium-browser ttf-ubuntu-font-family ttf-wqy-zenhei \
|
vim-tiny firefox ttf-ubuntu-font-family ttf-wqy-zenhei \
|
||||||
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
|
||||||
&& apt autoclean -y \
|
&& apt autoclean -y \
|
||||||
&& apt autoremove -y \
|
&& apt autoremove -y \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y gpg-agent \
|
||||||
|
&& curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
|
||||||
|
&& (dpkg -i ./google-chrome-stable_current_amd64.deb || apt-get install -fy) \
|
||||||
|
&& curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add \
|
||||||
|
&& rm google-chrome-stable_current_amd64.deb \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN apt update \
|
RUN apt update \
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
||||||
|
|
@ -62,8 +68,9 @@ RUN apt update \
|
||||||
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
||||||
&& apt-get install -y python-pip python-dev build-essential \
|
&& apt-get install -y python3-pip python3-dev build-essential \
|
||||||
&& pip install setuptools wheel && pip install -r /tmp/requirements.txt \
|
&& pip3 install setuptools wheel && pip3 install -r /tmp/requirements.txt \
|
||||||
|
&& ln -s /usr/bin/python3 /usr/local/bin/python \
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
||||||
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
||||||
&& apt-get autoclean -y \
|
&& apt-get autoclean -y \
|
||||||
|
|
@ -75,7 +82,7 @@ RUN apt-get update \
|
||||||
################################################################################
|
################################################################################
|
||||||
# builder
|
# builder
|
||||||
################################################################################
|
################################################################################
|
||||||
FROM ubuntu:18.04 as builder
|
FROM ubuntu:20.04 as builder
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -4,7 +4,7 @@
|
||||||
REPO ?= dorowu/ubuntu-desktop-lxde-vnc
|
REPO ?= dorowu/ubuntu-desktop-lxde-vnc
|
||||||
TAG ?= latest
|
TAG ?= latest
|
||||||
# you can choose other base image versions
|
# you can choose other base image versions
|
||||||
IMAGE ?= ubuntu:18.04
|
IMAGE ?= ubuntu:20.04
|
||||||
# choose from supported flavors (see available ones in ./flavors/*.yml)
|
# choose from supported flavors (see available ones in ./flavors/*.yml)
|
||||||
FLAVOR ?= lxde
|
FLAVOR ?= lxde
|
||||||
# armhf or amd64
|
# armhf or amd64
|
||||||
|
|
@ -20,7 +20,7 @@ build: $(templates)
|
||||||
# Test run the container
|
# Test run the container
|
||||||
# the local dir will be mounted under /src read-only
|
# the local dir will be mounted under /src read-only
|
||||||
run:
|
run:
|
||||||
docker run --rm \
|
docker run --privileged --rm \
|
||||||
-p 6080:80 -p 6081:443 \
|
-p 6080:80 -p 6081:443 \
|
||||||
-v ${PWD}:/src:ro \
|
-v ${PWD}:/src:ro \
|
||||||
-e USER=doro -e PASSWORD=mypassword \
|
-e USER=doro -e PASSWORD=mypassword \
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,4 @@ if [ -z "$ALSADEV" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec /usr/bin/chromium-browser --no-sandbox --alsa-output-device="$ALSADEV" "$@"
|
exec /usr/bin/google-chrome --no-sandbox --alsa-output-device="$ALSADEV" "$@"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
from __future__ import (
|
from __future__ import (
|
||||||
absolute_import, division, print_function, with_statement
|
absolute_import, division, print_function, with_statement
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,7 @@ def liveflv():
|
||||||
cmd,
|
cmd,
|
||||||
stdout=gsp.PIPE,
|
stdout=gsp.PIPE,
|
||||||
stderr=gsp.PIPE,
|
stderr=gsp.PIPE,
|
||||||
env={k: str(v) for k, v in xenvs.iteritems()},
|
env={k: str(v) for k, v in xenvs.items()},
|
||||||
)
|
)
|
||||||
|
|
||||||
def readerr(f):
|
def readerr(f):
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ class State(object):
|
||||||
output = gsp.check_output([
|
output = gsp.check_output([
|
||||||
'supervisorctl', '-c', '/etc/supervisor/supervisord.conf',
|
'supervisorctl', '-c', '/etc/supervisor/supervisord.conf',
|
||||||
'status'
|
'status'
|
||||||
])
|
], encoding='UTF-8')
|
||||||
for line in output.strip().split('\n'):
|
for line in output.strip().split('\n'):
|
||||||
if not line.startswith('web') and line.find('RUNNING') < 0:
|
if not line.startswith('web') and line.find('RUNNING') < 0:
|
||||||
health = False
|
health = False
|
||||||
|
|
|
||||||
|
|
@ -1,139 +1,221 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Version=1.0
|
Version=1.0
|
||||||
Name=Chromium Web Browser Sound
|
Name=Google Chrome Sound
|
||||||
|
# Only KDE 4 seems to use GenericName, so we reuse the KDE strings.
|
||||||
|
# From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413.
|
||||||
GenericName=Web Browser
|
GenericName=Web Browser
|
||||||
GenericName[ar]=متصفح الشبكة
|
GenericName[ar]=متصفح الشبكة
|
||||||
GenericName[ast]=Restolador web
|
|
||||||
GenericName[bg]=Уеб браузър
|
GenericName[bg]=Уеб браузър
|
||||||
GenericName[bn]=ওয়েব ব্রাউজার
|
|
||||||
GenericName[bs]=Web preglednik
|
|
||||||
GenericName[ca]=Navegador web
|
GenericName[ca]=Navegador web
|
||||||
GenericName[ca@valencia]=Navegador web
|
|
||||||
GenericName[cs]=WWW prohlížeč
|
GenericName[cs]=WWW prohlížeč
|
||||||
GenericName[da]=Browser
|
GenericName[da]=Browser
|
||||||
GenericName[de]=Web-Browser
|
GenericName[de]=Web-Browser
|
||||||
GenericName[el]=Περιηγητής ιστού
|
GenericName[el]=Περιηγητής ιστού
|
||||||
GenericName[en_AU]=Web Browser
|
|
||||||
GenericName[en_GB]=Web Browser
|
GenericName[en_GB]=Web Browser
|
||||||
GenericName[eo]=Retfoliumilo
|
|
||||||
GenericName[es]=Navegador web
|
GenericName[es]=Navegador web
|
||||||
GenericName[et]=Veebibrauser
|
GenericName[et]=Veebibrauser
|
||||||
GenericName[eu]=Web-nabigatzailea
|
|
||||||
GenericName[fi]=WWW-selain
|
GenericName[fi]=WWW-selain
|
||||||
GenericName[fil]=Web Browser
|
|
||||||
GenericName[fr]=Navigateur Web
|
GenericName[fr]=Navigateur Web
|
||||||
GenericName[gl]=Navegador web
|
|
||||||
GenericName[gu]=વેબ બ્રાઉઝર
|
GenericName[gu]=વેબ બ્રાઉઝર
|
||||||
GenericName[he]=דפדפן אינטרנט
|
GenericName[he]=דפדפן אינטרנט
|
||||||
GenericName[hi]=वेब ब्राउज़र
|
GenericName[hi]=वेब ब्राउज़र
|
||||||
GenericName[hr]=Web preglednik
|
|
||||||
GenericName[hu]=Webböngésző
|
GenericName[hu]=Webböngésző
|
||||||
GenericName[hy]=Ոստայն զննարկիչ
|
GenericName[it]=Browser Web
|
||||||
GenericName[ia]=Navigator del Web
|
GenericName[ja]=ウェブブラウザ
|
||||||
GenericName[id]=Peramban Web
|
|
||||||
GenericName[it]=Browser web
|
|
||||||
GenericName[ja]=ウェブ・ブラウザ
|
|
||||||
GenericName[ka]=ვებ ბრაუზერი
|
|
||||||
GenericName[kn]=ಜಾಲ ವೀಕ್ಷಕ
|
GenericName[kn]=ಜಾಲ ವೀಕ್ಷಕ
|
||||||
GenericName[ko]=웹 브라우저
|
GenericName[ko]=웹 브라우저
|
||||||
GenericName[kw]=Peurel wias
|
|
||||||
GenericName[lt]=Žiniatinklio naršyklė
|
GenericName[lt]=Žiniatinklio naršyklė
|
||||||
GenericName[lv]=Tīmekļa pārlūks
|
GenericName[lv]=Tīmekļa pārlūks
|
||||||
GenericName[ml]=വെബ് ബ്രൌസര്
|
GenericName[ml]=വെബ് ബ്രൌസര്
|
||||||
GenericName[mr]=वेब ब्राऊजर
|
GenericName[mr]=वेब ब्राऊजर
|
||||||
GenericName[ms]=Pelayar Web
|
|
||||||
GenericName[nb]=Nettleser
|
GenericName[nb]=Nettleser
|
||||||
GenericName[nl]=Webbrowser
|
GenericName[nl]=Webbrowser
|
||||||
GenericName[or]=ଓ୍ବେବ ବ୍ରାଉଜର
|
|
||||||
GenericName[pl]=Przeglądarka WWW
|
GenericName[pl]=Przeglądarka WWW
|
||||||
GenericName[pt]=Navegador Web
|
GenericName[pt]=Navegador Web
|
||||||
GenericName[pt_BR]=Navegador web
|
GenericName[pt_BR]=Navegador da Internet
|
||||||
GenericName[ro]=Navigator de Internet
|
GenericName[ro]=Navigator de Internet
|
||||||
GenericName[ru]=Веб-браузер
|
GenericName[ru]=Веб-браузер
|
||||||
GenericName[sk]=WWW prehliadač
|
|
||||||
GenericName[sl]=Spletni brskalnik
|
GenericName[sl]=Spletni brskalnik
|
||||||
GenericName[sr]=Интернет прегледник
|
|
||||||
GenericName[sv]=Webbläsare
|
GenericName[sv]=Webbläsare
|
||||||
GenericName[ta]=இணைய உலாவி
|
GenericName[ta]=இணைய உலாவி
|
||||||
GenericName[te]=మహాతల అన్వేషి
|
|
||||||
GenericName[th]=เว็บเบราว์เซอร์
|
GenericName[th]=เว็บเบราว์เซอร์
|
||||||
GenericName[tr]=Web Tarayıcı
|
GenericName[tr]=Web Tarayıcı
|
||||||
GenericName[ug]=توركۆرگۈ
|
|
||||||
GenericName[uk]=Навігатор Тенет
|
GenericName[uk]=Навігатор Тенет
|
||||||
GenericName[vi]=Bộ duyệt Web
|
|
||||||
GenericName[zh_CN]=网页浏览器
|
GenericName[zh_CN]=网页浏览器
|
||||||
GenericName[zh_HK]=網頁瀏覽器
|
GenericName[zh_HK]=網頁瀏覽器
|
||||||
GenericName[zh_TW]=網頁瀏覽器
|
GenericName[zh_TW]=網頁瀏覽器
|
||||||
|
# Not translated in KDE, from Epiphany 2.26.1-0ubuntu1.
|
||||||
|
GenericName[bn]=ওয়েব ব্রাউজার
|
||||||
|
GenericName[fil]=Web Browser
|
||||||
|
GenericName[hr]=Web preglednik
|
||||||
|
GenericName[id]=Browser Web
|
||||||
|
GenericName[or]=ଓ୍ବେବ ବ୍ରାଉଜର
|
||||||
|
GenericName[sk]=WWW prehliadač
|
||||||
|
GenericName[sr]=Интернет прегледник
|
||||||
|
GenericName[te]=మహాతల అన్వేషి
|
||||||
|
GenericName[vi]=Bộ duyệt Web
|
||||||
|
# Gnome and KDE 3 uses Comment.
|
||||||
Comment=Access the Internet
|
Comment=Access the Internet
|
||||||
Comment[ar]=الدخول إلى الإنترنت
|
Comment[ar]=الدخول إلى الإنترنت
|
||||||
Comment[ast]=Accesu a Internet
|
|
||||||
Comment[bg]=Достъп до интернет
|
Comment[bg]=Достъп до интернет
|
||||||
Comment[bn]=ইন্টারনেটে প্রবেশ করুন
|
Comment[bn]=ইন্টারনেটটি অ্যাক্সেস করুন
|
||||||
Comment[bs]=Pristup internetu
|
Comment[ca]=Accedeix a Internet
|
||||||
Comment[ca]=Accediu a Internet
|
|
||||||
Comment[ca@valencia]=Accediu a Internet
|
|
||||||
Comment[cs]=Přístup k internetu
|
Comment[cs]=Přístup k internetu
|
||||||
Comment[da]=Få adgang til internettet
|
Comment[da]=Få adgang til internettet
|
||||||
Comment[de]=Internetzugriff
|
Comment[de]=Internetzugriff
|
||||||
Comment[el]=Πρόσβαση στο Διαδίκτυο
|
Comment[el]=Πρόσβαση στο Διαδίκτυο
|
||||||
Comment[en_AU]=Access the Internet
|
|
||||||
Comment[en_GB]=Access the Internet
|
Comment[en_GB]=Access the Internet
|
||||||
Comment[eo]=Akiri interreton
|
Comment[es]=Accede a Internet.
|
||||||
Comment[es]=Acceda a Internet
|
|
||||||
Comment[et]=Pääs Internetti
|
Comment[et]=Pääs Internetti
|
||||||
Comment[eu]=Sartu Internetera
|
|
||||||
Comment[fi]=Käytä internetiä
|
Comment[fi]=Käytä internetiä
|
||||||
Comment[fil]=I-access ang Internet
|
Comment[fil]=I-access ang Internet
|
||||||
Comment[fr]=Accéder à Internet
|
Comment[fr]=Accéder à Internet
|
||||||
Comment[gl]=Acceda a Internet
|
|
||||||
Comment[gu]=ઇંટરનેટ ઍક્સેસ કરો
|
Comment[gu]=ઇંટરનેટ ઍક્સેસ કરો
|
||||||
Comment[he]=גישה לאינטרנט
|
Comment[he]=גישה אל האינטרנט
|
||||||
Comment[hi]=इंटरनेट तक पहुंच स्थापित करें
|
Comment[hi]=इंटरनेट तक पहुंच स्थापित करें
|
||||||
Comment[hr]=Pristupite Internetu
|
Comment[hr]=Pristup Internetu
|
||||||
Comment[hu]=Az internet elérése
|
Comment[hu]=Internetelérés
|
||||||
Comment[hy]=Մուտք համացանց
|
|
||||||
Comment[ia]=Accede a le Interrete
|
|
||||||
Comment[id]=Akses Internet
|
Comment[id]=Akses Internet
|
||||||
Comment[it]=Accesso a Internet
|
Comment[it]=Accesso a Internet
|
||||||
Comment[ja]=インターネットにアクセス
|
Comment[ja]=インターネットにアクセス
|
||||||
Comment[ka]=ინტერნეტში შესვლა
|
|
||||||
Comment[kn]=ಇಂಟರ್ನೆಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ
|
Comment[kn]=ಇಂಟರ್ನೆಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ
|
||||||
Comment[ko]=인터넷에 연결합니다
|
Comment[ko]=인터넷 연결
|
||||||
Comment[kw]=Hedhes an Kesrosweyth
|
|
||||||
Comment[lt]=Interneto prieiga
|
Comment[lt]=Interneto prieiga
|
||||||
Comment[lv]=Piekļūt internetam
|
Comment[lv]=Piekļūt internetam
|
||||||
Comment[ml]=ഇന്റര്നെറ്റ് ആക്സസ് ചെയ്യുക
|
Comment[ml]=ഇന്റര്നെറ്റ് ആക്സസ് ചെയ്യുക
|
||||||
Comment[mr]=इंटरनेटमध्ये प्रवेश करा
|
Comment[mr]=इंटरनेटमध्ये प्रवेश करा
|
||||||
Comment[ms]=Mengakses Internet
|
Comment[nb]=Gå til Internett
|
||||||
Comment[nb]=Bruk internett
|
|
||||||
Comment[nl]=Verbinding maken met internet
|
Comment[nl]=Verbinding maken met internet
|
||||||
Comment[or]=ଇଣ୍ଟର୍ନେଟ୍ ପ୍ରବେଶ କରନ୍ତୁ
|
Comment[or]=ଇଣ୍ଟର୍ନେଟ୍ ପ୍ରବେଶ କରନ୍ତୁ
|
||||||
Comment[pl]=Skorzystaj z internetu
|
Comment[pl]=Skorzystaj z internetu
|
||||||
Comment[pt]=Aceder à Internet
|
Comment[pt]=Aceder à Internet
|
||||||
Comment[pt_BR]=Acessar a internet
|
Comment[pt_BR]=Acessar a internet
|
||||||
Comment[ro]=Accesați Internetul
|
Comment[ro]=Accesaţi Internetul
|
||||||
Comment[ru]=Доступ в Интернет
|
Comment[ru]=Доступ в Интернет
|
||||||
Comment[sk]=Prístup do siete Internet
|
Comment[sk]=Prístup do siete Internet
|
||||||
Comment[sl]=Dostop do interneta
|
Comment[sl]=Dostop do interneta
|
||||||
Comment[sr]=Приступите Интернету
|
Comment[sr]=Приступите Интернету
|
||||||
Comment[sv]=Surfa på Internet
|
Comment[sv]=Gå ut på Internet
|
||||||
Comment[ta]=இணையத்தை அணுகுதல்
|
Comment[ta]=இணையத்தை அணுகுதல்
|
||||||
Comment[te]=ఇంటర్నెట్ను ఆక్సెస్ చెయ్యండి
|
Comment[te]=ఇంటర్నెట్ను ఆక్సెస్ చెయ్యండి
|
||||||
Comment[th]=เข้าถึงอินเทอร์เน็ต
|
Comment[th]=เข้าถึงอินเทอร์เน็ต
|
||||||
Comment[tr]=İnternet'e erişin
|
Comment[tr]=İnternet'e erişin
|
||||||
Comment[ug]=ئىنتېرنېت زىيارىتى
|
|
||||||
Comment[uk]=Доступ до Інтернету
|
Comment[uk]=Доступ до Інтернету
|
||||||
Comment[vi]=Truy cập Internet
|
Comment[vi]=Truy cập Internet
|
||||||
Comment[zh_CN]=访问互联网
|
Comment[zh_CN]=访问互联网
|
||||||
Comment[zh_HK]=連線到網際網路
|
Comment[zh_HK]=連線到網際網路
|
||||||
Comment[zh_TW]=連線到網際網路
|
Comment[zh_TW]=連線到網際網路
|
||||||
Exec=/usr/local/bin/chromium-browser-sound.sh %U
|
Exec=/usr/local/bin/chromium-browser-sound.sh %U
|
||||||
Terminal=false
|
|
||||||
X-MultipleArgs=false
|
|
||||||
Type=Application
|
|
||||||
Icon=chromium-browser
|
|
||||||
Categories=Network;WebBrowser;
|
|
||||||
MimeType=text/html;text/xml;application/xhtml_xml;x-scheme-handler/http;x-scheme-handler/https;
|
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Actions=NewWindow;Incognito;TempProfile;
|
Terminal=false
|
||||||
X-AppInstall-Package=chromium-browser
|
Icon=google-chrome
|
||||||
|
Type=Application
|
||||||
|
Categories=Network;WebBrowser;
|
||||||
|
MimeType=application/pdf;application/rdf+xml;application/rss+xml;application/xhtml+xml;application/xhtml_xml;application/xml;image/gif;image/jpeg;image/png;image/webp;text/html;text/xml;x-scheme-handler/ftp;x-scheme-handler/http;x-scheme-handler/https;
|
||||||
|
Actions=new-window;new-private-window;
|
||||||
|
|
||||||
|
[Desktop Action new-window]
|
||||||
|
Name=New Window
|
||||||
|
Name[am]=አዲስ መስኮት
|
||||||
|
Name[ar]=نافذة جديدة
|
||||||
|
Name[bg]=Нов прозорец
|
||||||
|
Name[bn]=নতুন উইন্ডো
|
||||||
|
Name[ca]=Finestra nova
|
||||||
|
Name[cs]=Nové okno
|
||||||
|
Name[da]=Nyt vindue
|
||||||
|
Name[de]=Neues Fenster
|
||||||
|
Name[el]=Νέο Παράθυρο
|
||||||
|
Name[en_GB]=New Window
|
||||||
|
Name[es]=Nueva ventana
|
||||||
|
Name[et]=Uus aken
|
||||||
|
Name[fa]=پنجره جدید
|
||||||
|
Name[fi]=Uusi ikkuna
|
||||||
|
Name[fil]=New Window
|
||||||
|
Name[fr]=Nouvelle fenêtre
|
||||||
|
Name[gu]=નવી વિંડો
|
||||||
|
Name[hi]=नई विंडो
|
||||||
|
Name[hr]=Novi prozor
|
||||||
|
Name[hu]=Új ablak
|
||||||
|
Name[id]=Jendela Baru
|
||||||
|
Name[it]=Nuova finestra
|
||||||
|
Name[iw]=חלון חדש
|
||||||
|
Name[ja]=新規ウインドウ
|
||||||
|
Name[kn]=ಹೊಸ ವಿಂಡೊ
|
||||||
|
Name[ko]=새 창
|
||||||
|
Name[lt]=Naujas langas
|
||||||
|
Name[lv]=Jauns logs
|
||||||
|
Name[ml]=പുതിയ വിന്ഡോ
|
||||||
|
Name[mr]=नवीन विंडो
|
||||||
|
Name[nl]=Nieuw venster
|
||||||
|
Name[no]=Nytt vindu
|
||||||
|
Name[pl]=Nowe okno
|
||||||
|
Name[pt]=Nova janela
|
||||||
|
Name[pt_BR]=Nova janela
|
||||||
|
Name[ro]=Fereastră nouă
|
||||||
|
Name[ru]=Новое окно
|
||||||
|
Name[sk]=Nové okno
|
||||||
|
Name[sl]=Novo okno
|
||||||
|
Name[sr]=Нови прозор
|
||||||
|
Name[sv]=Nytt fönster
|
||||||
|
Name[sw]=Dirisha Jipya
|
||||||
|
Name[ta]=புதிய சாளரம்
|
||||||
|
Name[te]=క్రొత్త విండో
|
||||||
|
Name[th]=หน้าต่างใหม่
|
||||||
|
Name[tr]=Yeni Pencere
|
||||||
|
Name[uk]=Нове вікно
|
||||||
|
Name[vi]=Cửa sổ Mới
|
||||||
|
Name[zh_CN]=新建窗口
|
||||||
|
Name[zh_TW]=開新視窗
|
||||||
|
Exec=/usr/bin/google-chrome-stable
|
||||||
|
|
||||||
|
[Desktop Action new-private-window]
|
||||||
|
Name=New Incognito Window
|
||||||
|
Name[ar]=نافذة جديدة للتصفح المتخفي
|
||||||
|
Name[bg]=Нов прозорец „инкогнито“
|
||||||
|
Name[bn]=নতুন ছদ্মবেশী উইন্ডো
|
||||||
|
Name[ca]=Finestra d'incògnit nova
|
||||||
|
Name[cs]=Nové anonymní okno
|
||||||
|
Name[da]=Nyt inkognitovindue
|
||||||
|
Name[de]=Neues Inkognito-Fenster
|
||||||
|
Name[el]=Νέο παράθυρο για ανώνυμη περιήγηση
|
||||||
|
Name[en_GB]=New Incognito window
|
||||||
|
Name[es]=Nueva ventana de incógnito
|
||||||
|
Name[et]=Uus inkognito aken
|
||||||
|
Name[fa]=پنجره جدید حالت ناشناس
|
||||||
|
Name[fi]=Uusi incognito-ikkuna
|
||||||
|
Name[fil]=Bagong Incognito window
|
||||||
|
Name[fr]=Nouvelle fenêtre de navigation privée
|
||||||
|
Name[gu]=નવી છુપી વિંડો
|
||||||
|
Name[hi]=नई गुप्त विंडो
|
||||||
|
Name[hr]=Novi anoniman prozor
|
||||||
|
Name[hu]=Új Inkognitóablak
|
||||||
|
Name[id]=Jendela Penyamaran baru
|
||||||
|
Name[it]=Nuova finestra di navigazione in incognito
|
||||||
|
Name[iw]=חלון חדש לגלישה בסתר
|
||||||
|
Name[ja]=新しいシークレット ウィンドウ
|
||||||
|
Name[kn]=ಹೊಸ ಅಜ್ಞಾತ ವಿಂಡೋ
|
||||||
|
Name[ko]=새 시크릿 창
|
||||||
|
Name[lt]=Naujas inkognito langas
|
||||||
|
Name[lv]=Jauns inkognito režīma logs
|
||||||
|
Name[ml]=പുതിയ വേഷ പ്രച്ഛന്ന വിന്ഡോ
|
||||||
|
Name[mr]=नवीन गुप्त विंडो
|
||||||
|
Name[nl]=Nieuw incognitovenster
|
||||||
|
Name[no]=Nytt inkognitovindu
|
||||||
|
Name[pl]=Nowe okno incognito
|
||||||
|
Name[pt]=Nova janela de navegação anónima
|
||||||
|
Name[pt_BR]=Nova janela anônima
|
||||||
|
Name[ro]=Fereastră nouă incognito
|
||||||
|
Name[ru]=Новое окно в режиме инкогнито
|
||||||
|
Name[sk]=Nové okno inkognito
|
||||||
|
Name[sl]=Novo okno brez beleženja zgodovine
|
||||||
|
Name[sr]=Нови прозор за прегледање без архивирања
|
||||||
|
Name[sv]=Nytt inkognitofönster
|
||||||
|
Name[ta]=புதிய மறைநிலைச் சாளரம்
|
||||||
|
Name[te]=క్రొత్త అజ్ఞాత విండో
|
||||||
|
Name[th]=หน้าต่างใหม่ที่ไม่ระบุตัวตน
|
||||||
|
Name[tr]=Yeni Gizli pencere
|
||||||
|
Name[uk]=Нове вікно в режимі анонімного перегляду
|
||||||
|
Name[vi]=Cửa sổ ẩn danh mới
|
||||||
|
Name[zh_CN]=新建隐身窗口
|
||||||
|
Name[zh_TW]=新增無痕式視窗
|
||||||
|
Exec=/usr/bin/google-chrome-stable --incognito
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue