From 18ba6fbc1b3498f1846f36c337a87500f659d559 Mon Sep 17 00:00:00 2001 From: Steffen Winterfeldt Date: Mon, 15 Jun 2020 16:43:40 +0200 Subject: add 'default' and 'https' install methods (bsc#1171018) --- themes/openSUSE/src/dia_install.inc | 74 +++++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 23 deletions(-) diff --git a/themes/openSUSE/src/dia_install.inc b/themes/openSUSE/src/dia_install.inc index 3a404be..304e78a 100644 --- a/themes/openSUSE/src/dia_install.inc +++ b/themes/openSUSE/src/dia_install.inc @@ -12,22 +12,19 @@ /proxy.option 255 string def % install types -/.inst_cdrom 0 def -/.inst_hd 1 def -/.inst_slp 2 def -/.inst_ftp 3 def -/.inst_http 4 def -/.inst_nfs 5 def -/.inst_smb 6 def -/.inst_net_setup 7 def -/.inst_net_proxy 8 def - -/install.default .inst_cdrom def - -% isohybrid image booted as disk -sectorsize 0x200 eq bootdrive 0x80 eq or { - /install.default .inst_hd def -} if +/.inst_default 0 def +/.inst_cdrom 1 def +/.inst_hd 2 def +/.inst_slp 3 def +/.inst_ftp 4 def +/.inst_http 5 def +/.inst_https 6 def +/.inst_nfs 7 def +/.inst_smb 8 def +/.inst_net_setup 9 def +/.inst_net_proxy 10 def + +/install.default .inst_default def % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % Build install mode list. @@ -52,11 +49,13 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { % see install types (.inst_*) xmenu .xm_list [ + /txt_kernel_default is_dvd { "DVD" } { "CD-ROM" } ifelse /txt_harddisk "SLP" "FTP" "HTTP" + "HTTPS" "NFS" "SMB / CIFS" /txt_network_config @@ -70,10 +69,10 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { xmenu .xm_submenus xmenu .xm_list get length array put xmenu .xm_attr xmenu .xm_list get length array put - % separation line above 3rd (slp) and 8th (net setup) entry (0-based count) - xmenu .xm_attr get dup .inst_slp 1 put .inst_net_setup 1 put + % separation line above cdrom entry and net setup entry + xmenu .xm_attr get dup .inst_cdrom 1 put .inst_net_setup 1 put - % attach network config menu to 8th (net setup) entry (0-based count) + % attach network config menu to net setup entry xmenu .xm_submenus get .inst_net_setup xmenu.net put xmenu .xm_title /txt_install_source put @@ -97,7 +96,7 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { xmenu .xm_current over .xm_last get put panel.net } { - xmenu .xm_current get dup .inst_cdrom eq exch .inst_slp eq or { + xmenu .xm_current get dup .inst_default eq exch dup .inst_cdrom eq exch .inst_slp eq or or { install.set.install.option /window.action actRedrawPanel def } { @@ -185,6 +184,16 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { } if + dup .inst_https eq { + dia .title txt_https_title put + + % Must all be of same size! + dia .ed.list 2 array put + dia .ed.buffer.list input.edit.http put + dia .ed.text.list [ txt_server txt_directory ] put + + } if + dup .inst_nfs eq { dia .title txt_nfs_title put @@ -282,7 +291,7 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { xmenu .xm_current get dup .inst_net_proxy ne { - % default: .inst_cdrom + % default: .inst_default install.option "" strcpy pop } if @@ -314,6 +323,13 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { "install=http://%s/%s" install.option sprintf } if + dup .inst_https eq { + input.edit.http + dup 1 get dup 0 get '/' eq { 1 add } if + exch 0 get + "install=https://%s/%s" install.option sprintf + } if + dup .inst_nfs eq { input.edit.nfs dup 1 get dup 0 get '/' eq { 1 add } if @@ -352,6 +368,10 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { "install=hd://%s/%s" install.option sprintf } if + dup .inst_cdrom eq { + install.option "install=cd:/" strcpy pop + } if + dup .inst_net_proxy eq { input.edit.proxy dup 0 get "" ne { @@ -384,12 +404,21 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { /install.read.config { install.install dup "cdrom" eq { /install.default .inst_cdrom def } if + dup "hd" eq { /install.default .inst_hd def } if + dup "disk" eq { + % isohybrid image may be cdrom or hard disk + sectorsize 0x200 eq bootdrive 0x80 eq or { + /install.default .inst_hd def + } { + /install.default .inst_cdrom def + } ifelse + } if dup "slp" eq { /install.default .inst_slp def } if dup "ftp" eq { /install.default .inst_ftp def } if dup "http" eq { /install.default .inst_http def } if + dup "https" eq { /install.default .inst_https def } if dup "nfs" eq { /install.default .inst_nfs def } if dup "smb" eq { /install.default .inst_smb def } if - dup "hd" eq { /install.default .inst_hd def } if pop input.edit.http 0 get install.http.server strcpy pop @@ -446,4 +475,3 @@ sectorsize 0x200 eq bootdrive 0x80 eq or { /url_esc_buf 256 string def - -- cgit v1.2.3 From 9df6cfb71e7c399fc1bb0e558863cc103ed6524e Mon Sep 17 00:00:00 2001 From: Steffen Winterfeldt Date: Mon, 15 Jun 2020 16:46:06 +0200 Subject: adjust config file description --- themes/openSUSE/src/gfxboot.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/themes/openSUSE/src/gfxboot.cfg b/themes/openSUSE/src/gfxboot.cfg index 2ddec71..d89d3ac 100644 --- a/themes/openSUSE/src/gfxboot.cfg +++ b/themes/openSUSE/src/gfxboot.cfg @@ -117,7 +117,10 @@ mediacheck=mediachk nobootoptions=harddisk,memtest ; main menu items that are not passed an 'install' parameter noinstallopt=harddisk,firmware,memtest -; default install method (one of: cdrom, slp, ftp, http, nfs, smb, hd; default: cdrom) +; install method (one of: (== default), cdrom, hd, disk, slp, ftp, http, +; https, nfs, smb) +; - disk: auto-detect between cdrom or hd depending on how the image was booted +; - https & http share the same server/path components install= ; default repo location install.http.server= -- cgit v1.2.3 From 03cf5062283dbe1c7a5460a9e34ec914fa11c1fe Mon Sep 17 00:00:00 2001 From: Steffen Winterfeldt Date: Mon, 15 Jun 2020 16:46:24 +0200 Subject: add https dialog title --- themes/openSUSE/po/af.po | 5 +++++ themes/openSUSE/po/ar.po | 5 +++++ themes/openSUSE/po/bg.po | 5 +++++ themes/openSUSE/po/bootloader.pot | 5 +++++ themes/openSUSE/po/ca.po | 6 ++++++ themes/openSUSE/po/cs.po | 6 ++++++ themes/openSUSE/po/da.po | 6 ++++++ themes/openSUSE/po/de.po | 6 ++++++ themes/openSUSE/po/el.po | 5 +++++ themes/openSUSE/po/es.po | 6 ++++++ themes/openSUSE/po/et.po | 5 +++++ themes/openSUSE/po/fi.po | 6 ++++++ themes/openSUSE/po/fr.po | 5 +++++ themes/openSUSE/po/gl.po | 5 +++++ themes/openSUSE/po/gu.po | 5 +++++ themes/openSUSE/po/hi.po | 5 +++++ themes/openSUSE/po/hr.po | 5 +++++ themes/openSUSE/po/hu.po | 5 +++++ themes/openSUSE/po/id.po | 6 ++++++ themes/openSUSE/po/it.po | 5 +++++ themes/openSUSE/po/ja.po | 6 ++++++ themes/openSUSE/po/ka.po | 5 +++++ themes/openSUSE/po/kk.po | 5 +++++ themes/openSUSE/po/ko.po | 5 +++++ themes/openSUSE/po/ky.po | 5 +++++ themes/openSUSE/po/lt.po | 5 +++++ themes/openSUSE/po/mr.po | 5 +++++ themes/openSUSE/po/nb.po | 5 +++++ themes/openSUSE/po/nl.po | 5 +++++ themes/openSUSE/po/pa.po | 5 +++++ themes/openSUSE/po/pl.po | 5 +++++ themes/openSUSE/po/pt.po | 5 +++++ themes/openSUSE/po/pt_BR.po | 6 ++++++ themes/openSUSE/po/ro.po | 5 +++++ themes/openSUSE/po/ru.po | 5 +++++ themes/openSUSE/po/sk.po | 6 ++++++ themes/openSUSE/po/sl.po | 5 +++++ themes/openSUSE/po/sr.po | 5 +++++ themes/openSUSE/po/sv.po | 6 ++++++ themes/openSUSE/po/ta.po | 5 +++++ themes/openSUSE/po/tg.po | 5 +++++ themes/openSUSE/po/th.po | 6 ++++++ themes/openSUSE/po/tr.po | 5 +++++ themes/openSUSE/po/uk.po | 5 +++++ themes/openSUSE/po/wa.po | 5 +++++ themes/openSUSE/po/xh.po | 5 +++++ themes/openSUSE/po/zh_CN.po | 6 ++++++ themes/openSUSE/po/zh_TW.po | 5 +++++ themes/openSUSE/po/zu.po | 5 +++++ 49 files changed, 258 insertions(+) mode change 100644 => 100755 themes/openSUSE/po/uk.po diff --git a/themes/openSUSE/po/af.po b/themes/openSUSE/po/af.po index 59233f2..67c90b3 100644 --- a/themes/openSUSE/po/af.po +++ b/themes/openSUSE/po/af.po @@ -503,3 +503,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-installasie" + diff --git a/themes/openSUSE/po/ar.po b/themes/openSUSE/po/ar.po index 9adf799..2aacd97 100644 --- a/themes/openSUSE/po/ar.po +++ b/themes/openSUSE/po/ar.po @@ -510,3 +510,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "تثبيت HTTPS" + diff --git a/themes/openSUSE/po/bg.po b/themes/openSUSE/po/bg.po index bea4893..6b3092d 100644 --- a/themes/openSUSE/po/bg.po +++ b/themes/openSUSE/po/bg.po @@ -510,3 +510,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Инсталиране от HTTPS" + diff --git a/themes/openSUSE/po/bootloader.pot b/themes/openSUSE/po/bootloader.pot index a3c589c..34390f0 100644 --- a/themes/openSUSE/po/bootloader.pot +++ b/themes/openSUSE/po/bootloader.pot @@ -487,3 +487,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "" + diff --git a/themes/openSUSE/po/ca.po b/themes/openSUSE/po/ca.po index d015bce..8431c0e 100644 --- a/themes/openSUSE/po/ca.po +++ b/themes/openSUSE/po/ca.po @@ -508,3 +508,9 @@ msgstr "Blanc sobre negre" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cian sobre negre" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instal·lació per HTTPS" + diff --git a/themes/openSUSE/po/cs.po b/themes/openSUSE/po/cs.po index 148e93c..10e47f3 100644 --- a/themes/openSUSE/po/cs.po +++ b/themes/openSUSE/po/cs.po @@ -510,3 +510,9 @@ msgstr "Bílá na černé" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Zelenomodrá na černé" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalace pomocí protokolu HTTPS" + diff --git a/themes/openSUSE/po/da.po b/themes/openSUSE/po/da.po index 14c768e..5d65b3e 100644 --- a/themes/openSUSE/po/da.po +++ b/themes/openSUSE/po/da.po @@ -511,3 +511,9 @@ msgstr "Hvid på sort" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cyan på sort" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-installation" + diff --git a/themes/openSUSE/po/de.po b/themes/openSUSE/po/de.po index 5e65099..ed13e01 100644 --- a/themes/openSUSE/po/de.po +++ b/themes/openSUSE/po/de.po @@ -511,3 +511,9 @@ msgstr "Weiß auf Schwarz" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cyan auf Schwarz" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-Installation" + diff --git a/themes/openSUSE/po/el.po b/themes/openSUSE/po/el.po index dc8d0a9..6fcdb8b 100644 --- a/themes/openSUSE/po/el.po +++ b/themes/openSUSE/po/el.po @@ -506,3 +506,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Εγκατάσταση HTTPS" + diff --git a/themes/openSUSE/po/es.po b/themes/openSUSE/po/es.po index 2c58084..6d145cf 100644 --- a/themes/openSUSE/po/es.po +++ b/themes/openSUSE/po/es.po @@ -513,3 +513,9 @@ msgstr "Blanco sobre negro" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cian sobre negro" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalación desde HTTPS" + diff --git a/themes/openSUSE/po/et.po b/themes/openSUSE/po/et.po index 5950954..c95f68e 100644 --- a/themes/openSUSE/po/et.po +++ b/themes/openSUSE/po/et.po @@ -510,3 +510,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-paigaldus" + diff --git a/themes/openSUSE/po/fi.po b/themes/openSUSE/po/fi.po index 70b8146..32d9bb8 100644 --- a/themes/openSUSE/po/fi.po +++ b/themes/openSUSE/po/fi.po @@ -513,3 +513,9 @@ msgstr "Valkoinen mustalla" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Syaani mustalla" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-asennus" + diff --git a/themes/openSUSE/po/fr.po b/themes/openSUSE/po/fr.po index 3fabe35..a74e9ba 100644 --- a/themes/openSUSE/po/fr.po +++ b/themes/openSUSE/po/fr.po @@ -516,3 +516,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Installation HTTPS" + diff --git a/themes/openSUSE/po/gl.po b/themes/openSUSE/po/gl.po index 931c20b..d857022 100644 --- a/themes/openSUSE/po/gl.po +++ b/themes/openSUSE/po/gl.po @@ -511,3 +511,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalación por HTTPS" + diff --git a/themes/openSUSE/po/gu.po b/themes/openSUSE/po/gu.po index cbad7d6..1b24be2 100644 --- a/themes/openSUSE/po/gu.po +++ b/themes/openSUSE/po/gu.po @@ -504,3 +504,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr " HTTPS સ્થાપન " + diff --git a/themes/openSUSE/po/hi.po b/themes/openSUSE/po/hi.po index 2b843ba..20beb91 100644 --- a/themes/openSUSE/po/hi.po +++ b/themes/openSUSE/po/hi.po @@ -504,3 +504,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS अधिष्ठापन" + diff --git a/themes/openSUSE/po/hr.po b/themes/openSUSE/po/hr.po index 89345e8..da3f8f8 100644 --- a/themes/openSUSE/po/hr.po +++ b/themes/openSUSE/po/hr.po @@ -505,3 +505,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS instalacija" + diff --git a/themes/openSUSE/po/hu.po b/themes/openSUSE/po/hu.po index 98dd52b..dc37d62 100644 --- a/themes/openSUSE/po/hu.po +++ b/themes/openSUSE/po/hu.po @@ -512,3 +512,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-telepítés" + diff --git a/themes/openSUSE/po/id.po b/themes/openSUSE/po/id.po index 3d1c461..e0684c4 100644 --- a/themes/openSUSE/po/id.po +++ b/themes/openSUSE/po/id.po @@ -510,3 +510,9 @@ msgstr "Putih pada Hitam" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cyan pada hitam" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Pemasangan HTTPS" + diff --git a/themes/openSUSE/po/it.po b/themes/openSUSE/po/it.po index bfabda0..f8c2b0f 100644 --- a/themes/openSUSE/po/it.po +++ b/themes/openSUSE/po/it.po @@ -508,3 +508,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Installazione HTTPS" + diff --git a/themes/openSUSE/po/ja.po b/themes/openSUSE/po/ja.po index 4385bfc..619142d 100644 --- a/themes/openSUSE/po/ja.po +++ b/themes/openSUSE/po/ja.po @@ -507,3 +507,9 @@ msgstr "黒い画面に白色" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "黒い画面に青緑" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPSインストール" + diff --git a/themes/openSUSE/po/ka.po b/themes/openSUSE/po/ka.po index 636fe57..1039ecb 100644 --- a/themes/openSUSE/po/ka.po +++ b/themes/openSUSE/po/ka.po @@ -503,3 +503,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-ით ჩადგმა" + diff --git a/themes/openSUSE/po/kk.po b/themes/openSUSE/po/kk.po index a2c7fb3..6d2a705 100644 --- a/themes/openSUSE/po/kk.po +++ b/themes/openSUSE/po/kk.po @@ -509,3 +509,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS арқылы орнату" + diff --git a/themes/openSUSE/po/ko.po b/themes/openSUSE/po/ko.po index 8536e90..f1e8aa8 100644 --- a/themes/openSUSE/po/ko.po +++ b/themes/openSUSE/po/ko.po @@ -503,3 +503,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS 설치" + diff --git a/themes/openSUSE/po/ky.po b/themes/openSUSE/po/ky.po index 7271757..679226f 100644 --- a/themes/openSUSE/po/ky.po +++ b/themes/openSUSE/po/ky.po @@ -504,3 +504,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS орнотулушу" + diff --git a/themes/openSUSE/po/lt.po b/themes/openSUSE/po/lt.po index eabc1ab..e5756b0 100644 --- a/themes/openSUSE/po/lt.po +++ b/themes/openSUSE/po/lt.po @@ -508,3 +508,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS diegimas" + diff --git a/themes/openSUSE/po/mr.po b/themes/openSUSE/po/mr.po index 919d34e..7e76622 100644 --- a/themes/openSUSE/po/mr.po +++ b/themes/openSUSE/po/mr.po @@ -505,3 +505,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS स्थापना" + diff --git a/themes/openSUSE/po/nb.po b/themes/openSUSE/po/nb.po index b5246f9..14dbdc2 100644 --- a/themes/openSUSE/po/nb.po +++ b/themes/openSUSE/po/nb.po @@ -510,3 +510,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-installasjon" + diff --git a/themes/openSUSE/po/nl.po b/themes/openSUSE/po/nl.po index e113eed..1cfcef3 100644 --- a/themes/openSUSE/po/nl.po +++ b/themes/openSUSE/po/nl.po @@ -514,3 +514,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-installatie" + diff --git a/themes/openSUSE/po/pa.po b/themes/openSUSE/po/pa.po index 35572b1..07f1a3f 100644 --- a/themes/openSUSE/po/pa.po +++ b/themes/openSUSE/po/pa.po @@ -515,3 +515,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS ਇੰਸਟਾਲੇਸ਼ਨ" + diff --git a/themes/openSUSE/po/pl.po b/themes/openSUSE/po/pl.po index 9789e24..8aabab0 100644 --- a/themes/openSUSE/po/pl.po +++ b/themes/openSUSE/po/pl.po @@ -508,3 +508,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalacja przez HTTPS" + diff --git a/themes/openSUSE/po/pt.po b/themes/openSUSE/po/pt.po index f32c8f1..f871eb5 100644 --- a/themes/openSUSE/po/pt.po +++ b/themes/openSUSE/po/pt.po @@ -513,3 +513,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalação por HTTPS" + diff --git a/themes/openSUSE/po/pt_BR.po b/themes/openSUSE/po/pt_BR.po index f7be9e6..3c4e9de 100644 --- a/themes/openSUSE/po/pt_BR.po +++ b/themes/openSUSE/po/pt_BR.po @@ -508,3 +508,9 @@ msgstr "Branco no preto" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Ciano no preto" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalação por HTTPS" + diff --git a/themes/openSUSE/po/ro.po b/themes/openSUSE/po/ro.po index 9de23a5..c93c61c 100644 --- a/themes/openSUSE/po/ro.po +++ b/themes/openSUSE/po/ro.po @@ -508,3 +508,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Instalare prin HTTPS" + diff --git a/themes/openSUSE/po/ru.po b/themes/openSUSE/po/ru.po index 111c7d7..9054b30 100644 --- a/themes/openSUSE/po/ru.po +++ b/themes/openSUSE/po/ru.po @@ -510,3 +510,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Настройка HTTPS" + diff --git a/themes/openSUSE/po/sk.po b/themes/openSUSE/po/sk.po index 56cc46a..5f80e03 100644 --- a/themes/openSUSE/po/sk.po +++ b/themes/openSUSE/po/sk.po @@ -514,3 +514,9 @@ msgstr "Biela na čiernej" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Azúrová na čiernej" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS Inštalácia" + diff --git a/themes/openSUSE/po/sl.po b/themes/openSUSE/po/sl.po index 4560d46..be4c7ac 100644 --- a/themes/openSUSE/po/sl.po +++ b/themes/openSUSE/po/sl.po @@ -513,3 +513,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Namestitev preko HTTPS" + diff --git a/themes/openSUSE/po/sr.po b/themes/openSUSE/po/sr.po index 745eeec..9f0e926 100644 --- a/themes/openSUSE/po/sr.po +++ b/themes/openSUSE/po/sr.po @@ -503,3 +503,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS инсталација" + diff --git a/themes/openSUSE/po/sv.po b/themes/openSUSE/po/sv.po index 7fa7f38..a2333d5 100644 --- a/themes/openSUSE/po/sv.po +++ b/themes/openSUSE/po/sv.po @@ -507,3 +507,9 @@ msgstr "Vit på svart" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "Cyan på svart" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS-installation" + diff --git a/themes/openSUSE/po/ta.po b/themes/openSUSE/po/ta.po index 0cb9cff..f2045a8 100644 --- a/themes/openSUSE/po/ta.po +++ b/themes/openSUSE/po/ta.po @@ -504,3 +504,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS நிறுவுதல்" + diff --git a/themes/openSUSE/po/tg.po b/themes/openSUSE/po/tg.po index 9b23602..4b5929b 100644 --- a/themes/openSUSE/po/tg.po +++ b/themes/openSUSE/po/tg.po @@ -490,3 +490,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Коргузории HTTPS" + diff --git a/themes/openSUSE/po/th.po b/themes/openSUSE/po/th.po index e78b6ab..1e660a3 100644 --- a/themes/openSUSE/po/th.po +++ b/themes/openSUSE/po/th.po @@ -509,3 +509,9 @@ msgstr "ขาวบนดำ" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "สีน้ำเงินเขียวบนดำ" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "ติดตั้งผ่านทาง HTTPS" + diff --git a/themes/openSUSE/po/tr.po b/themes/openSUSE/po/tr.po index 6c0371f..03cdbbb 100644 --- a/themes/openSUSE/po/tr.po +++ b/themes/openSUSE/po/tr.po @@ -504,3 +504,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS kurulumu" + diff --git a/themes/openSUSE/po/uk.po b/themes/openSUSE/po/uk.po old mode 100644 new mode 100755 index 2ffa26a..168e9c7 --- a/themes/openSUSE/po/uk.po +++ b/themes/openSUSE/po/uk.po @@ -513,3 +513,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Встановлення через HTTPS" + diff --git a/themes/openSUSE/po/wa.po b/themes/openSUSE/po/wa.po index 044c5e0..4c535a2 100644 --- a/themes/openSUSE/po/wa.po +++ b/themes/openSUSE/po/wa.po @@ -506,3 +506,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Astalaedje HTTPS" + diff --git a/themes/openSUSE/po/xh.po b/themes/openSUSE/po/xh.po index 29f8b3d..53db087 100644 --- a/themes/openSUSE/po/xh.po +++ b/themes/openSUSE/po/xh.po @@ -501,3 +501,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Ukuhlohlwa kwe-HTTPS" + diff --git a/themes/openSUSE/po/zh_CN.po b/themes/openSUSE/po/zh_CN.po index f080043..713ffd2 100644 --- a/themes/openSUSE/po/zh_CN.po +++ b/themes/openSUSE/po/zh_CN.po @@ -508,3 +508,9 @@ msgstr "黑底白字" #. txt_cyan_on_black msgid "Cyan on Black" msgstr "黑底青字" + +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS 安装" + diff --git a/themes/openSUSE/po/zh_TW.po b/themes/openSUSE/po/zh_TW.po index 8f23b38..499039f 100644 --- a/themes/openSUSE/po/zh_TW.po +++ b/themes/openSUSE/po/zh_TW.po @@ -505,3 +505,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "HTTPS 安裝" + diff --git a/themes/openSUSE/po/zu.po b/themes/openSUSE/po/zu.po index a00b10e..c38e9ff 100644 --- a/themes/openSUSE/po/zu.po +++ b/themes/openSUSE/po/zu.po @@ -501,3 +501,8 @@ msgstr "" msgid "Cyan on Black" msgstr "" +#. dialog title for https installation +#. txt_https_title +msgid "HTTPS Installation" +msgstr "Ukufakwa Kwe-HTTPS" + -- cgit v1.2.3