diff -Nru ice-5.3.5/debian/changelog ice-6.0.6/debian/changelog --- ice-5.3.5/debian/changelog 2018-12-04 12:24:00.000000000 +0000 +++ ice-6.0.6/debian/changelog 2019-09-06 15:51:47.000000000 +0000 @@ -1,3 +1,52 @@ +ice (6.0.6) bionic; urgency=low + + * Fixed address/tab bar reappearance in + * SSB's using Firefox 69. + + -- Mark Greaves (PCNetSpec) 06 Sep 2019 16:52:00 +0000 + +ice (6.0.5) bionic; urgency=low + + * Add check for zero lentgh SSB name, and + * EmptyNameError to warn/prevent the user + * from creating an SSB with a blank name. + * Updated translations with EmptyNameError + * strings. + + -- Mark Greaves (PCNetSpec) 16 Jun 2019 22:06:00 +0000 + +ice (6.0.4) bionic; urgency=low + + * Updated translations including the + * browser profile isolation line. + * Thanks to Kiyohito AOKI (sambar-fgfs). + + -- Mark Greaves (PCNetSpec) 02 Jun 2019 19:20:00 +0000 + +ice (6.0.3) bionic; urgency=low + + * Fixed flashing Allow/Deny dialog for + * passwords and addon installation, makes + * the nav-bar present but transparent. + + -- Mark Greaves (PCNetSpec) 16 May 2019 12:48:00 +0000 + +ice (6.0.2) bionic; urgency=low + + * Fixed Ctrl+Tab hidden tab navigation. + + -- Mark Greaves (PCNetSpec) 12 May 2019 19:34:00 +0000 + +ice (6.0.1) bionic; urgency=low + + * Added ability to isolate Chromium browser based SSB profiles. + * Fixed "Gtk.Button.new_from_stock is deprecated" warning. + * Added 4 bookmarks to Firefox SSB's on creation. + * Fixed bug where non-UTF8 items in ~/.local/share/applications + * would throw a "UnicodeDecodeError" in /usr/lib/python3.7/codecs.py. + + -- Mark Greaves (PCNetSpec) 10 Apr 2019 18:00:00 +0000 + ice (5.3.5) bionic; urgency=low * Changed 'Sound & Video' category to 'Multimedia'. diff -Nru ice-5.3.5/README ice-6.0.6/README --- ice-5.3.5/README 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/README 2019-06-01 23:06:58.000000000 +0000 @@ -1,6 +1,6 @@ ##### Ice ##### -(C) 2010 - 2015 -- Kendall Weaver +(C) 2010 - 2019 -- Mark Greaves Released under GNU General Public License version 2 @@ -11,12 +11,15 @@ was originally created for Peppermint OS Ice and is now used as the default SSB application in Peppermint OS since the two branches of the OS merged for Peppermint Two. Since -version 5, Ice has supported Google Chrome. Since version -5.1, Ice has supported Mozilla Firefox. +version 5, Ice has supported Google Chrome. +Ice now supports Chrome, Chromium, Firefox, and Vivaldi. +Chrome, Chromium, and Vivaldi SSB's can now be completely +isolated from each other (or use the shared master browser +profile) Firefox SSB's are always isolated. ##### -Ice depends on the chromium-browser package being installed. +Ice depends on one of the above browsers being installed. It's also possible to use it with any build of Google Chrome however this is something that is hard coded into the app and will need to be manually changed if one wishes to use it diff -Nru ice-5.3.5/usr/bin/ice ice-6.0.6/usr/bin/ice --- ice-5.3.5/usr/bin/ice 2018-12-04 12:21:34.000000000 +0000 +++ ice-6.0.6/usr/bin/ice 2019-09-06 14:22:28.000000000 +0000 @@ -3,6 +3,7 @@ # by Kendall Weaver # for Peppermint OS # modified by Mark Greaves (PCNetSpec) +# with much appreciated code contributions by rhein # internationalization (i18n)/gettext support by Kiyohito AOKI # # Ice is a simple Site Specific Browser (SSB) manager for Chromium and @@ -34,6 +35,8 @@ _HOME = os.getenv("HOME") _ICE_DIR = "{0}/.local/share/ice".format(_HOME) _APPS_DIR = "{0}/.local/share/applications".format(_HOME) +_PROFILES_DIR = "{0}/profiles".format(_ICE_DIR) +_FF_PROFILES_DIR = "{0}/firefox".format(_ICE_DIR) _ICE_ICON = "/usr/share/pixmaps/ice.png" _CHROME_BIN = "/usr/bin/google-chrome" _CHROMIUM_BIN = "/usr/bin/chromium-browser" @@ -47,24 +50,24 @@ # Requisite dirs -if not os.path.exists(_ICE_DIR): - os.system("mkdir -p {0}".format(_ICE_DIR)) - -if not os.path.exists(_APPS_DIR): - os.system("mkdir -p {0}".format(_APPS_DIR)) +for directory in [ _ICE_DIR, _APPS_DIR, _PROFILES_DIR, _FF_PROFILES_DIR ]: + if not os.path.exists(directory): + os.system("mkdir -p {0}".format(directory)) headers = { - 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) \ - AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 \ - Safari/537.36' + 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0', + #'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36' } def get_details(app): - a = open(app, 'r') + a = open(app, 'r', errors='ignore') nameline = "" iconline = "" - is_ice = False + profile = "" + is_ice = False + is_firefox = False + is_isolated = False for line in a: if "Name=" in line: @@ -82,12 +85,28 @@ except: pixbuf = Pixbuf.new_from_file_at_size(_ICE_ICON, 16, 16) elif "StartupWMClass=Chromium" in line: + # for legacy apps is_ice = True + elif "StartupWMClass=ICE-SSB" in line: + is_ice = True + elif "IceFirefox=" in line: + is_firefox = True + profile = str.replace(line, 'IceFirefox=', '').strip() + elif "X-ICE-SSB-Profile=" in line: + is_isolated = True + profile = str.replace(line, 'X-ICE-SSB-Profile=', '').strip() + + if nameline != "" and iconline != "" and is_ice is True: + details = { + 'nameline' : nameline, + 'profile' : profile, + 'is_firefox' : is_firefox, + 'is_isolated' : is_isolated, + 'pixbuf': pixbuf + } + return details - if nameline is not None and iconline is not None and is_ice is True: - return (nameline, pixbuf) - - return (None, None) + return None def normalize(url): @@ -141,13 +160,12 @@ return sanitized_filename -def parse_markup_for_favicon(markup, url): - parsed_site_uri = urlparse(url) +def parse_markup_for_favicon(markup, parsed_site_uri): -# soup = BeautifulSoup(markup) - soup = BeautifulSoup(markup, "lxml") ## edited by MG ## + soup = BeautifulSoup(markup, "lxml") icon_link = soup.find('link', rel='icon') + if icon_link and icon_link.has_attr('href'): favicon_url = icon_link['href'] @@ -178,7 +196,7 @@ raise Exception(_("Unable to find URL. Is it valid? {0}").format(url)) if response.status_code == requests.codes.ok: - favicon_url = parse_markup_for_favicon(response.content, url) + favicon_url = parse_markup_for_favicon(response.content, parsed_site_uri) if favicon_url: return favicon_url @@ -226,6 +244,8 @@ if os.path.exists("{0}/{1}.desktop".format(_APPS_DIR, formatted)): DuplicateError(title, formatted, address, iconext, location) + elif len(title) == 0: + EmptyNameError() else: writefile(title, formatted, address, iconext, location) @@ -242,45 +262,78 @@ elif vivaldi.get_active() == True: browser = "vivaldi" elif firefox.get_active() == True: - browser = "ice-firefox" + browser = "firefox" else: print(_("ERROR: An unknown browser selection error has occurred.")) sys.exit(1) with open(appfile, 'w') as appfile1: + global isolate_profile appfile1.truncate() + appfile1.write("[Desktop Entry]\n") appfile1.write("Version=1.0\n") appfile1.write("Name={0}\n".format(title)) appfile1.write("Comment={0} (Ice SSB)\n".format(title)) - if (browser == "ice-firefox"): - appfile1.write("Exec={0} {1}\n".format(browser, address)) + if (browser == "firefox"): + firefox_profile_path = "{0}/{1}".format(_FF_PROFILES_DIR, formatted) + appfile1.write("Exec={0} --class ICE-SSB-{2} --profile {3} --no-remote {1}\n".format(browser, address, formatted, firefox_profile_path)) + appfile1.write("IceFirefox={0}\n".format(formatted)) + init_firefox_profile(firefox_profile_path) else: - appfile1.write("Exec={0} --app={1}\n".format(browser, address)) + if isolate_profile == True: + profile_path = "{0}/{1}".format(_PROFILES_DIR, formatted) + appfile1.write("Exec={0} --app={1} --class=ICE-SSB-{2} --user-data-dir={3}\n".format(browser, address, formatted, profile_path)) + appfile1.write("X-ICE-SSB-Profile={0}\n".format(formatted)) + else: + appfile1.write("Exec={0} --app={1} --class=ICE-SSB-{2}\n".format(browser, address, formatted)) appfile1.write("Terminal=false\n") appfile1.write("X-MultipleArgs=false\n") appfile1.write("Type=Application\n") - appfile1.write("Icon={0}/.local/share/ice/{1}.{2}\n".format(_HOME, formatted, iconext)) + appfile1.write("Icon={0}/{1}.{2}\n".format(_ICE_DIR, formatted, iconext)) appfile1.write("Categories=GTK;{0}\n".format(location)) appfile1.write("MimeType=text/html;text/xml;application/xhtml_xml;\n") - appfile1.write("StartupWMClass=Chromium\n") + appfile1.write("StartupWMClass=ICE-SSB-{0}\n".format(formatted)) appfile1.write("StartupNotify=true\n") - if (browser == "ice-firefox"): - address1 = str.replace(address, 'http://', '') - address2 = str.replace(address1, 'https://', '') - address3 = str.replace(address2, '/', '_') - appfile1.write("IceFirefox={0}".format(address3)) - name.set_text("") url.set_text("") iconpath = _ICE_ICON new_icon = Pixbuf.new_from_file_at_size(iconpath, 32, 32) icon.set_from_pixbuf(new_icon) - iconline, pixbuf = get_details(appfile) - liststore.prepend([pixbuf, iconline]) + details = get_details(appfile) + if details is not None: + liststore.prepend([ details['pixbuf'], details['nameline'] ]) + +def init_firefox_profile(path): + chromepath = "{0}/chrome".format(path) + settingsfile = "{0}/user.js".format(path) + cssfile = "{0}/userChrome.css".format(chromepath) + + os.system('mkdir -p ' + chromepath) + os.system('cp -n /usr/lib/peppermint/ice/search.json.mozlz4 ' + path + '/search.json.mozlz4') + os.system('cp -n /usr/lib/peppermint/ice/places.sqlite ' + path + '/places.sqlite') + os.system("touch {0}".format(cssfile)) + with open(cssfile, 'w') as cfile: + cfile.write("#nav-bar { max-height: 0 !important; margin-bottom: -20px !important; opacity: 0; } #identity-box, #navigator-toolbox::after, #tabbrowser-tabs { --tab-min-height: 0px !important; margin-left: 0px !important; height: 0px !important; }") + + os.system("touch {0}".format(settingsfile)) + with open(settingsfile, 'w') as sfile: + sfile.write('user_pref("browser.cache.disk.enable", false);') + sfile.write('user_pref("browser.cache.disk.capacity", 0);') + sfile.write('user_pref("browser.cache.disk.filesystem_reported", 1);') + sfile.write('user_pref("browser.cache.disk.smart_size.enabled", false);') + sfile.write('user_pref("browser.cache.disk.smart_size.first_run", false);') + sfile.write('user_pref("browser.cache.disk.smart_size.use_old_max", false);') + sfile.write('user_pref("browser.ctrlTab.previews", true);') + sfile.write('user_pref("browser.tabs.warnOnClose", false);') + sfile.write('user_pref("plugin.state.flash", 2);') + sfile.write('user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);') + + # rhein: do we really need this? + #os.system('rm -rf ' + chromepath + '/cache2') def delete(button): @@ -305,15 +358,32 @@ for line in appfilelines: if "IceFirefox=" in line: profile = str.replace(line, 'IceFirefox=', '') - directory = os.path.expanduser('{0}/firefox'.format(_ICE_DIR)) + os.system("rm -rf {0}/{1}".format(_FF_PROFILES_DIR, profile)) - for profiles in os.listdir(directory): -# if profile in profiles:## edited by MG ## - os.system("rm -rf {0}/{1}".format(directory, profile)) + if "X-ICE-SSB-Profile=" in line: + profile = str.replace(line, 'X-ICE-SSB-Profile=', '') + os.system("rm -rf {0}/{1}".format(_PROFILES_DIR, profile)) os.system("rm {0}".format(appfile)) +def clean_orphaned_profiles(known_apps): + known_profiles = [] + for app in known_apps: + a = "{0}/{1}".format(_FF_PROFILES_DIR, app['profile']) + if app['profile'] != "": + # make sure firefox apps have profiles available + if app['is_firefox'] is True and not os.path.isdir(a): + init_firefox_profile(a) + known_profiles.append(app['profile']) + + for p_type in ['profiles','firefox']: + for fl in os.listdir("{0}/{1}/".format(_ICE_DIR, p_type)): + a = "{0}/{1}/{2}".format(_ICE_DIR, p_type, fl) + if not os.path.isdir(a) or fl not in known_profiles: + os.system("rm -rf {0}".format(a)) + + class IconSel(Gtk.FileChooserDialog): def __init__(self): @@ -381,7 +451,7 @@ text_lab = Gtk.Label(_("The name of the SSB will cause an existing SSB to\nbe overwritten. To prevent this, change a letter in\nthe name. Continue anyway?")) text_lab = Gtk.Label(_("Ice requires a system installation of either Google\nChrome or Chromium in order to function. Please\ninstall at least one in order to create SSBs.")) - close = Gtk.Button.new_from_stock(Gtk.STOCK_CLOSE) + close = Gtk.Button(label=_("Close")) close.connect("clicked", self.destroy) void = Gtk.Label() box = Gtk.HBox() @@ -431,9 +501,9 @@ main_lab.set_markup(_("Warning: File Duplication Error")) text_lab = Gtk.Label(_("The name of the SSB will cause an existing SSB to\nbe overwritten. To prevent this, change a letter in\nthe name. Continue anyway?")) - okay = Gtk.Button.new_from_stock(Gtk.STOCK_OK) + okay = Gtk.Button(label=_("OK")) okay.connect("clicked", self.okay_clicked, title, formatted, address, iconext, location) - cancel = Gtk.Button.new_from_stock(Gtk.STOCK_CANCEL) + cancel = Gtk.Button(label=_("Cancel")) cancel.connect("clicked", self.destroy) void = Gtk.Label() box = Gtk.HBox() @@ -470,9 +540,9 @@ main_lab.set_markup(_("Warning: HTTP or URL Error")) text_lab = Gtk.Label(_("An error with the web address has been detected.\nThis is possibly the site being down or unavailable\nright now. Continue anyway?")) - okay = Gtk.Button.new_from_stock(Gtk.STOCK_OK) + okay = Gtk.Button(label=_("OK")) okay.connect("clicked", self.okay_clicked) - cancel = Gtk.Button.new_from_stock(Gtk.STOCK_CANCEL) + cancel = Gtk.Button(label=_("Cancel")) cancel.connect("clicked", self.destroy) void = Gtk.Label() box = Gtk.HBox() @@ -490,6 +560,41 @@ self.add(main_hbox) self.show_all() +class EmptyNameError(Gtk.Window): + + def destroy(self, button): + self.close() + + def okay_clicked(self, button): + applicate() + self.close() + + def __init__(self): + Gtk.Window.__init__(self, title=_("Name Error")) + self.set_size_request(250, 130) + self.set_icon_from_file(_ICE_ICON) + + main_lab = Gtk.Label() + main_lab.set_markup(_("Error: No Application Name Entered.")) + text_lab = Gtk.Label(_("Please enter an application name to continue.")) + + close = Gtk.Button(label=_("Close")) + close.connect("clicked", self.destroy) + void = Gtk.Label() + box = Gtk.HBox() + box.pack_start(void, True, True, 0) + box.pack_start(close, False, False, 0) + + main_vbox = Gtk.VBox() + main_vbox.pack_start(main_lab, False, False, 10) + main_vbox.pack_start(text_lab, False, False, 0) + main_vbox.pack_start(box, False, False, 10) + + main_hbox = Gtk.HBox() + main_hbox.pack_start(main_vbox, True, True, 10) + self.add(main_hbox) + self.show_all() + class Ice(Gtk.Window): @@ -527,6 +632,12 @@ new_icon = Pixbuf.new_from_file_at_size(iconpath, 32, 32) icon.set_from_pixbuf(new_icon) + def isolate_clicked(self, button): + global isolate_profile + isolate_profile=False + if button.get_active() == True: + isolate_profile = True + def __init__(self): Gtk.Window.__init__(self, title="Ice") self.current_directory = os.path.realpath(_APPS_DIR) @@ -548,7 +659,7 @@ where_store = [_("Accessories"), _("Games"), _("Graphics"), _("Internet"), _("Office"), _("Programming"), _("Multimedia"), _("System")] - where_lab = Gtk.Label(_("Where in the menu?")) + where_lab = Gtk.Label(label=_("Where in the menu?")) global where where = Gtk.ComboBoxText() where.set_entry_text_column(0) @@ -574,9 +685,9 @@ icon_box.pack_start(icon, False, False, 10) icon_box.pack_start(icon_void, False, False, 10) - choose_icon = Gtk.Button(_("Select an icon")) + choose_icon = Gtk.Button(label=_("Select an icon")) choose_icon.connect("clicked", self.icon_select) - download_icon = Gtk.Button(_("Use site favicon")) + download_icon = Gtk.Button(label=_("Use site favicon")) download_icon.connect("clicked", self.icon_download) icon_vbox = Gtk.VBox() @@ -587,7 +698,7 @@ icon_hbox.pack_start(icon_vbox, True, True, 0) global firefox - firefox = Gtk.RadioButton.new_with_label_from_widget(None, "Firefox") + firefox = Gtk.RadioButton.new_with_label_from_widget(None, " Firefox") if not os.path.exists(_FIREFOX_BIN): firefox.set_sensitive(False) @@ -600,7 +711,7 @@ global chrome chrome = Gtk.RadioButton.new_from_widget(firefox) - chrome.set_label("Chrome") + chrome.set_label(" Chrome") if not os.path.exists(_CHROME_BIN): chrome.set_sensitive(False) @@ -613,7 +724,7 @@ global vivaldi vivaldi = Gtk.RadioButton.new_from_widget(chrome) - vivaldi.set_label("Vivaldi") + vivaldi.set_label(" Vivaldi") if not os.path.exists(_VIVALDI_BIN): vivaldi.set_sensitive(False) @@ -626,7 +737,7 @@ global chromium chromium = Gtk.RadioButton.new_from_widget(chrome) - chromium.set_label("Chromium") + chromium.set_label(" Chromium") if not os.path.exists(_CHROMIUM_BIN): chromium.set_sensitive(False) @@ -637,9 +748,16 @@ os.path.exists(_CHROMIUM_BIN): chromium.set_active(True) - apply_button = Gtk.Button.new_from_stock(Gtk.STOCK_APPLY) + global isolate_profile + isolate_profile=False + isolate_box = Gtk.VBox() + isolate_button = Gtk.CheckButton(label=_(" Create the SSB with an isolated browser profile (Note: Firefox SSB's are always isolated)")) + isolate_button.connect("toggled", self.isolate_clicked) + isolate_box.add(isolate_button) + + apply_button = Gtk.Button(label=_("Apply")) apply_button.connect("clicked", self.apply_clicked) - close_button = Gtk.Button.new_from_stock(Gtk.STOCK_CLOSE) + close_button = Gtk.Button(label=_("Close")) close_button.connect("clicked", self.destroy) button_void = Gtk.Label() button_box = Gtk.HBox() @@ -657,25 +775,30 @@ create_vbox.pack_start(url, False, False, 10) create_vbox.pack_start(where_box, False, False, 10) create_vbox.pack_start(icon_hbox, False, False, 10) + create_vbox.pack_start(isolate_box, False, False, 10) create_vbox.pack_start(button_box, False, False, 0) create_hbox = Gtk.HBox() create_hbox.pack_start(create_vbox, True, True, 20) - create_lab = Gtk.Label(_("Create")) + create_lab = Gtk.Label(label=_("Create")) ###################### # 'Remove' page. # ###################### global liststore + known_profiles = [] liststore = Gtk.ListStore(Pixbuf, str) for fl in os.listdir(_APPS_DIR): a = "{0}/{1}".format(_APPS_DIR, fl) if not os.path.isdir(a): - nameline, pixbuf = get_details(a) - if nameline is not None and pixbuf is not None: - liststore.append([pixbuf, nameline]) + details = get_details(a) + if details is not None: + liststore.append([ details['pixbuf'], details['nameline'] ]) + known_profiles.append(details) + + clean_orphaned_profiles(known_profiles) global iconview iconview = Gtk.IconView() @@ -687,9 +810,9 @@ scroll = Gtk.ScrolledWindow() scroll.add(iconview) - remove = Gtk.Button.new_from_stock(Gtk.STOCK_REMOVE) + remove = Gtk.Button(label=_("Remove")) remove.connect("clicked", delete) - close = Gtk.Button.new_from_stock(Gtk.STOCK_CLOSE) + close = Gtk.Button(label=_("Close")) close.connect("clicked", self.destroy) void = Gtk.Label() buttons = Gtk.HBox() @@ -703,7 +826,7 @@ remove_hbox = Gtk.HBox() remove_hbox.pack_start(remove_vbox, True, True, 20) - remove_lab = Gtk.Label(_("Remove")) + remove_lab = Gtk.Label(label=_("Remove")) ########################## # Main window stuff. # diff -Nru ice-5.3.5/usr/bin/ice-firefox ice-6.0.6/usr/bin/ice-firefox --- ice-5.3.5/usr/bin/ice-firefox 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/bin/ice-firefox 2019-09-06 14:23:21.000000000 +0000 @@ -15,7 +15,7 @@ execute = 'firefox -profile ' + path + ' -no-remote -new-instance' + ' ' + sys.argv[1] os.system('mkdir -p ' + chromepath) -os.system('echo "#nav-bar { visibility: hidden !important; max-height: 0 !important; margin-bottom: -20px !important; } #identity-box, #navigator-toolbox::after, #TabsToolbar { display: none !important; }" > ' + chromepath + '/userChrome.css') +os.system('echo "#nav-bar { max-height: 0 !important; margin-bottom: -20px !important; opacity: 0; } #identity-box, #navigator-toolbox::after, #tabbrowser-tabs { --tab-min-height: 0px !important; margin-left: 0px !important; height: 0px !important; }" > ' + chromepath + '/userChrome.css') os.system('echo "user_pref(\\"browser.cache.disk.enable\\", false);" > ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.cache.disk.capacity\\", 0);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.cache.disk.filesystem_reported\\", 1);" >> ' + profilepath + '/user.js') @@ -25,6 +25,8 @@ os.system('echo "user_pref(\\"browser.ctrlTab.previews\\", true);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"browser.tabs.warnOnClose\\", false);" >> ' + profilepath + '/user.js') os.system('echo "user_pref(\\"plugin.state.flash\\", 2);" >> ' + profilepath + '/user.js') +os.system('echo "user_pref(\\"toolkit.legacyUserProfileCustomizations.stylesheets\\", true);" >> ' + profilepath + '/user.js') os.system('cp -n /usr/lib/peppermint/ice/search.json.mozlz4 ' + profilepath + '/search.json.mozlz4') +os.system('cp -n /usr/lib/peppermint/ice/places.sqlite ' + profilepath + '/places.sqlite') os.system(execute) os.system('rm -rf ' + path + '/cache2') Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/lib/peppermint/ice/places.sqlite and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/lib/peppermint/ice/places.sqlite differ Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/fr/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/fr/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/fr/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/fr/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/fr/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/fr/LC_MESSAGES/messages.po 2019-06-16 17:57:26.000000000 +0000 @@ -3,88 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-05 12:53+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 18:57+0100\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Last-Translator: \n" +"Language-Team: \n" +"X-Generator: Poedit 2.0.6\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Impossible d'analyser l'URL, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Impossible de trouver la favicon pour, {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "Impossible de trouver l'URL. Est-elle correcte? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Accessories" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Jeux" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Graphisme" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Bureautique" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Programmation" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "Son et vidéo" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "Multimédia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +#, fuzzy +msgid "System" msgstr "Outils systèm" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "ERREUR: Une erreur de sélection de navigateur inconnue s'est produite." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "Please choose an icon." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Erreur de navigateur" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "test" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Alerte: Aucun navigateur compatible détecté" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -94,7 +95,7 @@ "Pour éviter cela, modifiez une lettre dans le nom.\n" "Continuer quand même?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -104,23 +105,35 @@ "Chromium, Firefox ou Vivaldi pour fonctionner.\n" "Veuillez en installer au moins un pour créer des SSB." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Fermer" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Erreur de duplication" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Attention: Erreur de duplication du fichier" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "D'Accord" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Annuler" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Erreur d'adresse" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Alerte: Erreur HTTP ou URL" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -130,42 +143,69 @@ "C'est probablement le site qui est actuellement indisponible.\n" "Continuer quand même?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Erreur de nom" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Erreur: Aucun nom d'application entré." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Veuillez entrer un nom d'application pour continuer." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "ERREUR: Une erreur d'adresse s'est produite." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "ERREUR: Une erreur inconnue s'est produite." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Bienvenue sur Ice, un gestionnaire SSB simple" -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Nommer l'application" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Entrez l'adresse Web" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Où dans le menu?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Sélectionnez une icône" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Utiliser la favicon du site" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" Créez le SSB avec un profil de navigateur isolé (Remarque: les SSB Firefox " +"sont toujours isolé)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Appliquer" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Créer" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Supprimer" + +#~ msgid "Sound & Video" +#~ msgstr "Son et vidéo" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/ja/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/ja/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/ja/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/ja/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/ja/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/ja/LC_MESSAGES/messages.po 2019-06-16 18:34:59.000000000 +0000 @@ -3,89 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-04 22:49+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 19:34+0100\n" +"Language-Team: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Language: ja\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "{0}というURLを解釈できません" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "{0}のfaviconが見つかりません" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "{0}というURLが見つかりません。URLが正しいですか?" - -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "アクセサリ" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "ゲーム" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "グラフィックス" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "インターネット" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "オフィス" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "プログラミング" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "サウンドとビデオ" - -#: ice:217 ice:547 -msgid "System Tools" -msgstr "システムツール" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "マルチメディア" + +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" +msgstr "システム" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." -msgstr "エラー:不明なブラウザが選択された" +msgstr "エラー:不明なブラウザが選択された." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." -msgstr "アイコンを選択" +msgstr "アイコンを選択." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "ブラウザエラー" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" -msgstr "テスト" +msgstr "test" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "警告:適合するブラウザが見つからない" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -95,7 +95,7 @@ "これを防止するには、名前を変更してください。\n" "上書きしますか?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -104,23 +104,35 @@ "Iceの機能を使うにはGoogle ChromeかChromiumのインストールが必要です。\n" "SSBを作成するには、少なくともどちらかをインストールしてください。" -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "終了" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "重複エラー" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "警告:ファイル重複エラー" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "OK" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "キャンセル" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "アドレスエラー" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "警告:HTTPもしくはURLのエラー" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -130,42 +142,66 @@ "サイトがダウンしているか、現在利用できなくなっている可能性があります。\n" "それでも続行しますか?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "名前エラー" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "エラー:アプリケーション名が入力されていません." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "続行するにはアプリケーション名を入力してください." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." -msgstr "エラー:アドレスエラーが発生した" +msgstr "エラー:アドレスエラーが発生した." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." -msgstr "エラー:不明なエラーが発生した" +msgstr "エラー:不明なエラーが発生した." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "ICE SSBマネージャーへようこそ" -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "アプリケーション名" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Webアドレス" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" -msgstr "メニュー内の場所" +msgstr "メニュー内の場所." -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "アイコンを選択" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "サイトのfaviconを使用" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" ブラウザのプロファイルを独立させてSSBを作成する (Firefox SSBは常に独立し" +"たプロファイルを使用)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "適用" + +#: ../../../bin/ice:782 msgid "Create" msgstr "追加" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "削除" diff -Nru ice-5.3.5/usr/share/ice/locale/messages.pot ice-6.0.6/usr/share/ice/locale/messages.pot --- ice-5.3.5/usr/share/ice/locale/messages.pot 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/messages.pot 2019-06-16 17:57:49.000000000 +0000 @@ -6,157 +6,191 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-05 12:53+0900\n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.6\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "" -#: ice:215 ice:547 -msgid "Sound & Video" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" msgstr "" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "" -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "" -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" "the name. Continue anyway?" msgstr "" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" "install at least one in order to create SSBs." msgstr "" -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" "right now. Continue anyway?" msgstr "" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "" + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "" + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "" -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "" -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "" -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "" + +#: ../../../bin/ice:782 msgid "Create" msgstr "" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/nl/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/nl/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/nl/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/nl/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/nl/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/nl/LC_MESSAGES/messages.po 2019-06-16 18:57:07.000000000 +0000 @@ -3,88 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-05 12:53+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 19:57+0100\n" +"Language-Team: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: nl\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Niet in staat om de volgende link weer te geven, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Niet in staat om een favicon te vinden voor, {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "Kan de link niet vinden. Is deze juist? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Hulpmiddelen" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Spelletjes" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Grafisch" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Kantoor" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Programmeren" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "Muziek en Video" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "Multimedia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "Systeemgereedschap" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "FOUT: er heeft zich een onbekende fout voorgedaan." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." -msgstr "Please choose an icon." +msgstr "Kies een icoon." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Browser fout" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "test" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Waarschuwing: er is geen geschikte browser gevonden" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -95,7 +96,7 @@ "één letter in de naam te wijzigen.\n" "Wilt u toch verder gaan?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -105,65 +106,104 @@ "Firefox of Vivaldi. Installeer tenminste één van\n" "deze browsers om SSB's te maken met Ice." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Sluit" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Kopieerfout" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Waarschuwing: dubbele bestandsnaam" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "OK" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Verkeerd adres" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Waarschuwing: HTTP of URL fout" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" "right now. Continue anyway?" -msgstr "Er is een fout bij dit webadres geconstateerd.\nWaarschijnlijk is de website niet beschikbaar op dit\nmoment. Wilt u toch verdergaan?" +msgstr "" +"Er is een fout bij dit webadres geconstateerd.\n" +"Waarschijnlijk is de website niet beschikbaar op dit\n" +"moment. Wilt u toch verdergaan?" + +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Naam Fout" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Fout: er is geen toepassingsnaam ingevoerd." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Voer een toepassingsnaam in om door te gaan." -#: ice:505 +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "FOUT: er is een verkeerd adres geconstateerd." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "FOUT: er is een onbekende fout opgetreden." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Welkom bij Ice, een eenvoudige SSB manager." -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Vul hier de naam van de webapplicatie in" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Vul hier het webadres van de apllicatie in" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Waar in het menu?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Selecteer een icoon" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Gebruik de website favicon" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +"Maak de SSB met een geïsoleerd browserprofiel (Opmerking: Firefox SSB's " +"zijn altijd geïsoleerd)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Aanbrengen" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Maak" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Verwijder" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/pl/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/pl/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/pl/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/pl/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/pl/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/pl/LC_MESSAGES/messages.po 2019-06-16 19:25:03.000000000 +0000 @@ -3,88 +3,90 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-05 12:53+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: pshem \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 20:25+0100\n" +"Language-Team: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: pl\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Nie udało się przetworzyć URL, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Nie znaleziono ikony dla {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "URL niedostępny. Czy jest poprawny? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Akcesoria" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Gry" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Grafika" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Biuro" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Programowanie" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "Audio i Wideo" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "Multimedia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "Narzędzia systemowe" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "BŁĄD: Nastąpił nieznany błąd wyboru przeglądarki." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "Prosze wybierz ikonę." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Błąd przeglądarki" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "test" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Uwaga: Brak kompatybilnych przeglądarek" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -94,7 +96,7 @@ "istniejącą. Aby temu zapobiec, zmień literę w nazwie.\n" "Kontynuuj mimo to?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -104,23 +106,35 @@ "Chromium, Firefoxa lub Vivaldi by działać. Zainstaluj \n" "przynajmniej jedną z nich by tworzyć SSB." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Zamknąć" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Błąd podwojenia" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Uwaga: Błąd podwojenia pliku" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "Zgoda" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Anuluj" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Adres błędu" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Uwaga: Błąd HTTP lub URL" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -130,42 +144,66 @@ "Prawdopodobnie strona jest niedostępna lub zamknięta\n" "Kontynuuj mimo to?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Błąd Nazwy" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Błąd: Nie wprowadzono nazwy aplikacji." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Wprowadź nazwę aplikacji, aby kontynuować." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "BŁĄD: Wystąpił błąd w adresie." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "BŁĄD: Wystąpił nieznany błąd." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Witamy w Ice, menadżeże SSB(Przeglądarek Jednej Strony)" -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Nazwij aplikację" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Wprowadź adres sieciowy" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Gdzie umieścić w menu?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Wybierz ikonę" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Użyj ikony ze strony" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" Utwórz SSB z izolowanym profilem przeglądarki (Uwaga: Firefox SSB są " +"zawsze izolowane)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Zastosować" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Stwórz" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Usuń" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/pt_BR/LC_MESSAGES/messages.po 2019-06-16 19:42:51.000000000 +0000 @@ -3,90 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-22 13:08+0000\n" -"PO-Revision-Date: 2018-01-22 15:21+0000\n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 20:42+0100\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: christianvl\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "Language: pt_BR\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Não foi possível analisar o URL, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Não foi possível encontrar o favicon para, {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "Não foi possível encontrarl o URL. Está correto? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Acessórios" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Jogos" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Gráficos" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Escritório" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Desenvolvimento" -#: ice:215 ice:547 -msgid "Sound & Video" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" msgstr "Multimídia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "Sistema" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "ERRO: ocorreu uma seleção de navegador desconhecido." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "Por favor, selecione um ícone." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Erro de navegador" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "teste" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Atenção: Nenhum navegador adequado foi detectado" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -96,7 +95,7 @@ "Para manter o SSB existente, mude alguma letra\n" "no nome. Continuar mesmo assim?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -106,23 +105,35 @@ "instalados para funcionar: Chrome, Chromium, Firefox ou Vivaldi\n" "Por favor, instale ao menos um desses navegadores para criar SSBs." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Fechar" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Erro de duplicação" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Atenção: Erro de duplicação de arquivo" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "OK" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Erro de endereço" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Atenção: Erro de HTTP ou de URL" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -132,42 +143,66 @@ "Isso pode acontecer pelo site estar offline ou indisponível\n" "no momento. Continuar mesmo assim?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Erro de nome" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Erro: Nenhum nome de aplicativo inserido." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Insira um nome de aplicativo para continuar." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "ERRO: Ocorreu um erro de endereço." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "ERRO: Ocorreu um erro desconhecido." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Bem-vindo ao Ice, um simples gestor de SSB." -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Nome para o aplicativo" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Digite o endereço da web" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Aonde no menu?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Escolher um ícone" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Usar o favicon da página" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" Crie o SSB com um perfil de navegador isolado (Nota: os SSBs do Firefox " +"estão sempre isolados)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Aplique" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Criar" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Remover" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/pt_PT/LC_MESSAGES/messages.po 2019-06-16 19:58:47.000000000 +0000 @@ -3,90 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-22 13:08+0000\n" -"PO-Revision-Date: 2018-01-22 15:21+0000\n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 20:58+0100\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: pin\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Language: pt_BR\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: pt_PT\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Não foi possível analisar o URL, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Não foi possível encontrar o favicon para, {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "Não foi possível encontrarl o URL. Está correto? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Acessórios" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Jogos" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Gráficos" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Produtividade" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Desenvolvimento" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "Som e vídeo" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "Multimídia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "Ferramentas de sistema" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "ERRO: ocorreu uma seleção de navegador desconhecido." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "Por favor, selecione um ícone." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Erro de navegador" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" -msgstr "teste" +msgstr "te3ste" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Atenção: Nenhum navegador adequado foi detectado" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -96,7 +95,7 @@ "Para manter o SSB existente, mude alguma letra\n" "no nome. Continuar mesmo assim?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -106,23 +105,35 @@ "instalados para funcionar: Chrome, Chromium, Firefox ou Vivaldi\n" "Por favor, instale ao menos um desses navegadores para criar SSBs." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Fechar" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Erro de duplicação" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Atenção: Erro de duplicação de arquivo" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "OK" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Erro de endereço" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Atenção: Erro de HTTP ou de URL" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -132,42 +143,66 @@ "Isso pode acontecer pelo site estar offline ou indisponível\n" "no momento. Continuar mesmo assim?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Erro de nome" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Erro: Nenhum nome de aplicativo inserido." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Insira um nome de aplicativo para continuar." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "ERRO: Ocorreu um erro de endereço." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "ERRO: Ocorreu um erro desconhecido." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Bem-vindo ao Ice, um simples gestor de SSB." -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Nome para o aplicativo" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Digite o endereço da web" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Aonde no menu?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Escolher um ícone" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Usar o favicon da página" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" Crie o SSB com um perfil de navegador isolado (Nota: os SSBs do Firefox " +"estão sempre isolados)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Aplique" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Criar" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Remover" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/sv/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/sv/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/sv/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/sv/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/sv/LC_MESSAGES/messages.po 2018-05-30 18:05:29.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/sv/LC_MESSAGES/messages.po 2019-06-16 20:16:16.000000000 +0000 @@ -3,90 +3,89 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-22 18:31+0000\n" -"PO-Revision-Date: 2018-01-22 19:21+0000\n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 21:16+0100\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: pin\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Language: sv\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "Kan inte analysera webbadressen, {0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "Kan inte hitta ikonen för, {0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "Kan inte hitta webbadressen. Är den rätt? {0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "Tillbehör" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "Spel" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "Grafik" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "Internet" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "Kontor" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "Programmering" -#: ice:215 ice:547 -msgid "Sound & Video" -msgstr "Ljud och video" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" +msgstr "Multimedia" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "Systemverktyg" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." msgstr "FEL: Ett okänt val av webbläsare har uppstått." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." msgstr "Var god välj en ikon." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "Webbläsarefel" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "test" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "Varning: Ingen lämpligt webbläsare hittades" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -96,7 +95,7 @@ "SSB skrivs över. För att förhindra detta, ändra en bokstav\n" "i namnet. Fortsätt ändå?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -106,23 +105,35 @@ "eller Vivaldi är installerat för att fungera. Var god installera\n" "minst ett för att kunna skapa SSBs." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "Stänga" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "Dupliceringsfel" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "Varning: Fil Dupliceringsfel" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "OK" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "Annullera" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "Adress fel" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "Varning: HTTP eller URL Fel" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -132,42 +143,66 @@ "på grund av att platsen är nere eller inte tillgängligt just nu.\n" "Fortsätt ändå?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "Namnfel" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "Fel: Inget appnamn inmatat." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "Vänligen ange ett appenamn för att fortsätta." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." msgstr "FEL: Ett adress fel har uppstått." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." msgstr "FEL: Ett okänt fel har uppstått." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "Välkommen till Ice, en enkel SSB hanterare." -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "Namnge appen" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "Ange webbadress" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "Var i menyn?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "Välj en ikon" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "Använd webbplatsikon" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr "" +" Skapa SSB med en isolerad webbläsarprofil (Obs: Firefox SSB er är alltid " +"isolerade)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "Tillämpa" + +#: ../../../bin/ice:782 msgid "Create" msgstr "Skapa" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "Ta bort" Binary files /tmp/tmpdtQbjq/zC4EJUYQuf/ice-5.3.5/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.mo and /tmp/tmpdtQbjq/jkcTZSdC1X/ice-6.0.6/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.mo differ diff -Nru ice-5.3.5/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.po ice-6.0.6/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.po --- ice-5.3.5/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.po 2018-07-01 19:45:39.000000000 +0000 +++ ice-6.0.6/usr/share/ice/locale/zh_CN/LC_MESSAGES/messages.po 2019-06-16 20:39:09.000000000 +0000 @@ -7,85 +7,85 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-05 12:53+0900\n" -"PO-Revision-Date: 2018-06-28 19:22+0800\n" +"POT-Creation-Date: 2019-06-16 18:55+0100\n" +"PO-Revision-Date: 2019-06-16 21:39+0100\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.8\n" +"X-Generator: Poedit 2.0.6\n" "Last-Translator: \n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: zh_CN\n" -#: ice:113 +#: ../../../bin/ice:136 #, python-brace-format msgid "Unable to parse URL, {0}" msgstr "无法解析 URL,{0}" -#: ice:118 +#: ../../../bin/ice:141 #, python-brace-format msgid "Unable to find favicon for, {0}" msgstr "无法找到图标,{0}" -#: ice:175 +#: ../../../bin/ice:196 #, python-brace-format msgid "Unable to find URL. Is it valid? {0}" msgstr "无法找到 URL。URL 有效吗?{0}" -#: ice:203 ice:546 +#: ../../../bin/ice:224 ../../../bin/ice:659 msgid "Accessories" msgstr "附件" -#: ice:205 ice:546 +#: ../../../bin/ice:226 ../../../bin/ice:659 msgid "Games" msgstr "游戏" -#: ice:207 ice:546 +#: ../../../bin/ice:228 ../../../bin/ice:659 msgid "Graphics" msgstr "图形" -#: ice:209 ice:546 +#: ../../../bin/ice:230 ../../../bin/ice:659 msgid "Internet" msgstr "互联网" -#: ice:211 ice:547 +#: ../../../bin/ice:232 ../../../bin/ice:660 msgid "Office" msgstr "办公" -#: ice:213 ice:547 +#: ../../../bin/ice:234 ../../../bin/ice:660 msgid "Programming" msgstr "开发" -#: ice:215 ice:547 -msgid "Sound & Video" +#: ../../../bin/ice:236 ../../../bin/ice:660 +msgid "Multimedia" msgstr "多媒体" -#: ice:217 ice:547 -msgid "System Tools" +#: ../../../bin/ice:238 ../../../bin/ice:660 +msgid "System" msgstr "系统" -#: ice:244 +#: ../../../bin/ice:267 msgid "ERROR: An unknown browser selection error has occurred." -msgstr "ERROR:发生了一个未知浏览器选择错误。" +msgstr "ERROR:发生了一个未知浏览器选择错误." -#: ice:331 +#: ../../../bin/ice:403 msgid "Please choose an icon." -msgstr "请选择一个图标。" +msgstr "请选择一个图标." -#: ice:370 +#: ../../../bin/ice:442 msgid "Browser Error" msgstr "浏览器错误" -#: ice:374 +#: ../../../bin/ice:446 msgid "test" msgstr "测试" -#: ice:377 +#: ../../../bin/ice:449 msgid "Warning: No Suitable Browser Detected" msgstr "警告:没有检测到可用的浏览器" -#: ice:378 ice:429 +#: ../../../bin/ice:450 ../../../bin/ice:501 msgid "" "The name of the SSB will cause an existing SSB to\n" "be overwritten. To prevent this, change a letter in\n" @@ -95,7 +95,7 @@ "为避免覆盖发生,请修改一下名字。\n" "仍要继续吗?" -#: ice:379 +#: ../../../bin/ice:451 msgid "" "Ice requires a system installation of either Google\n" "Chrome or Chromium in order to function. Please\n" @@ -103,25 +103,37 @@ msgstr "" "Ice 需要系统内已安装 Google Chrome 或\n" "Chromium 或 Vivaldi 或 Firefox,\n" -"安装至少其中一个以创建 SSB。" +"安装至少其中一个以创建 SSB." -#: ice:423 +#: ../../../bin/ice:453 ../../../bin/ice:759 ../../../bin/ice:814 +msgid "Close" +msgstr "关" + +#: ../../../bin/ice:495 msgid "Duplication Error" msgstr "重名错误" -#: ice:428 +#: ../../../bin/ice:500 msgid "Warning: File Duplication Error" msgstr "警告:文件重名错误" -#: ice:462 +#: ../../../bin/ice:503 ../../../bin/ice:542 +msgid "OK" +msgstr "好的" + +#: ../../../bin/ice:505 ../../../bin/ice:544 +msgid "Cancel" +msgstr "取消" + +#: ../../../bin/ice:534 msgid "Address Error" msgstr "地址错误" -#: ice:467 +#: ../../../bin/ice:539 msgid "Warning: HTTP or URL Error" msgstr "警告:HTTP 或者 URL 错误" -#: ice:468 +#: ../../../bin/ice:540 msgid "" "An error with the web address has been detected.\n" "This is possibly the site being down or unavailable\n" @@ -131,42 +143,64 @@ "站点可能故障或不存在。\n" "仍要继续吗?" -#: ice:505 +#: ../../../bin/ice:572 +msgid "Name Error" +msgstr "名称错误" + +#: ../../../bin/ice:577 +msgid "Error: No Application Name Entered." +msgstr "错误:未输入应用程序名称." + +#: ../../../bin/ice:578 +msgid "Please enter an application name to continue." +msgstr "请输入申请名称以继续." + +#: ../../../bin/ice:612 msgid "ERROR: An address error has occurred." -msgstr "ERROR:发生了一个地址错误。" +msgstr "ERROR:发生了一个地址错误." -#: ice:508 +#: ../../../bin/ice:615 msgid "ERROR: An unknown error has occurred." -msgstr "ERROR:发生了一个未知错误。" +msgstr "ERROR:发生了一个未知错误." -#: ice:538 +#: ../../../bin/ice:651 msgid "Welcome to Ice, a simple SSB manager." msgstr "欢迎使用 Ice,一个简洁的 SSB 管理程序" -#: ice:541 +#: ../../../bin/ice:654 msgid "Name the application" msgstr "为应用程序命名" -#: ice:544 +#: ../../../bin/ice:657 msgid "Enter web address" msgstr "输入网址" -#: ice:548 +#: ../../../bin/ice:661 msgid "Where in the menu?" msgstr "菜单中的什么位置?" -#: ice:574 +#: ../../../bin/ice:687 msgid "Select an icon" msgstr "选择一个图标" -#: ice:576 +#: ../../../bin/ice:689 msgid "Use site favicon" msgstr "使用网站的图标" -#: ice:661 +#: ../../../bin/ice:753 +msgid "" +" Create the SSB with an isolated browser profile (Note: Firefox SSB's are " +"always isolated)" +msgstr " 使用单独的浏览器配置文件创建SSB(注意:Firefox SSB始终被隔离)" + +#: ../../../bin/ice:757 +msgid "Apply" +msgstr "应用" + +#: ../../../bin/ice:782 msgid "Create" msgstr "创建" -#: ice:703 +#: ../../../bin/ice:812 ../../../bin/ice:828 msgid "Remove" msgstr "移除"