From 9d7f9d11b58838de363034e302d4f20dc03710db Mon Sep 17 00:00:00 2001 From: Thomas Whelan Date: Sat, 23 Jul 2022 10:54:38 +0100 Subject: [PATCH 1/2] Add "scroll caching" functionality, similar mark jumping in iTerm2 --- terminatorlib/config.py | 2 + terminatorlib/prefseditor.py | 2 + terminatorlib/scrollcache.py | 157 +++++++++++++++++++++++++++++++++++ terminatorlib/terminal.py | 22 +++++ 4 files changed, 183 insertions(+) create mode 100644 terminatorlib/scrollcache.py diff --git a/terminatorlib/config.py b/terminatorlib/config.py index daaa1964..85203ea4 100644 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -146,6 +146,8 @@ 'paste_selection' : '', 'toggle_scrollbar' : 's', 'search' : 'f', + 'prev_scroll' : 'Up', + 'next_scroll' : 'Down', 'page_up' : '', 'page_down' : '', 'page_up_half' : '', diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index 75f42559..2c28c34b 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -126,6 +126,8 @@ class PrefsEditor: 'paste_selection' : _('Paste primary selection'), 'toggle_scrollbar' : _('Show/Hide the scrollbar'), 'search' : _('Search terminal scrollback'), + 'prev_scroll' : _('Scroll backwards in the cache'), + 'next_scroll' : _('Scroll forwards in the cache'), 'page_up' : _('Scroll upwards one page'), 'page_down' : _('Scroll downwards one page'), 'page_up_half' : _('Scroll upwards half a page'), diff --git a/terminatorlib/scrollcache.py b/terminatorlib/scrollcache.py new file mode 100644 index 00000000..963ec74d --- /dev/null +++ b/terminatorlib/scrollcache.py @@ -0,0 +1,157 @@ +from bisect import bisect_left, bisect_right +from .util import dbg +from collections import deque + + +class ScrollCache: + """Class implementing scroll cache functionality""" + + + def __init__(self, terminal): + """Class initialiser""" + self.vte_offset = terminal.vte.get_cursor_position()[1] + self.scroll_cache = [] + self.reset(terminal) + + + def reset(self, terminal): + self.scrolling = False + self.can_restore = False + + # The scrollbar and vte desync after 'clear/reset', so need to store the offset. + self.prev_vte_offset = self.vte_offset + self.prev_scroll_cache = self.scroll_cache + + self.vte_offset = terminal.vte.get_cursor_position()[1] + self.scroll_cache = [] + + # Fullscreen programs like vim restore the terminal after exiting, try detect that. + self.prev_scrollbar_value = deque(maxlen=2) + self.prev_scrollbar_upper = deque(maxlen=2) + self.prev_scrollbar_value.append(terminal.scrollbar.get_adjustment().get_value()) + self.prev_scrollbar_upper.append(terminal.scrollbar.get_adjustment().get_upper()) + + + def scroll_restored(self, terminal): + dbg(f"{terminal.scrollbar.get_adjustment().get_value()}/{self.prev_scrollbar_value}, " + f"{terminal.scrollbar.get_adjustment().get_upper()}/{self.prev_scrollbar_upper}") + # Detecting the special case where a full screen application like vim has just returned control. + return (len(self.prev_scrollbar_upper) == 2 and len(self.prev_scrollbar_value) == 2 and + self.prev_scrollbar_value[0] == 0.0 and + self.prev_scrollbar_upper[0] == terminal.scrollbar.get_adjustment().get_page_size() and + terminal.scrollbar.get_adjustment().get_value() != 0.0 and + terminal.scrollbar.get_adjustment().get_upper() != terminal.scrollbar.get_adjustment().get_page_size() and + terminal.scrollbar.get_adjustment().get_value() - self.prev_scrollbar_value[1] <= 2 and + terminal.scrollbar.get_adjustment().get_upper() - self.prev_scrollbar_upper[1] <= 2) + + + # Calculates the scroll value accounting for any scrollback limiting + def calculate_scroll_value(self, terminal, raw_value): + return (terminal.scrollbar.get_adjustment().get_upper() - + (self.get_cursor_pos(terminal) - raw_value) - 1) + + + # Invert a scroll value to no longer account for scrollback limiting (such as those stored in the cache) + def calculate_inv_scroll_value(self, terminal, value): + return (value - terminal.scrollbar.get_adjustment().get_upper() + self.get_cursor_pos(terminal) + 1) + + + def scroll_handler(self, terminal): + # Don't try handle the scrolling we perform internally + if self.scrolling: + return + + if self.can_restore and self.scroll_restored(terminal): + self.print_cache(terminal, "Scrolling restored after reset") + self.vte_offset = self.prev_vte_offset + self.scroll_cache = self.prev_scroll_cache + elif (terminal.scrollbar.get_adjustment().get_value() == 0.0 and + terminal.scrollbar.get_adjustment().get_lower() == 0.0 and + terminal.scrollbar.get_adjustment().get_upper() == terminal.scrollbar.get_adjustment().get_page_size()): + # Try to detect if the terminal was cleared with 'clear' + dbg(f"Clear/reset detected, clearing cache") + self.reset(terminal) + self.can_restore = True + else: + self.prev_scrollbar_value.append(terminal.scrollbar.get_adjustment().get_value()) + self.prev_scrollbar_upper.append(terminal.scrollbar.get_adjustment().get_upper()) + + + # Convenience for getting 'clear/reset' safe cursor pos + def get_cursor_pos(self, terminal): + return terminal.vte.get_cursor_position()[1] - self.vte_offset + + + def clean_cache(self, terminal): + # Need to remove cached points that have been scrolled out + if terminal.config['scrollback_infinite'] != True: + while (len(self.scroll_cache) and + (self.get_cursor_pos(terminal) - terminal.vte.get_scrollback_lines()) > self.scroll_cache[0]): + dbg(f"Removing {self.scroll_cache[0]} from cache as it's after " + f"{(self.get_cursor_pos(terminal) - terminal.vte.get_scrollback_lines())}") + self.scroll_cache.pop(0) + + + def print_cache(self, terminal, when): + scrollback = "inf" if terminal.vte.get_scrollback_lines() == 9223372036854775807 else str(terminal.vte.get_scrollback_lines()) + dbg(f"{when}: scrollback: {scrollback}, " + f"current: {self.get_cursor_pos(terminal)}, " + f"raw: {terminal.vte.get_cursor_position()[1]}, " + f"offset: {self.vte_offset}, " + f"scrollbar: {terminal.scrollbar.get_adjustment().get_value():.2f}, " + f"cache: {self.scroll_cache}, " + f"can restore: {self.can_restore}") + + + def key_cache_scroll(self, terminal, offset): + self.clean_cache(terminal) + self.print_cache(terminal, "append before") + + self.can_restore = False + + scroll_pos = self.get_cursor_pos(terminal) - offset + + if len(self.scroll_cache) == 0: + self.scroll_cache.append(scroll_pos) + else: + # Find where to insert (may be out of order with fullscreen apps) + idx = bisect_left(self.scroll_cache, scroll_pos) + if idx == len(self.scroll_cache) or self.scroll_cache[idx] != scroll_pos: + self.scroll_cache.insert(idx, scroll_pos) + + self.print_cache(terminal, "append after") + + + def key_prev_scroll(self, terminal): + self.clean_cache(terminal) + self.print_cache(terminal, "up before") + + if len(self.scroll_cache) > 0: + scroll_cache_idx = bisect_left(self.scroll_cache, + self.calculate_inv_scroll_value(terminal, + terminal.scrollbar.get_adjustment().get_value())) - 1 + + if scroll_cache_idx >= 0: + self.scrolling = True + terminal.scrollbar.set_value(self.calculate_scroll_value(terminal, self.scroll_cache[scroll_cache_idx])) + self.scrolling = False + + self.print_cache(terminal, "up after") + + + def key_next_scroll(self, terminal): + self.clean_cache(terminal) + self.print_cache(terminal, "down before") + + scroll_cache_idx = bisect_right(self.scroll_cache, + self.calculate_inv_scroll_value(terminal, + terminal.scrollbar.get_adjustment().get_value())) + + self.scrolling = True + if scroll_cache_idx >= len(self.scroll_cache): + terminal.scrollbar.set_value(terminal.scrollbar.get_adjustment().get_upper()) + else: + terminal.scrollbar.set_value(self.calculate_scroll_value(terminal, self.scroll_cache[scroll_cache_idx])) + self.scrolling = False + + self.print_cache(terminal, "down after") \ No newline at end of file diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 101f609c..8b23e9f2 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -25,6 +25,7 @@ from .terminal_popup_menu import TerminalPopupMenu from .prefseditor import PrefsEditor from .searchbar import Searchbar +from .scrollcache import ScrollCache from .translation import _ from .signalman import Signalman from . import plugin @@ -165,6 +166,10 @@ def __init__(self): self.searchbar = Searchbar() self.searchbar.connect('end-search', self.on_search_done) + self.scrollcache = ScrollCache(self) + self.scrollbar.connect('value-changed', self.on_scroll) + self.vte.connect('commit', self.on_commit) + self.show() if self.config['title_at_bottom']: self.pack_start(self.terminalbox, True, True, 0) @@ -1037,6 +1042,17 @@ def on_mousewheel(self, widget, event): return True return False + def on_scroll(self, range): + self.scrollcache.scroll_handler(self) + + def on_commit(self, terminal, text, size): + if size == 1 and text == '\r': + for i in range(0, self.vte.get_row_count()): + prompt = self.vte.get_text_range(self.vte.get_cursor_position()[1] - i, 0, + self.vte.get_cursor_position()[1] - i, self.vte.get_column_count()) + if "$\xad" in prompt[0]: + self.scrollcache.key_cache_scroll(self, i) + def popup_menu(self, widget, event=None): """Display the context menu""" window = self.get_toplevel() @@ -2042,6 +2058,12 @@ def key_edit_terminal_title(self): def key_layout_launcher(self): LAYOUTLAUNCHER=LayoutLauncher() + def key_prev_scroll(self): + self.scrollcache.key_prev_scroll(self) + + def key_next_scroll(self): + self.scrollcache.key_next_scroll(self) + def key_page_up(self): self.scroll_by_page(-1) From e4fddb7e13611843e3d691ab4a2ba1ecaa0b6db9 Mon Sep 17 00:00:00 2001 From: Thomas Whelan Date: Thu, 28 Jul 2022 22:43:40 +0100 Subject: [PATCH 2/2] Add checkbox configuration variable --- doc/terminator.1 | 6 + doc/terminator_config.5 | 4 + po/af.po | 240 +++++++++++++++--------------- po/ar.po | 245 ++++++++++++++++--------------- po/ast.po | 240 +++++++++++++++--------------- po/az.po | 240 +++++++++++++++--------------- po/be.po | 246 ++++++++++++++++--------------- po/bg.po | 245 ++++++++++++++++--------------- po/bn.po | 240 +++++++++++++++--------------- po/bs.po | 249 ++++++++++++++++--------------- po/ca.po | 245 ++++++++++++++++--------------- po/ca@valencia.po | 240 +++++++++++++++--------------- po/ckb.po | 240 +++++++++++++++--------------- po/cs.po | 245 ++++++++++++++++--------------- po/da.po | 245 ++++++++++++++++--------------- po/de.po | 245 ++++++++++++++++--------------- po/el.po | 240 +++++++++++++++--------------- po/en_AU.po | 240 +++++++++++++++--------------- po/en_CA.po | 240 +++++++++++++++--------------- po/en_GB.po | 245 ++++++++++++++++--------------- po/eo.po | 240 +++++++++++++++--------------- po/es.po | 245 ++++++++++++++++--------------- po/et.po | 240 +++++++++++++++--------------- po/eu.po | 245 ++++++++++++++++--------------- po/fa.po | 240 +++++++++++++++--------------- po/fi.po | 240 +++++++++++++++--------------- po/fo.po | 240 +++++++++++++++--------------- po/fr.po | 245 ++++++++++++++++--------------- po/fy.po | 240 +++++++++++++++--------------- po/ga.po | 240 +++++++++++++++--------------- po/gl.po | 240 +++++++++++++++--------------- po/he.po | 245 ++++++++++++++++--------------- po/hi.po | 240 +++++++++++++++--------------- po/hr.po | 249 ++++++++++++++++--------------- po/hu.po | 240 +++++++++++++++--------------- po/hy.po | 240 +++++++++++++++--------------- po/ia.po | 240 +++++++++++++++--------------- po/id.po | 245 ++++++++++++++++--------------- po/is.po | 240 +++++++++++++++--------------- po/it.po | 245 ++++++++++++++++--------------- po/ja.po | 245 ++++++++++++++++--------------- po/jv.po | 240 +++++++++++++++--------------- po/ka.po | 240 +++++++++++++++--------------- po/kk.po | 240 +++++++++++++++--------------- po/ko.po | 245 ++++++++++++++++--------------- po/ku.po | 240 +++++++++++++++--------------- po/la.po | 240 +++++++++++++++--------------- po/lt.po | 240 +++++++++++++++--------------- po/lv.po | 240 +++++++++++++++--------------- po/mk.po | 240 +++++++++++++++--------------- po/ml.po | 240 +++++++++++++++--------------- po/mr.po | 240 +++++++++++++++--------------- po/ms.po | 245 ++++++++++++++++--------------- po/nb.po | 245 ++++++++++++++++--------------- po/nl.po | 245 ++++++++++++++++--------------- po/nn.po | 240 +++++++++++++++--------------- po/oc.po | 240 +++++++++++++++--------------- po/pl.po | 251 +++++++++++++++++--------------- po/pt.po | 245 ++++++++++++++++--------------- po/pt_BR.po | 245 ++++++++++++++++--------------- po/ro.po | 240 +++++++++++++++--------------- po/ru.po | 251 +++++++++++++++++--------------- po/ru_RU.po | 246 ++++++++++++++++--------------- po/si.po | 240 +++++++++++++++--------------- po/sk.po | 245 ++++++++++++++++--------------- po/sl.po | 244 ++++++++++++++++--------------- po/sq.po | 240 +++++++++++++++--------------- po/sr.po | 244 ++++++++++++++++--------------- po/su.po | 240 +++++++++++++++--------------- po/sv.po | 245 ++++++++++++++++--------------- po/sw.po | 240 +++++++++++++++--------------- po/ta.po | 240 +++++++++++++++--------------- po/te.po | 240 +++++++++++++++--------------- po/terminator.pot | 240 +++++++++++++++--------------- po/th.po | 240 +++++++++++++++--------------- po/tr.po | 240 +++++++++++++++--------------- po/tyv.po | 240 +++++++++++++++--------------- po/ug.po | 240 +++++++++++++++--------------- po/uk.po | 245 ++++++++++++++++--------------- po/ur.po | 240 +++++++++++++++--------------- po/vi.po | 240 +++++++++++++++--------------- po/wa.po | 240 +++++++++++++++--------------- po/zh_CN.po | 245 ++++++++++++++++--------------- po/zh_HK.po | 240 +++++++++++++++--------------- po/zh_TW.po | 245 ++++++++++++++++--------------- terminatorlib/config.py | 1 + terminatorlib/preferences.glade | 27 +++- terminatorlib/prefseditor.py | 8 + terminatorlib/terminal.py | 22 +-- 89 files changed, 10648 insertions(+), 9525 deletions(-) diff --git a/doc/terminator.1 b/doc/terminator.1 index 5d27afaa..2b2c8f9d 100644 --- a/doc/terminator.1 +++ b/doc/terminator.1 @@ -237,6 +237,12 @@ Insert terminal number, i.e. 1 to 12. .TP .B Super+0 Insert padded terminal number, i.e. 01 to 12. +.TP +.B Ctrl+Up +Scroll back up one item in the cache. +.TP +.B Ctrl+Down +Scroll back down one item in the cache. .SS Grouping & Broadcasting .PP The following items relate to helping to focus on a specific terminal. diff --git a/doc/terminator_config.5 b/doc/terminator_config.5 index 8a9b2b4e..afe14c0a 100644 --- a/doc/terminator_config.5 +++ b/doc/terminator_config.5 @@ -454,6 +454,10 @@ Default value: \fBTrue\fR If true, whenever there's new output the terminal will scroll to the bottom. Default value: \fBFalse\fR .TP +.B scroll_cache \fR(boolean) +If true, whenever return is pressed to run a command, remember the scroll location to jump back to later. +Default value: \fBFalse\fR +.TP .B scrollback_lines Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that don't fit in the scrollback are discarded. Warning: with large values, rewrapping on resize might be slow. Default value: \fB500\fR diff --git a/po/af.po b/po/af.po index 7bcd6f3f..f298ad49 100644 --- a/po/af.po +++ b/po/af.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Afrikaans (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Veelvuldige terminale in een venster" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiele" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Voeg terminaalnommer in" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Voeg aangevulde terminaalnommer in" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nuwe profiel" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nuwe uitleg" @@ -1553,85 +1565,85 @@ msgstr "Vertoon rol_staaf" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Verwyder groep %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roepeer alle in dié oortjie" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Verwyder alle groepe" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Sluit groep %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Geen shell gevind nie" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kan shell nie start nie" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ar.po b/po/ar.po index 3f542bac..5a70ad15 100644 --- a/po/ar.po +++ b/po/ar.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Arabic (https://www.transifex.com/terminator/teams/109338/" @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "المتطرف" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "العديد من الطرفيات في نافذة واحدة" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -231,7 +231,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -398,7 +398,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -986,22 +986,26 @@ msgid "Scroll on _keystroke" msgstr "لف عند _نقر مفتاح" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "رجوع العجلة للوراء بدون جد معين" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "ا_لف إلى الوراء:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "سطور" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "التمرير" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1013,104 +1017,104 @@ msgstr "" "الخيارات موجودة فقط لتجعلك تتخطّى عددا من التطبيقات و أنظمة التشغيل التي " "تتوقّع سلوكا مختلفا من الطرفيّة." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_زر Backspace يولد:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_زر DELETE يولد:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_أعد ضبط خيارات التوافق لقيمها الافتراضية" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "التوافق" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "ملفات المستخدمين" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "المخططات" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "ارتباطات المفاتيح" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "هذه الإضافة ليس لها خيارات ضبط" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "الإضافات" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1124,18 +1128,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1232,234 +1236,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "إدراج رقم منفذ" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "ادخال رقم الطرفية المضمن" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "ملف شخصي جديد" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "مظهر جديد" @@ -1556,85 +1568,85 @@ msgstr "إظهار_شريط تمرير" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "حذف المجموعة %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "تجمي_ع كل التبويبات" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "حذف كل المجموعات" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "إغلاق المجموعة %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "تعثر العثور على قشرة" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "لا يمكن تمكين الهيكل" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "أعد تسمية النافذة" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "ضع عنواناً جديداً لنافذة المنهي...." @@ -1752,6 +1764,9 @@ msgstr "" msgid "Tab %d" msgstr "تبويب %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "رجوع العجلة للوراء بدون جد معين" + #~ msgid "Current Locale" #~ msgstr "اللغه الحاليه" diff --git a/po/ast.po b/po/ast.po index 5bcdcdb5..0f4f93cf 100644 --- a/po/ast.po +++ b/po/ast.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Asturian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Delles terminales nuna ventana" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -400,7 +400,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -988,22 +988,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1011,104 +1015,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfiles" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1122,18 +1126,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1230,234 +1234,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Escribi'l númberu de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Escribi'l númberu de terminal separtáu" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Perfil nuevu" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Aspeutu nuevu" @@ -1554,85 +1566,85 @@ msgstr "Amosar barra de de_splazamientu" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Desaniciar el grupu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ag_rupar too en llingüeta" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Desaniciar tolos grupos" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zarrar el grupu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nun se pue alcontrar una shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nun se pue aniciar la shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/az.po b/po/az.po index e3a3a2f6..ff948155 100644 --- a/po/az.po +++ b/po/az.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Azerbaijani (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Çoxsaylı terminallar bir pəncərədə" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1553,85 +1565,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/be.po b/po/be.po index afdd2241..e319042f 100644 --- a/po/be.po +++ b/po/be.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Belarusian (https://www.transifex.com/terminator/teams/109338/" @@ -20,9 +20,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -126,7 +126,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Тэрмінатар" @@ -135,7 +135,7 @@ msgid "Multiple terminals in one window" msgstr "Некалькі тэрміналаў у акне" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -232,7 +232,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1553,85 +1565,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/bg.po b/po/bg.po index 1962f919..80ac5841 100644 --- a/po/bg.po +++ b/po/bg.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Dimitar Dikov , 2021\n" "Language-Team: Bulgarian (https://www.transifex.com/terminator/teams/109338/" @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Терминатор" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "Множество терминали в един прозорец" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -231,7 +231,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -404,7 +404,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -992,22 +992,26 @@ msgid "Scroll on _keystroke" msgstr "Придвижване при _натискане на клавиш" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Безкрайно придвижване назад" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Придвижване _назад:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "редове" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Придвижване" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1019,104 +1023,104 @@ msgstr "" "Те са тук, само за да ви позволят да работите с някои програми и операционни " "системи, които очакват различно поведение на терминала." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Клавишът „Backspace“ генерира:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Клавишът „Delete“ _генерира:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Връщане настройките за съвместимост към стандартните" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Съвместимост" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профили" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Подредби" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Клавишни комбинации" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Тази приставка няма опции за конфигуриране" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Приставки" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1130,18 +1134,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1238,234 +1242,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Нов потребителски профил" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Нова подредба" @@ -1562,85 +1574,85 @@ msgstr "Показване на лентата за придвижване" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Премахване на група %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Премахване на всички групи" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Затваряне на група %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Не е намерен Шел" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Неуспешно стартиране на обвивката на командния ред" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Преименуване на прозорец" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Въведете ново заглавие за прозореца на Terminator..." @@ -1758,6 +1770,9 @@ msgstr "" msgid "Tab %d" msgstr "Подпрозорец %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Безкрайно придвижване назад" + #~ msgid "Current Locale" #~ msgstr "Текуща локализация" diff --git a/po/bn.po b/po/bn.po index 0d539515..1aaa7741 100644 --- a/po/bn.po +++ b/po/bn.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Bengali (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "টার্মিনেটর" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "এক উইন্ডোতে একাধিক টার্মিনাল" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "প্রোফাইলমসূহ" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "টার্মিনালের সংখ্যাটি লিখুন" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "নতুন প্রোফাইল" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "নতুন লে-আউট" @@ -1551,85 +1563,85 @@ msgstr "স্ক্রলবার দেখাও" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "%s গ্রুপটি অপসারণ কর" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "ট্যাবে সবগুলো _গ্রুপ কর" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "সকল গ্রুপ অপসারণ কর" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "%s গ্রুপটি বন্ধ কর" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/bs.po b/po/bs.po index 34192dc6..ad0d666b 100644 --- a/po/bs.po +++ b/po/bs.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Marko Dzidic , 2020\n" "Language-Team: Bosnian (https://www.transifex.com/terminator/teams/109338/" @@ -21,8 +21,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Više terminala u jednom prozoru" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robotizirana budućnost terminala" @@ -242,7 +242,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminatorov \"Aktivator rasporeda\"" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Raspored" @@ -410,7 +410,7 @@ msgid "Enabled" msgstr "Omogućeno" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Naziv" @@ -998,22 +998,26 @@ msgid "Scroll on _keystroke" msgstr "Pomiči na pritisak tipke" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Beskonačno pomicanje" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Zadržavanje:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linija" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Pomicanje" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1024,104 +1028,104 @@ msgstr "" "programima. Ovdje su samo kao prelazno rješenje za određene aplikacije i " "operativne sisteme u kojima se očekuje drugačiji rad terminala." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr " tipka generiše:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr " tipka generiše:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "Vrati na zadane postavke kompatibilnosti" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilnost" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Fokusirano" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Neaktivno" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Primanje" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Sakrij veličinu u naslovu" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "Koristi sistemski font" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Odabir fonta naslovne trake" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profili" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Tip" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Korisnička komanda:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Radni direktorij:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Rasporedi" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Akcija" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Kombinacija tastera" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Prečice na tastaturi" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Dodatak" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Ovaj dodatak nema konfiguracijske opcije" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Dodaci" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1145,18 +1149,18 @@ msgstr "" "korisnike. Ukoliko imate neki prijedlog, molimo Vas da popunite listu želja! " "(provjerite Razvoj na lijevoj strani)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Uputstvo" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "O programu" @@ -1253,234 +1257,242 @@ msgid "Search terminal scrollback" msgstr "Pretraga sadržaja terminala" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Pomakni na gore jednu stranicu" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Pomakni na dole jednu stranicu" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Pomakni na gore pola stranice" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Pomakni na dole pola stranice" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Pomakni na gore jednu liniju" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Pomakni na dole jednu liniju" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Zatvori prozor" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Promijeni veličinu terminala na gore" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Promijeni veličinu terminala na dole" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Promijeni veličinu terminala na lijevo" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Promijeni veličinu terminala na desno" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Premjesti karticu na desno" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Premjesti karticu na lijevo" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maksimiziraj terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zumiraj terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Prebaci na sljedeću karticu" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Prebaci na prethodnu karticu" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Prebaci na 1-vu karticu" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Prebaci na 2-gu karticu" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Prebaci na 3-ću karticu" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Prebaci na 4-tu karticu" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Prebaci na 5-tu karticu" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Prebaci na 6-tu karticu" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Prebaci na 7-mu karticu" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Prebaci na 8-mu karticu" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Prebaci na 9-tu karticu" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Prebaci na 10-tu karticu" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Uključi/isključi prikaz preko cijelog ekrana" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Vrati na zadane postavke terminala" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Vrati na zadano i očisti terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Uključi/isključi vidljivost prozora" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Grupiši sve terminale" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Grupiši/razgrupiši sve terminale" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Razgrupiši sve terminale" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Grupiši terminale u kartici" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Grupiši/razgrupiši terminale u kartici" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Razgrupiši terminale u kartici" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Kreiraj novi prozor" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Izvrši umnožavanje novog Terminator procesa" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Forsiraj \"Bez emitovanja\"" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Forsiraj emitovanje na grupu" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Emituj prema svima" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Umetni broj terminala" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Umetni formatiran broj terminala" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Uredi naslov prozora" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Uredi naslov terminala" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Uredi naslov kartice" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Otvori prozor \"Aktivator rasporeda\"" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Prebaci na sljedeći profil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Prebaci na prethodni profil" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Otvori uputstvo" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Novi profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Novi raspored" @@ -1577,85 +1589,85 @@ msgstr "Prikaži pomičnu traku" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Nova grupa..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "Bez grupe" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Ukloni grupu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Grupiši sve u kartici" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Razgrupiši sve u kartici" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Ukloni sve grupe" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zatvori grupu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Emitovanje svima" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Emitovanje grupi" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Emitovanje ugašeno" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Podijeli na ovu grupu" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Automatsko čišćenje grupa" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "Dodaj broj terminala" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Dodaj formatiran broj terminala" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Lociranje Shell-a neuspješno" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Pokretanje Shell-a neuspješno:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Promijeni naslov prozora" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Unesite novi naslov za Terminator prozor..." @@ -1773,6 +1785,9 @@ msgstr "" msgid "Tab %d" msgstr "Tab %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Beskonačno pomicanje" + #~ msgid "Current Locale" #~ msgstr "Trenutne regionalne postavke" diff --git a/po/ca.po b/po/ca.po index 54973307..ee005320 100644 --- a/po/ca.po +++ b/po/ca.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Catalan (https://www.transifex.com/terminator/teams/109338/" @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Diversos terminals en una finestra" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "El futur robot de terminals" @@ -238,7 +238,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -413,7 +413,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -1002,22 +1002,26 @@ msgid "Scroll on _keystroke" msgstr "Desplaçament en _prémer una tecla" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Desplaçament cap enrere infinit" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Desplaçament cap _enrere:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "línies" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Desplaçament" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1029,104 +1033,104 @@ msgstr "" "certes aplicacions i sistemes operatius que esperen un comportament diferent " "del terminal." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "La tecla de _retrocés genera:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "La tecla de _suprimir genera:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Reinicia les opcions de compatibilitat a les Opcions per Defecte" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilitat" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfils" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Plantilles" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Assignacions de tecles" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Aquest plugin no te opcions de configuració" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Connectors" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1140,18 +1144,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1248,234 +1252,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insereix el número del terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insereix un número de terminal amb coixinet" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nou perfil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Disposició nova" @@ -1572,85 +1584,85 @@ msgstr "Mostra la barra de de_splaçament" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Suprimeix el grup %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "A_grupa-ho tot en la pestanya" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Suprimeix tots els grups" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Tanca el grup %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "No s'ha pogut trobar cap intèrpret d'ordres" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "No s'ha pogut iniciar l'intèrpret d'ordres:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Reanomenar finestra" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Introdueix un títol nou per a la finestra del Terminator" @@ -1768,6 +1780,9 @@ msgstr "" msgid "Tab %d" msgstr "Pestanya %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Desplaçament cap enrere infinit" + #~ msgid "Current Locale" #~ msgstr "Localització actual" diff --git a/po/ca@valencia.po b/po/ca@valencia.po index bd8d1a27..4a1160c8 100644 --- a/po/ca@valencia.po +++ b/po/ca@valencia.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Catalan (Valencian) (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Diversos terminals en una finestra" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -401,7 +401,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -989,22 +989,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1012,104 +1016,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfils" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1123,18 +1127,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1231,234 +1235,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insereix el número del terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insereix un número de terminal amb coixinet" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nou perfil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Disposició nova" @@ -1555,85 +1567,85 @@ msgstr "Mostra la barra de de_splaçament" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Suprimeix el grup %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "A_grupa-ho tot en la pestanya" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Suprimeix tots els grups" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Tanca el grup %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "No s'ha pogut trobar cap intèrpret d'ordes" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "No s'ha pogut iniciar l'intèrpret d'ordes:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ckb.po b/po/ckb.po index 99341957..fe89f7e5 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Central Kurdish (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/cs.po b/po/cs.po index 518ecabd..1e723444 100644 --- a/po/cs.po +++ b/po/cs.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Czech (https://www.transifex.com/terminator/teams/109338/" @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminátor" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Vícero terminálů v jednom okně" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robotická budoucnost terminálů" @@ -244,7 +244,7 @@ msgid "Terminator Layout Launcher" msgstr "Spouštěč uspořádání v Terminátor" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Uspořádání" @@ -415,7 +415,7 @@ msgid "Enabled" msgstr "Zapnuto" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Název" @@ -1003,22 +1003,26 @@ msgid "Scroll on _keystroke" msgstr "Posouvat při stisku _klávesy" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Pamatovat si vše zpět" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Pamatovat si:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "řádků" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Posouvání" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1030,104 +1034,104 @@ msgstr "" "některé aplikace a operační systémy očekávají jiné chování terminálu." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Klávesa _Backspace vytváří:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Klávesa _Delete vytváří:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "V_rátit nastavení kompatibility na výchozí" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilita" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Zaměřeno" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Nečinné" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Přijímající" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Nezobrazovat v titulku velikost" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "Po_užít systémové písmo" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Zvolte písmo pro titulní lištu" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profily" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Typ" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Uživatelský příkaz:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Pracovní adresář:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Rozvržení" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Akce" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Klávesová zkratka" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Klávesové zkratky" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Zásuvný modul" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Tento zásuvný modul nemá žádné volby pro nastavení" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Zásuvné moduly" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1150,18 +1154,18 @@ msgstr "" "směrech o funkce užitečné pro správce systémů a další uživatele. Pokud máte " "nějaké návrhy, nahlaste nám je! (viz vlevo odkaz Vývoj)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Příručka" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "O aplikaci" @@ -1258,234 +1262,242 @@ msgid "Search terminal scrollback" msgstr "Hledat v historii terminálu" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Odrolovat o jednu stránku nahoru" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Odrolovat o jednu stránku dolů" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Odrolovat o půl stránky nahoru" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Odrolovat o půl stránky dolů" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Odrolovat o řádek nahoru" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Odrolovat o řádek dolů" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Zavřít okno" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Změnit velikost terminálu dolů" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Změnit velikost terminálu nahoru" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Změnit velikost terminálu doleva" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Změnit velikost terminálu doprava" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Přesunout panel doprava" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Přesunout panel doleva" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximalizovat terminál" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Změnit velikost terminálu" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Přepnout na následující panel" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Přepnout na předchozí panel" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Přepnout na první panel" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Přepnout na druhý panel" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Přepnout na třetí panel" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Přepnout na čtvrtý panel" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Přepnout na pátý panel" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Přepnout na šestý panel" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Přepnout na sedmý panel" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Přepnout na osmý panel" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Přepnout na devátý panel" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Přepnout na desátý panel" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Zapnout/vypnout zobrazení na celou obrazovku" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Resetovat terminál" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Resetovat a vyčistit terminál" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Zobrazit/skrýt okno" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Seskupit všechny terminály" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Seskupit / zrušit seskupení všech terminálů" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Zrušit seskupení všech terminálů" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Seskupit terminály v panelu" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Seskupit / zrušit seskupení terminálů v panelu" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Zrušit seskupení terminálů v panelu" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Vytvořit nové okno" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Vytvořit nový proces Terminátor" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Nevysílat stisky kláves do více terminálů" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Vysílat stisky kláves do skupiny" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Vysílat stisky kláves všem" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Zadejte číslo terminálu" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Zadejte celé číslo terminálu" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Upravit titulek okna" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Upravit titulek terminálu" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Upravit titulek panelu" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Otevřít okno spuštěče rozvržení" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Přepnout na následující profil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Přepnout na předchozí profil" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Otevřít příručku" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nový profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nové rozvržení" @@ -1582,85 +1594,85 @@ msgstr "Zobrazit po_suvník" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "_Nová skupina…" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Nic" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Odstranit skupinu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Seskupit všechny v panelech" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Zr_ušit seskupení v panelu" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Odstranit všechny skupiny" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zavřít skupinu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Vysíl_at vše" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "_Skupina pro vysílání" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Vysílání vypnut_o" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Rozdělit do této _skupiny" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Automati_cky čistit skupiny" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "Zadejte číslo term_inálu" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Zadejte celé číslo terminálu" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nedaří se najít shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nedaří se spustit příkazový řádek:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Přejmenovat okno" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Zadejte nový název pro okno s Terminátor…" @@ -1778,6 +1790,9 @@ msgstr "" msgid "Tab %d" msgstr "Panel %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Pamatovat si vše zpět" + #~ msgid "Current Locale" #~ msgstr "Stávající místní a jazyková nastavení" diff --git a/po/da.po b/po/da.po index 80219f15..e2dd9323 100644 --- a/po/da.po +++ b/po/da.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Danish (https://www.transifex.com/terminator/teams/109338/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Flere terminaler i et vindue" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Fremtiden for robotterminaler" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator Layout Launcher" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Udseende" @@ -404,7 +404,7 @@ msgid "Enabled" msgstr "Aktiveret" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Navn" @@ -992,22 +992,26 @@ msgid "Scroll on _keystroke" msgstr "Rul ned ved _tastetryk" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Uendelig tilbagerulning" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Til_bagerulning:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linjer" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Rulning" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1020,104 +1024,104 @@ msgstr "" "programmer og styresystemer, som forventer anderledes terminalopførsel." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Backspace-tast genererer:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Delete-tast genererer:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Nulstil kompatibilitetsindstillinger til standardværdier" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilitet" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Fokuseret" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inaktiv" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Modtagene" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Skjul størrelse fra titel" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Brug systemskrittypen" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Vælg en titellinje skrifttype" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiler" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Type" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Tilpasset kommando:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Arbejdsmappe:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Layouts" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Handling" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Genvejstast" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Genvejstaster" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Udvidelsesmodul" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Dette udvidelsesmodul har ingen konfigurationsmuligheder" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1143,18 +1147,18 @@ msgstr "" "Hvis du har nogen forslag, så indgiv gerne ønskeliste fejl! (se til venstre " "for Udvikler link)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Manualen" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Om" @@ -1251,234 +1255,242 @@ msgid "Search terminal scrollback" msgstr "Søg i terminal tilbagerulning" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Rul en side opad" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Rul en side nedad" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Rul en halv side opad" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Rul en halv side nedad" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Rul én linje opad" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Rul én linje nedad" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Luk vindue" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Ændr størrelsen på terminalen opad" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Ændr størrelsen på terminalen nedad" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Ændr størrelsen på terminalen mod venstre" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Ændr størrelsen på terminalen mod højre" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Flyt fanebladet til højre" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Flyt fanebladet til venstre" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maksimér terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zoom terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Skfit til næste faneblad" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Skift til forrige faneblad" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Skift til første faneblad" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Skift til andet faneblad" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Skift til tredje faneblad" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Skift til fjerde faneblad" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Skift til femte faneblad" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Skift til sjette faneblad" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Skift til syvende faneblad" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Skift til ottende faneblad" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Skift til niende faneblad" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Skift til tiende faneblad" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Skift fuldskærm (til/fra)" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Nulstil terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Nulstil og ryd terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Skift vinduessynlighed" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Gruppér alle terminaler" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Gruppér/opdel alle terminaler" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Opdel alle terminaler" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Gruppér terminaler i faneblad" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Gruppér/opdel terminaler i faneblad" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Opdel terminaler i faneblad" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Opret et nyt vindue" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Skab ny Terminator proces" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Udsend ikke tastetryk" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Udsend tastetryk til gruppe" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Udsend tastetryk til alle" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Indsæt terminalnummer" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Indsæt forøget terminalnummer" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Redigér vinduestitel" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Redigér terminaltitel" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Redigér fanebladstitel" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Åbn layout kørselsvindue" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Skift til næste profil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Skift til forrige profil" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Åbn manualen" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Ny profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nyt layout" @@ -1575,85 +1587,85 @@ msgstr "Vis _rullebjælke" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_y gruppe" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Ingen" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Fjern gruppen %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_ruppér alle i fane" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Opde_l alle i faneblad" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Fjern alle grupper" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Luk gruppen %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Udsend _alle" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Udsend _gruppe" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Udsend _off" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "O_pdel til denne gruppe" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Autoop_ryd grupper" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Indsæt terminalnummer" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Indsæt forøget terminalnummer" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Kan ikke finde en kommandofortolker" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kan ikke starte skal:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Omdøb vindue" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Indtast en ny titel for Terminator vinduet..." @@ -1771,6 +1783,9 @@ msgstr "" msgid "Tab %d" msgstr "Faneblad %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Uendelig tilbagerulning" + #~ msgid "Current Locale" #~ msgstr "Nuværende regionaldata" diff --git a/po/de.po b/po/de.po index 72dacb06..f1cdf16c 100644 --- a/po/de.po +++ b/po/de.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Constantin Kraft , 2021\n" "Language-Team: German (https://www.transifex.com/terminator/teams/109338/" @@ -131,7 +131,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -140,7 +140,7 @@ msgid "Multiple terminals in one window" msgstr "Mehrere Terminals in einem Fenster" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Die Roboterzukunft der Terminals" @@ -253,7 +253,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator-Anordnungsstarter" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Anordnung" @@ -429,7 +429,7 @@ msgid "Enabled" msgstr "Aktiviert" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Name" @@ -1017,22 +1017,26 @@ msgid "Scroll on _keystroke" msgstr "_Bildlauf bei Tastendruck" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Unbegrenzter Verlauf" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Verlauf:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "Zeilen" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Bildlauf" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1044,104 +1048,104 @@ msgstr "" "Verfügung, um problematische Anwendungen oder Betriebssysteme zu umgehen, " "die ein anderes Terminal-Verhalten erwarten." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Rücktaste erzeugt:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Entfernen-Taste erzeugt:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Kompatibilitätseinstellungen auf Standardwerte zurücksetzen" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilität" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Fokussiert" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inaktiv" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Empfangen" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Größe im Titel verstecken" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Systemschriftart verwenden" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Schriftart für die Titelleiste auswählen" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profile" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Art" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Benutzerdefinierter Befehl:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Arbeitsverzeichnis:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Anordnungen" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Aktion" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Tastenbelegung" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Tastenbelegungen" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Zusatzmodul" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Dieses Zusatzmodul hat keine Konfigurationsoptionen" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Zusatzmodule" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1160,11 +1164,11 @@ msgstr "" "Terminals in Gittern (Tabs sind die meist verbreitete Methode, die " "Terminator ebenfalls unterstützt." -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Das Handbuch" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1174,7 +1178,7 @@ msgstr "" "Bugs/" "Verbesserungen" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Über" @@ -1271,234 +1275,242 @@ msgid "Search terminal scrollback" msgstr "Terminal-Verlauf durchsuchen" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Eine Seite nach oben scrollen" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Eine Seite nach unten scrollen" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Eine halbe Seite nach oben scrollen" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Eine halbe Seite nach unten scrollen" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Eine Zeile nach oben scrollen" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Eine Zeile nach unten scrollen" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Fenster schließen" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Größe des Terminals nach oben ändern" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Größe Terminals nach unten ändern" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Größe des Terminals nach links ändern" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Größe des Terminals nach rechts ändern" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Reiter nach rechts bewegen" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Reiter nach links bewegen" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Terminal maximieren" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Terminal vergrößern" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Zum nächsten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Zum vorherigen Reiter wechseln" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Zum ersten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Zum zweiten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Zum dritten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Zum vierten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Zum fünften Reiter wechseln" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Zum sechsten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Zum siebten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Zum achten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Zum neunten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Zum zehnten Reiter wechseln" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Vollbild an/aus" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Terminal zurücksetzen" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Terminal zurücksetzen und leeren" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Sichtbarkeit des Fensters umschalten" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Neue Gruppe erstellen" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Alle Terminals gruppieren" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Alle Terminals gruppieren ein/aus" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Alle Terminals trennen" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Terminals im Reiter gruppieren" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Terminals im Reiter gruppieren/trennen" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Terminals im Reiter trennen" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Neues Fenster erstellen" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Neuen Terminator-Prozess starten" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Tastenanschläge nicht senden" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Tastenanschläge an Gruppe senden" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Tastaturereignisse an alle senden" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Terminal-Nummer einfügen" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Terminal-Nummer einfügen (auffüllen)" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Fenstertitel bearbeiten" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Terminaltitel bearbeiten" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Reitertitel bearbeiten" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Anordnungsstarterfenster öffnen" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Zum nächsten Profil wechseln" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Zum vorherigen Profil wechseln" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Einstellungs-Fenster öffnen" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Handbuch öffnen" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Neues Profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Neue Anordnung" @@ -1595,85 +1607,85 @@ msgstr "_Bildlaufleiste anzeigen" msgid "_Layouts..." msgstr "_Anordnungen …" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Neue Gruppe …" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Keine" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Gruppe %s entfernen" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Alle im Reiter gruppieren" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Gruppe im Reiter auflösen" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Alle Gruppen entfernen" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Gruppe %s schließen" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "_Alles senden" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "_Gruppe senden" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "_Senden aus" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_In diese Gruppe teilen" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Gruppen automatisch aufräumen" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Terminal-Nummer einfügen" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "_Terminal-Nummer einfügen (auffüllen)" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Es konnte keine Shell gefunden werden" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Shell kann nicht gestartet werden:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Fenster umbenennen" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Neuen Titel für das Terminator-Fenster eingeben …" @@ -1791,6 +1803,9 @@ msgstr "" msgid "Tab %d" msgstr "Reiter %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Unbegrenzter Verlauf" + #~ msgid "Current Locale" #~ msgstr "Derzeitiger Einstellungssatz" diff --git a/po/el.po b/po/el.po index 703a443e..3dce25b1 100644 --- a/po/el.po +++ b/po/el.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Greek (https://www.transifex.com/terminator/teams/109338/" @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Πολλαπλά τερματικά σε ένα παράθυρο" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Διάταξη" @@ -408,7 +408,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Όνομα" @@ -996,22 +996,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1019,104 +1023,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Συμβατότητα" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Γίνεται λήψη" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Προφίλ" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Συνδυασμοί πλήκτρων" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Το πρόσθετο δεν έχει επιλογές παραμετροποίησης" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Πρόσθετα" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1130,18 +1134,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1238,234 +1242,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Εισάγετε τον αριθμό τερματικού" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Εισαγωγή επενδυμένη αριθμό τερματικού" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Νέο Προφίλ" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Νέα Διάταξη" @@ -1562,85 +1574,85 @@ msgstr "Εμφάνισε _την μπάρα κύλισης" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Διαγραφή της ομάδας %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ομάδα όλα στην καρτέλα" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Διαγραφή όλων των ομάδων" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Κλείσιμο της ομάδας %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Αδυναμία εξεύρεσης περιβάλλοντος" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Αδύνατη η εκκίνηση κελύφους:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Μετονομασία παραθύρου" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Πληκτρολόγηση νέου τίτλου για το παράθυρο του Terminator..." diff --git a/po/en_AU.po b/po/en_AU.po index 9185ea96..4f3c8b82 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: English (Australia) (https://www.transifex.com/terminator/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Multiple terminals in one window" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "The robot future of terminals" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator Layout Launcher" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Layout" @@ -404,7 +404,7 @@ msgid "Enabled" msgstr "Enabled" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Name" @@ -992,22 +992,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1015,104 +1019,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Focused" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Receiving" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiles" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1126,18 +1130,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1234,234 +1238,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insert terminal number" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insert padded terminal number" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "New Profile" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "New Layout" @@ -1558,85 +1570,85 @@ msgstr "Show _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Remove group %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roup all in tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Remove all groups" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Close group %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Unable to find a shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Unable to start shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index d1d145a0..98afcf1e 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: English (Canada) (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Multiple terminals in one window" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiles" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insert terminal number" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insert padded terminal number" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "New Profile" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "New Layout" @@ -1553,85 +1565,85 @@ msgstr "Show _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Remove group %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roup all in tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Remove all groups" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Close group %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Unable to find a shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Unable to start shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index f5eb3578..f605ce65 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Multiple terminals in one window" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "The robot future of terminals" @@ -239,7 +239,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator Layout Launcher" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Layout" @@ -408,7 +408,7 @@ msgid "Enabled" msgstr "Enabled" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Name" @@ -996,22 +996,26 @@ msgid "Scroll on _keystroke" msgstr "Scroll on _keystroke" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Infinite Scrollback" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Scroll_back:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "lines" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Scrolling" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1023,104 +1027,104 @@ msgstr "" "applications and operating systems that expect different terminal behaviour." "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Backspace key generates:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Delete key generates:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Reset Compatibility Options to Defaults" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibility" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Focused" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inactive" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Receiving" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Hide size from title" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Use the system font" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Choose A Titlebar Font" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiles" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Type" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profile:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Custom command:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Working directory:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Layouts" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Action" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Keybinding" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Keybindings" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Plugin" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "This plug-in has no configuration options" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plug-ins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1144,18 +1148,18 @@ msgstr "" "users. If you have any suggestions, please file wishlist bugs! (see left for " "the Development link)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "The Manual" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "About" @@ -1252,234 +1256,242 @@ msgid "Search terminal scrollback" msgstr "Search terminal scrollback" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Scroll upwards one page" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Scroll downwards one page" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Scroll upwards half a page" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Scroll downwards half a page" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Scroll upwards one line" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Scroll downwards one line" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Close window" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Resize the terminal up" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Resize the terminal down" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Resize the terminal left" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Resize the terminal right" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Move the tab right" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Move the tab left" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximise terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zoom terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Switch to the next tab" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Switch to the previous tab" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Switch to the first tab" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Switch to the second tab" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Switch to the third tab" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Switch to the fourth tab" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Switch to the fifth tab" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Switch to the sixth tab" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Switch to the seventh tab" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Switch to the eighth tab" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Switch to the ninth tab" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Switch to the tenth tab" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Toggle fullscreen" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Reset the terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Reset and clear the terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Toggle window visibility" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Group all terminals" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Group/Ungroup all terminals" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Ungroup all terminals" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Group terminals in tab" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Group/Ungroup terminals in tab" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Ungroup terminals in tab" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Create a new window" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Spawn a new Terminator process" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Don't broadcast key presses" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Broadcast key presses to group" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Broadcast key events to all" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insert terminal number" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insert padded terminal number" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Edit window title" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Edit terminal title" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Edit tab title" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Open layout launcher window" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Switch to next profile" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Switch to previous profile" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Open the manual" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "New Profile" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "New Layout" @@ -1576,85 +1588,85 @@ msgstr "Show _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ew group..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_None" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Remove group %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roup all in tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Ungro_up all in tab" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Remove all groups" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Close group %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Broadcast _all" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Broadcast _group" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Broadcast _off" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Split to this group" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Auto_clean groups" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Insert terminal number" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Insert _padded terminal number" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Unable to find a shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Unable to start shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Rename Window" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Enter a new title for the Terminator window..." @@ -1772,6 +1784,9 @@ msgstr "" msgid "Tab %d" msgstr "Tab %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Infinite Scrollback" + #~ msgid "Current Locale" #~ msgstr "Current Locale" diff --git a/po/eo.po b/po/eo.po index 7057d77a..df44b2aa 100644 --- a/po/eo.po +++ b/po/eo.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Esperanto (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminatoro" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Pluraj terminaloj en unu fenestro" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 +msgid "Scroll_back:" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linioj" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Retropaŝoklavo generas:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Forigklavo generas:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kongrueco" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiloj" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Ĉi tiu kromprogramo ne havas agordajn opciojn" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Kromprogramoj" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nova profilo" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Forigi grupon %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupigi ĉiujn en langeto" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Forigi ĉiujn grupojn" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Fermi grupon %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Ne troveblas terminalon" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Ne startigeblas la terminalon" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Renomi fenestron" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Enigu novan titolon por la Terminatora fenestro" diff --git a/po/es.po b/po/es.po index fcc2293a..73e45f04 100644 --- a/po/es.po +++ b/po/es.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Pedro Flor , 2021\n" "Language-Team: Spanish (https://www.transifex.com/terminator/teams/109338/" @@ -133,7 +133,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -142,7 +142,7 @@ msgid "Multiple terminals in one window" msgstr "Múltiples terminales en una ventana" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "El futuro robot de terminales" @@ -255,7 +255,7 @@ msgid "Terminator Layout Launcher" msgstr "Lanzador de Disposición de Terminator" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Diseño" @@ -429,7 +429,7 @@ msgid "Enabled" msgstr "Activado" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nombre" @@ -1017,22 +1017,26 @@ msgid "Scroll on _keystroke" msgstr "Desplazar al pulsar _teclas" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Desplazamiento infinito" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Desplazar hacia atrás:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "líneas" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Desplazamiento" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1044,105 +1048,105 @@ msgstr "" "ciertas aplicaciones y sistemas operativos que esperan un comportamiento " "diferente del terminal." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "La tecla «_Retroceso» genera:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "La tecla «_Suprimir» genera:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" "_Reiniciar las opciones de compatibilidad a los valores predeterminados" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilidad" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Enfocado" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inactivo" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Recibiendo" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "No mostrar el tamaño en el título" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Usar fuente del sistema" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Elija tipo de letra para la Barra de Titulo" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfiles" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Tipo" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Perfil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Comando personalizado:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Carpeta de trabajo:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Diseños" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Acción" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Combinación de teclas" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Asociaciones de teclas" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Complementos" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Este plugin no tiene opciones de configuración" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plugins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1168,11 +1172,11 @@ msgstr "" "por favor repórtalas en nuestro archivo de lista de deseos y de errores (ver " "a la izquierda para el enlace de Desarrollo)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "EL Manual" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1182,7 +1186,7 @@ msgstr "" "Bugs/" "Mejoras" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Acerca de" @@ -1279,234 +1283,242 @@ msgid "Search terminal scrollback" msgstr "Buscar en el historial de la terminal" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Desplazar una página hacia arriba" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Desplazar una página hacia abajo" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Desplazar media página hacia arriba" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Desplazar media página hacia abajo" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Desplazar una línea hacia arriba" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Desplazar una línea hacia abajo" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Cerrar Ventana" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Agrandar la terminal" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Achicar la terminal" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Agrandar la terminal a la izquierda" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Agrandar la terminal a la derecha" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Mover pestaña a la derecha" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Mover pestaña a la izquierda" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximizar terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Ampliar terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Cambiar a la siguiente pestaña" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Cambiar a la pestaña anterior" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Cambiar a la primera pestaña" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Cambiar a la segunda pestaña" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Cambiar a la tercera pestaña" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Cambiar a la cuarta pestaña" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Cambiar a la quinta pestaña" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Cambiar a la sexta pestaña" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Cambiar a la séptima pestaña" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Cambiar a la octava pestaña" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Cambiar a la novena pestaña" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Cambiar a la décima pestaña" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Pantalla completa" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Resetear la terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Resetear y limpiar la terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Cambiar visibilidad de la ventana" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Creara nuevo grupo" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Agrupar todos los terminales" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Agrupar/Desagrupar todos los terminales" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Desagrupar todos los terminales" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Agrupar terminales en pestaña" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Agrupar/Desagrupar terminales en pestaña" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Desagrupar terminales en pestaña" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Crea una ventana nueva" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Lanzar un nuevo proceso de Terminator" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "No difundir las teclas presionadas" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Difundir las teclas presionadas al grupo" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Difundir las teclas presionadas a todos" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insertar número de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insertar número de terminal separado del margen" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Editar titulo de ventana" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Editar título del terminal" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Editar título de la pestaña" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Abrir ventana de lanzador de disposición" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Cambiar al siguiente perfil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Cambiar a perfil previo" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Abrir la ventana de Preferencias" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Abrir el manual" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Perfil nuevo" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nuevo Diseño" @@ -1603,85 +1615,85 @@ msgstr "Mostrar barra de de_splazamiento" msgid "_Layouts..." msgstr "_Diseños..." -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Nu_evo grupo..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Ninguno" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Eliminar grupo %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ag_rupar todos en una solapa" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Desagr_upar todo en pestaña" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Eliminar todos los grupos" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Cerrar grupo %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Difundir todo (_all)" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Difundir al _grupo" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Difusión desactivada (_off)" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Dividir en éste grupo (_Split)" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Autolimpiar grupos (_clean)" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Insertar número de terminal" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Insertar número de terminal de relleno (_padded)" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Imposible encontrar una terminal" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Imposible arrancar la terminal:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Renombrar ventana" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Introduzca un nuevo título para la ventana de Terminator..." @@ -1799,6 +1811,9 @@ msgstr "" msgid "Tab %d" msgstr "Solapa %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Desplazamiento infinito" + #~ msgid "Current Locale" #~ msgstr "Configuración regional actual" diff --git a/po/et.po b/po/et.po index 1b867d8f..691ba150 100644 --- a/po/et.po +++ b/po/et.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Estonian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Mitu terminaali ühes aknas" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiilid" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Sisesta terminali number" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Uus profiil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Uus kujundus" @@ -1551,85 +1563,85 @@ msgstr "Näita _kerimisriba" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Eemalda %s grupp" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupeeri kõik vahelehed" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Eemalda kõik gruppid" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Sulge %s grupp" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Ei leitud shell-i" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Ei suudetud käivitada shell-i" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/eu.po b/po/eu.po index 75ab39ad..354e7aa5 100644 --- a/po/eu.po +++ b/po/eu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Basque (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Hainbat terminal leiho bakarrean" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -401,7 +401,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -989,22 +989,26 @@ msgid "Scroll on _keystroke" msgstr "Korritu _tekla sakatutakoan" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Atzera korritze infinitua" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Atzera korritu:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "lerro" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Korritzea" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1016,104 +1020,104 @@ msgstr "" "aplikazio eta sistema eragilerekin lan egin ahal izateko bakarrik eskaintzen " "dira." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "'_Atzera-tekla' sakatutakoan:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "'_Ezabatu' tekla sakatutakoan:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Berrezarri bateragarritasun-aukerak lehenetsietara" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Bateragarritasuna" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profilak" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Diseinuak" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Laster-teklak" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Plugin honek ez dauka konfigurazioko aukerarik" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Pluginak" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1127,18 +1131,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1235,234 +1239,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Idatzi terminal zenbakia" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Idatzi marjinatik aldendutako terminalaren zenbakia" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Profil berria" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Diseinu berria" @@ -1559,85 +1571,85 @@ msgstr "Erakutsi _korritze-barra" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Ezabatu taldea %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "_Taldekatu guztiak fitxa batean" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Kendu talde guztiak" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Itxi taldea %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Ezin izan da shell-ik topatu" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Ezin izan da shell-ik abiarazi:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Berrizendatu leihoa" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Sartu Terminator leihoaren izenburu berria..." @@ -1755,6 +1767,9 @@ msgstr "" msgid "Tab %d" msgstr "Fitxa %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Atzera korritze infinitua" + #~ msgid "Current Locale" #~ msgstr "Uneko lokala" diff --git a/po/fa.po b/po/fa.po index 273af549..7361d167 100644 --- a/po/fa.po +++ b/po/fa.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Sahand Aslani , 2021\n" "Language-Team: Persian (https://www.transifex.com/terminator/teams/109338/" @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "ترمیناتور" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "ربات اینده ای پایانه است" @@ -232,7 +232,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 +msgid "Ungroup terminals in window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:169 +msgid "Group terminals in tab" +msgstr "" + +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "پایانه در زبانه گروه / اخراج شده از گروه" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "اخراج شده از گروه پایانه ها در زبانه" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "ایجاده پردازش های جدیدپاینه" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "کلید فشار را تکرار نکن" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "کلید فشار را در گروه تکرار نکن" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "رویدادهای کلیدی را برای همه پخش کن" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "درج شماره پایانه" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "درح عدد خالی در پایانه" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "ویرایش پنجره عنوان" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "ویرایش عنوان پایانه" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "ویرایش عنوان زبانه" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "بازکردن طرح پنجره ای اجرا شده" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "سوئیچ به پروفایل بعدی" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "سوئیچ به پروفایل قبلی" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "تنظیمات جدید" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "طرح بندی جدید" @@ -1553,85 +1565,85 @@ msgstr "نمایش-نوارسکرول" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "ج-دید گروه....." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "حذف گروه %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "گ-روه همه در زبانه" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "اخراج از گروه همه در زبانه" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "حذف تمامی گروه‌ها" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "بستن گروه %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "پخش-همه" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "پخش-گروه" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "پخش-خاموش" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "ـتقسیم این گروه" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "خودکار-گروها تمیزکن" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "ـ درج عدد به پایانه" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "درج-عدد خالی در پایانه" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "پیدا کردن پوسته شکست خورد" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "اجرای پوسته شکست خورد" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "تغییرنام پنجره" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "یک نام جدید برای پنجره پایانه ( Terminator) وارد کنید" diff --git a/po/fi.po b/po/fi.po index 4e3435fe..83e52e7c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Finnish (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Useita päätteitä yhdessä ikkunassa" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -401,7 +401,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -989,22 +989,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1012,104 +1016,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiilit" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1123,18 +1127,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1231,234 +1235,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Syötä päätteen numero" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Lisää sisennetty pääte numero" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Uusi profiili" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Uusi pohja" @@ -1555,85 +1567,85 @@ msgstr "Näytä _vierityspalkki" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Poista ryhmä %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "R_yhmitä kaikki välilehdessä" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Poista kaikki ryhmät" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Sulje ryhmä %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Komentotulkkia ei löydy" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Komentotulkkia ei voitu käynnistää:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/fo.po b/po/fo.po index 801b69b5..d09a07b9 100644 --- a/po/fo.po +++ b/po/fo.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Faroese (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nýggj uppsetan" @@ -1551,85 +1563,85 @@ msgstr "Vís _skrulliteig" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Strika bólkin %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Lat bólkin %s aftur" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/fr.po b/po/fr.po index c072240d..a9e49cd0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Samuël Weber/GwendalD , 2020\n" "Language-Team: French (https://www.transifex.com/terminator/teams/109338/" @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Permet d'avoir plusieurs terminaux en une seule fenêtre" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Le futur robot des terminaux." @@ -255,7 +255,7 @@ msgid "Terminator Layout Launcher" msgstr "Lanceur de dispositions de Terminator" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Disposition" @@ -427,7 +427,7 @@ msgid "Enabled" msgstr "Activées" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nom" @@ -1015,22 +1015,26 @@ msgid "Scroll on _keystroke" msgstr "Défilement sur _pression d'une touche" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Défilement infini" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Défilement récursif :" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "lignes" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Défilement" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1042,104 +1046,104 @@ msgstr "" "fonctionner certaines applications et systèmes d'exploitation qui attendent " "un comportement du terminal différent." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "La touche « _Retour arrière » émet :" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "La touche « _Suppr » émet :" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Réinitialiser les options de compatibilité aux valeurs par défaut" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilité" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Actif" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inactif" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Réception" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Masquer la taille du titre" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Utiliser la police de caractères système" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Choisissez une police de caractères pour la barre de titre" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profils" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Type" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil :" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Commande personnalisée :" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Dossier de travail :" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Dispositions" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Action" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Raccourci clavier" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Raccourcis clavier" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Greffon" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Ce greffon n'a pas d'options de configuration" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Greffons" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1165,11 +1169,11 @@ msgstr "" "vous avez des suggestions, merci de remplir un bug de souhait! (regardez a " "gauche pour le lien de développement)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Le manuel" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1180,7 +1184,7 @@ msgstr "" "Bugs / " "Améliorations" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "À propos" @@ -1277,234 +1281,242 @@ msgid "Search terminal scrollback" msgstr "Chercher dans l'historique du terminal" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Défiler vers le haut d'une page" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Défiler vers le bas d'une page" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Défiler vers le haut d'une demi-page" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Défiler vers le bas d'une demi-page" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Défiler vers le haut d'une ligne" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Défiler vers le bas d'une ligne" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Fermer la fenêtre" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Redimensionner le terminal vers le haut" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Redimensionner le terminal vers le bas" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Redimensionner le terminal vers la gauche" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Redimensionner le terminal vers la droite" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Déplacer l'onglet à droite" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Déplacer l'onglet à gauche" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximiser le terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zoomer sur le terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Basculer vers l'onglet suivant" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Basculer vers l'onglet précédent" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Basculer sur le premier onglet" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Basculer sur le deuxième onglet" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Basculer sur le troisième onglet" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Basculer sur le quatrième onglet" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Basculer sur le cinquième onglet" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Basculer sur le sixième onglet" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Basculer sur le septième onglet" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Basculer sur le huitième onglet" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Basculer sur le neuvième onglet" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Basculer sur le dixième onglet" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Basculer en mode plein écran" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Réinitialiser le terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Réinitialiser et effacer le terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Changer la visibilité de la fenêtre" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Créer un nouveau groupe" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Grouper tous les terminaux" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Grouper/dégrouper tous les terminaux" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Dégrouper tous les terminaux" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Grouper les terminaux dans un onglet" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Grouper/dégrouper les terminaux dans un onglet" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Dégrouper les terminaux de l'onglet" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Créer une nouvelle fenêtre" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Démarrer un nouveau processus Terminator" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Ne pas diffuser les appuis de touche" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Diffuser les appuis de touche au groupe" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Diffuser les évènements de touche à tous" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insérer le numéro du terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insérer le numéro du terminal, avec des zéros" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Modifier le titre de la fenêtre" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Modifier le titre du terminal" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Modifier le titre de l'onglet" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Ouvrir la fenêtre du lanceur de diposition" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Basculer sur le profil suivant" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Basculer sur le profil précédent" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Ouvrir les préférences" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Ouvrir le manuel" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nouveau profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nouvel agencement" @@ -1601,85 +1613,85 @@ msgstr "Afficher la barre de défilement" msgid "_Layouts..." msgstr "_Organisations..." -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Nouv_eau groupe..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "Aucu_n" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Supprimer le groupe %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Tout reg_rouper dans l'onglet" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Tout dégro_uper dans un onglet" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Supprimer tout les groupes" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Fermer le groupe %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Diffuser _tout" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Diffuser au _groupe" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Diffusion désactivée" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Scinder vers ce groupe" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Netto_yer automatiquement les groupes" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Insérer le numéro du terminal" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Insérer le _numéro du terminal" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Impossible de trouver un shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Impossible de démarrer le shell :" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Renommer la fenêtre" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Saisir un nouveau titre pour la fenêtre Terminator..." @@ -1797,6 +1809,9 @@ msgstr "" msgid "Tab %d" msgstr "Onglet %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Défilement infini" + #~ msgid "Current Locale" #~ msgstr "Locale actuelle" diff --git a/po/fy.po b/po/fy.po index 9b817a9a..482c0a35 100644 --- a/po/fy.po +++ b/po/fy.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Western Frisian (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ga.po b/po/ga.po index 420f58ef..be371b1f 100644 --- a/po/ga.po +++ b/po/ga.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Irish (https://www.transifex.com/terminator/teams/109338/" @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -231,7 +231,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -398,7 +398,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -986,22 +986,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1009,104 +1013,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1120,18 +1124,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1228,234 +1232,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1552,85 +1564,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/gl.po b/po/gl.po index 8c68ed5e..d2d0a31c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Galician (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminador" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Múltiples terminales nunha ventá" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfís" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insesrtar número de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Instertar número de terminal separado da marxe" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Novo perfil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nova capa" @@ -1553,85 +1565,85 @@ msgstr "Amosar _barra de desprazamento" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Grupo %s borrado" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "A_grupar nunha lapela" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Borrar todos os grupos" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Pechar grupo %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Incapaz de atopar unha consola" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Incapaz de arrincar a consola:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/he.po b/po/he.po index 0c28c08b..a143f695 100644 --- a/po/he.po +++ b/po/he.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Yaron Shahrabani , 2021\n" "Language-Team: Hebrew (https://www.transifex.com/terminator/teams/109338/" @@ -132,7 +132,7 @@ msgstr "שם לשונית להגדרה." #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "מסופים מרובים בחלון אחד" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "העתיד הרובוטי של המסופים" @@ -245,7 +245,7 @@ msgid "Terminator Layout Launcher" msgstr "משגר פריסת Terminator" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "פריסה" @@ -413,7 +413,7 @@ msgid "Enabled" msgstr "מופעל" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "שם" @@ -1001,22 +1001,26 @@ msgid "Scroll on _keystroke" msgstr "גלילה עם ה_קלדה" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "היסטוריית מסוף אינסופית" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "היס_טוריית מסוף:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "שורות" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "גלילה" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1027,104 +1031,104 @@ msgstr "" "להתנהג באופן חריג. הן כאן רק כדי לאפשר לך לעקוף כל מיני יישומים ומערות " "הפעלה שמצפים להתנהגות שונה ממסוף." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "מק_ש Backspace מייצר:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "מ_קש Delete מייצר:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_איפוס אפשרויות התאימות לבררות המחדל" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "תאימות" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "ממוקד" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "בלתי פעיל" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "מקבל" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "הסתרת הגודל מהכותרת" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "להשתמש בגופן המ_ערכת" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "בחירת גופן לשורת הכותרת" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "שורת כותרת" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "פרופילים" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "סוג" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "פרופיל:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "פקודה בהתאמה אישית:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "תיקיית עבודה:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "פריסות" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "פעולה" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "צירוף מקשים" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "צירופי מקשים" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "תוסף" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "לתוסף זה אין אפשרויות להגדרה" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "תוספים" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "גירסה: 2.1.1" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1146,11 +1150,11 @@ msgstr "" "עבור מנהלי מערכת ומשתמשים אחרים. אם יש לך הצעות, נא להגיש תקלה לרשימת " "המשאלות! (בקישור לפיתוח משמאל) " -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "המדריך" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1160,7 +1164,7 @@ msgstr "" "תקלות / " "שיפורים" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "על אודות" @@ -1257,234 +1261,242 @@ msgid "Search terminal scrollback" msgstr "חיפוש בהיסטוריה הנגללת של המסוף" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "גלילה של עמוד למעלה" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "גלילה של עמוד למטה" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "גלילה של חצי עמוד למעלה" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "גלילה של חצי עמוד למטה" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "גלילה של שורה אחת למעלה" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "גלילה של שורה אחת למטה" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "סגירת חלון" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "להגדיל את המסוף" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "להקטין את המסוף" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "לשנות גודל למסוף כלפי שמאל" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "לשנות גודל למסוף כלפי ימין" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "להעביר את הלשונית ימינה" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "להעביר את הלשונית שמאלה" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "הגדלת מסוף" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "התקרבות למסוף" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "מעבר ללשונית הבאה" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "מעבר ללשונית הקודמת" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "מעבר ללשונית הראשונה" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "מעבר ללשונית השנייה" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "מעבר ללשונית השלישית" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "מעבר ללשונית הרביעית" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "מעבר ללשונית החמישית" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "מעבר ללשונית השישית" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "מעבר ללשונית השביעית" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "מעבר ללשונית השמינית" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "מעבר ללשונית התשיעית" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "מעבר ללשונית העשירית" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "החלפת מצב מילוי המסך" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "איפוס המסוף" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "איפוס ופינוי המסוף" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "החלפת מצב הצגת החלון" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "יצירת קבוצה חדשה" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "קיבוץ כל המסופים" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "קיבוץ/פירוק כל המסופים" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "פירוק כל המסופים" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "קיבוץ מסופים בחלון" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "קיבוץ/פירוק מסופים בחלון" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "פירוק מסופים בחלון" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "קיבוץ המסופים ללשונית" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "קיבוץ/פירוק המסופים בלשונית" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "פירוק המסופים בלשונית" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "יצירת חלון חדש" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "הפעלת תהליך Terminator חדש" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "לא לשדר לחיצות מקשים" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "שידור לחיצות מקשים לקבוצה" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "שידור אירועי מקשים לכולם" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "הוספת מספר מסוף" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "הוספת מספר מסוף מרופד" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "עריכת כותרת החלון" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "עריכת כותרת המסוף" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "עריכת כותרת הלשונית" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "פתיחת חלון משגר פריסה" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "מעבר לפרופיל הבא" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "מעבר לפרופיל הקודם" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "פתיחה בחלון ההעדפות" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "פתיחת המדריך" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "פרופיל חדש" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "פריסה חדשה" @@ -1581,85 +1593,85 @@ msgstr "הצגת _פס גלילה" msgid "_Layouts..." msgstr "_פריסות…" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "קבוצה _חדשה…" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_ללא" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "הסרת הקבוצה %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "_קיבוץ הכול בחלון" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "_פירוק הכול בחלון" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "_קיבוץ הכול בלשונית" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "_פירוק כל מי שבלשונית" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "הסרת כל הקבוצות" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "סגירת הקבוצה %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "לשדר ל_כולם" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "_קבוצת שידור" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "_כיבוי השידור" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_פיצול הקבוצה הזו" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "ל_נקות קבוצות אוטומטית" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "הו_ספת מספר מסוף" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "הוספת מספר מסוף מרופ_ד" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "לא ניתן למצוא מעטפת" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "לא ניתן להפעיל מעטפת:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "שינוי שם חלון" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "נא להקליד כותרת חדשה לחלון ה־Terminator…" @@ -1777,6 +1789,9 @@ msgstr "קבות חלונות %s" msgid "Tab %d" msgstr "לשונית %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "היסטוריית מסוף אינסופית" + #~ msgid "Current Locale" #~ msgstr "הגדרות מיקום נוכחיות" diff --git a/po/hi.po b/po/hi.po index 5e75653b..81cf1ced 100644 --- a/po/hi.po +++ b/po/hi.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Hindi (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "टर्मिनेटर" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "एक विंडो में अनेक टर्मिनल" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "टर्मिनल सँख्यां डालें" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/hr.po b/po/hr.po index e8c0fb5d..d97ac875 100644 --- a/po/hr.po +++ b/po/hr.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Markus Frosch , 2021\n" "Language-Team: Croatian (https://www.transifex.com/terminator/teams/109338/" @@ -22,8 +22,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Višebrojni terminali u jednom prozoru" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robotska budućnost terminala" @@ -250,7 +250,7 @@ msgid "Terminator Layout Launcher" msgstr "Pokretanje rasporeda Terminatora" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Raspored" @@ -420,7 +420,7 @@ msgid "Enabled" msgstr "Aktivirano" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Naziv" @@ -1008,22 +1008,26 @@ msgid "Scroll on _keystroke" msgstr "Kliži pri _pritiskanju tipke" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Beskonačna povijest" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Po_vijest:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "redaka" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Klizanje" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1035,104 +1039,104 @@ msgstr "" "određenim programima i operacijskim sustavima, koji očekuju drugačiji rad " "terminala." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Tipka _backspace generira:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Tipka _delete generira:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Postavi opcije kompatibilnosti na standardne vrijednosti" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilnost" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Fokusirana" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Neaktivna" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Primajuća" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Sakrij veličinu iz naslova" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Koristi font sustava" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Odaberi font za traku naslova" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profili" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Vrsta" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Prilagođena naredba:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Radna mapa:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Rasporedi" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Radnja" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Tipkovnički prečac" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Tipkovnički prečaci" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Priključak" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Ovaj priključak nema opcija za konfiguraciju" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Priključci" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1155,11 +1159,11 @@ msgstr "" "korisnim funkcijama za administratore sustava i za ostale korisnike. " "Prijedlozi se mogu dodati u popis želja! (vidi lijevo poveznicu „Razvoj”)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Priručnik" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1169,7 +1173,7 @@ msgstr "" "Greške i " "poboljšanja" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Informacije" @@ -1266,234 +1270,242 @@ msgid "Search terminal scrollback" msgstr "Pretraži povijest terminala" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Klizni jednu stranicu prema gore" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Klizni jednu stranicu prema dolje" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Klizni pola stranice prema gore" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Klizni pola stranice prema dolje" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Klizni jedan redak prema gore" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Klizni jedan redak prema dolje" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Zatvori prozor" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Promijeni veličinu terminala gore" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Promijeni veličinu terminala dolje" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Promijeni veličinu terminala lijevo" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Promijeni veličinu terminala desno" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Premjesti karticu desno" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Premjesti karticu lijevo" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Rastvori terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zumiraj terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Prijeđi na sljedeću karticu" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Prijeđi na prethodnu karticu" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Prijeđi na prvu karticu" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Prijeđi na drugu karticu" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Prijeđi na treću karticu" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Prijeđi na četvrtu karticu" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Prijeđi na petu karticu" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Prijeđi na šestu karticu" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Prijeđi na sedmu karticu" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Prijeđi na osmu karticu" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Prijeđi na devetu karticu" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Prijeđi na desetu karticu" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Uklj/Isklj cjeloekranski prikaz" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Resetiraj terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Resetiraj i isprazni terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Uklj/Isklj vidljivost prozora" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Stvori novu grupu" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Grupiraj sve terminale" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Grupiraj/Razdvoji sve terminale" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Razdvoji sve terminale" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Grupiraj terminale u kartici" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Grupiraj/Razdvoji terminale u kartici" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Razdvoji terminale u kartici" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Stvori novi prozor" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Pokreni novi proces Terminatora" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Ne šalji pritiskanje tipki" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Šalji pritiskanje tipki grupi" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Šalji događaje tipki svima" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Umetni broj terminala" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Umetni broj terminala s predstavljenom nulom" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Uredi naslov prozora" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Uredi naslov terminala" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Uredi naslov kartice" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Otvori prozor pokretanja rasporeda" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Prebaci na sljedeći profil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Prebaci na prethodni profil" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Otvori prozor postavki" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Otvori priručnik" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Novi profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Novi raspored" @@ -1590,85 +1602,85 @@ msgstr "Prikaži _kliznu traku" msgid "_Layouts..." msgstr "_Rasporedi …" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ova grupa …" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Ništa" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Ukloni grupu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupiraj sve u kartici" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Razdvoji sve _u kartici" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Ukloni sve grupe" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zatvori grupu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Šalji svim_a" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Šalji _grupi" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Slanje isključen_o" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Rastavi u ovu grupu" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Auto_matski ukloni grupe" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Umetni broj terminala" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Umetni _broj terminala s predstavljenom nulom" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nije moguće pronaći ljusku" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nije moguće pokrenuti ljusku:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Preimenuj prozor" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Upiši novi naslov za prozor Terminatora …" @@ -1786,6 +1798,9 @@ msgstr "" msgid "Tab %d" msgstr "Kartica %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Beskonačna povijest" + #~ msgid "Current Locale" #~ msgstr "Trenutačni jezik" diff --git a/po/hu.po b/po/hu.po index c455b7dd..c23630c0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Hungarian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Több terminál egy ablakban" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "A terminálok robot jövője" @@ -232,7 +232,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Elrendezés" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1553,85 +1565,85 @@ msgstr "Gördítő_sáv megjelenítése" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Minden csoport eltávolítása" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Parancsértelmező nem található" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/hy.po b/po/hy.po index 6a8f3cb6..ddd09b67 100644 --- a/po/hy.po +++ b/po/hy.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Armenian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Մի քանի տերմինալ մեկ պատուհանում" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ia.po b/po/ia.po index d71832a0..5e88a283 100644 --- a/po/ia.po +++ b/po/ia.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Interlingua (https://www.transifex.com/terminator/" @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Plure terminales in un fenestra" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Le robot futur del terminales" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Disposition" @@ -400,7 +400,7 @@ msgid "Enabled" msgstr "Activate" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nomine" @@ -988,22 +988,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 +msgid "Scroll_back:" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "lineas" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Rolar" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1011,104 +1015,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inactive" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Typo" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profilo:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Action" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Plugin" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plugins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1122,18 +1126,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "A proposito" @@ -1230,234 +1234,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 +msgid "Scroll upwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:136 +msgid "Scroll downwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Clauder fenestra" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nove profilo" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1554,85 +1566,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/id.po b/po/id.po index ee792958..41212a24 100644 --- a/po/id.po +++ b/po/id.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Abdul Munif Hanafi , 2021\n" "Language-Team: Indonesian (https://www.transifex.com/terminator/teams/109338/" @@ -130,7 +130,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -139,7 +139,7 @@ msgid "Multiple terminals in one window" msgstr "Banyak terminal dalam satu window" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "The robot future of terminals" @@ -238,7 +238,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator Layout Launcher" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Tata Letak" @@ -409,7 +409,7 @@ msgid "Enabled" msgstr "Aktifkan" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nama" @@ -997,22 +997,26 @@ msgid "Scroll on _keystroke" msgstr "Gulung pada saat tombol _ditekan" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Gulung balik tak terbatas" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Gulung _balik:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "baris" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Menggulung" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1024,104 +1028,104 @@ msgstr "" "beberapa aplikasi dan sistem operasi tertentu yang memiliki perilaku berbeda " "pada aplikasi terminalnya." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Tom_bol backspace membangkitkan:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Tombol _delete membangkitkan:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Kembalikan pilihan kompatibilitas ke nilai bawaan" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilitas" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Focused" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Tidak aktif" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Menerima" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Hide size from title" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Use the system font" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Choose A Titlebar Font" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profil" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Jenis" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Custom command:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Working directory:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Tata Letak" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Aksi" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Kaitan tombol" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Pengaya" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Plugin ini tidak memiliki pilihan konfigurasi" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plugins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "Versi: 2.1.1" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1145,18 +1149,18 @@ msgstr "" "users. If you have any suggestions, please file wishlist bugs! (see left for " "the Development link)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "The Manual" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Tentang" @@ -1253,234 +1257,242 @@ msgid "Search terminal scrollback" msgstr "Search terminal scrollback" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Scroll upwards one page" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Scroll downwards one page" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Scroll upwards half a page" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Scroll downwards half a page" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Scroll upwards one line" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Scroll downwards one line" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Tutup jendela" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Resize the terminal up" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Resize the terminal down" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Resize the terminal left" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Resize the terminal right" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Move the tab right" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Move the tab left" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximize terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zoom terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Berpindah ke tab selanjutnya" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Berpindah ke tab sebelumnya" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Switch to the first tab" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Switch to the second tab" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Switch to the third tab" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Switch to the fourth tab" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Switch to the fifth tab" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Switch to the sixth tab" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Switch to the seventh tab" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Switch to the eighth tab" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Switch to the ninth tab" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Switch to the tenth tab" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Reset the terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Reset and clear the terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Toggle window visibility" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Buat grup baru" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Group all terminals" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Group/Ungroup all terminals" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Ungroup all terminals" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Group terminals in tab" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Group/Ungroup terminals in tab" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Ungroup terminals in tab" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Buat jendela baru" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Spawn a new Terminator process" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Don't broadcast key presses" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Broadcast key presses to group" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Broadcast key events to all" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "SIsipkan nomor terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Masukkan nomor padded terminal" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Edit window title" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Edit terminal title" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Edit tab title" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Open layout launcher window" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Switch to next profile" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Switch to previous profile" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Buka manual" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Profile Baru" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Tampilan Baru" @@ -1577,85 +1589,85 @@ msgstr "Tunjukkan _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ew group..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Nihil" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Hapus grup %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "K_elompokan semua dalam tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Ungro_up all in tab" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Hapus semua grup" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Tutup grup %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Broadcast _all" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Broadcast _group" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Broadcast _off" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Split to this group" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Auto_clean groups" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Insert terminal number" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Insert _padded terminal number" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Tidak dapat menemukan sebuah shell." -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Tidak dapat menjalankan shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Namai jendela" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Masukkan judul baru untuk terminal" @@ -1773,6 +1785,9 @@ msgstr "" msgid "Tab %d" msgstr "Tab %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Gulung balik tak terbatas" + #~ msgid "Current Locale" #~ msgstr "Lokal sekarang" diff --git a/po/is.po b/po/is.po index 77358900..219f898f 100644 --- a/po/is.po +++ b/po/is.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Icelandic (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Margar útstöðvar í einum glugga" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Uppsetning" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Settu inn númer útstöðvar" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Ný Uppsetning" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nýtt Snið" @@ -1551,85 +1563,85 @@ msgstr "Sýna _skrunslá" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Fjarlægja hóp %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "_Hópa allar í flipa" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Fjarlægja alla hópa" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Loka hóp %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Getur ekki fundið skel" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Getur ekki ræst skel:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/it.po b/po/it.po index 30409c75..894b323b 100644 --- a/po/it.po +++ b/po/it.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Italian (https://www.transifex.com/terminator/teams/109338/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Molteplici terminali un una sola finestra" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Il futuro robot dei terminali" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Disposizione" @@ -406,7 +406,7 @@ msgid "Enabled" msgstr "Attivato" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nome" @@ -994,22 +994,26 @@ msgid "Scroll on _keystroke" msgstr "S_correre alla pressione dei tasti" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Illimitato" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Sc_orrimento all'indietro:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "righe" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Scorrimento" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1021,104 +1025,104 @@ msgstr "" "applicazioni e sistemi operativi che si aspettano un diverso funzionamento " "del terminale." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Il tasto _Backspace genera:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Il tasto _Canc genera:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Ripristina valori predefiniti per opzioni di compatibilità" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilità" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profili" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Cartella di lavoro:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Disposizioni" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Associazione tasti" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Questo plugin non ha opzioni di configurazione" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plugin" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1132,18 +1136,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1240,234 +1244,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 +msgid "Scroll downwards one page" +msgstr "" + +#: ../terminatorlib/prefseditor.py:133 +msgid "Scroll upwards half a page" +msgstr "" + +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Scorri mezza pagina verso il basso" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Chiudi la finestra" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Passa alla scheda successiva" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Passa alla scheda precedente" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Passa alla prima scheda" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Passa alla seconda scheda" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Passa alla terza scheda" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Passa alla quarta scheda" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Passa alla quinta scheda" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Passa alla sesta scheda" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Passa alla settima scheda" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Passa alla ottava scheda" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Passa alla nona scheda" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Passa alla decima scheda" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Raggruppa tutti i terminali" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Inserisci il numero del terminale" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Inserire il numero di terminale" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Modifica il titolo della finestra" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Modifica il titolo del terminale" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Modifica il titolo della scheda" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Passa al profilo successivo" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Passa al profilo precedente" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Apri il manuale" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nuovo profilo" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nuova disposizione" @@ -1564,85 +1576,85 @@ msgstr "Mostra _barra di scorrimento" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Rimuovi gruppo %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ra_ggruppa tutto nella scheda" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Rimuovi tutti i gruppi" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Chiudi gruppo %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Impossibile trovare una shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Impossibile avviare la shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Rinomina finestra" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Inserisci un nuovo titolo per la finestra di Terminator..." @@ -1760,6 +1772,9 @@ msgstr "" msgid "Tab %d" msgstr "Scheda %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Illimitato" + #~ msgid "Current Locale" #~ msgstr "Localizzazione in uso" diff --git a/po/ja.po b/po/ja.po index e4da3bf7..42828f3c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Japanese (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "複数の端末を一つのウインドウに" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "レイアウト" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "キー入力でボトムにスクロール(_k)" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "無限のスクロールバック" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "スクロールバック(_b):" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "行" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "スクロール" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1012,104 +1016,104 @@ msgstr "" "OS 上で異なった動作になってしまう問題を解決するために提供されています。" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "[BS] キーが生成するコード(_B):" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "[DEL] キーが生成するコード(_D):" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "互換性オプションを既定値に戻す(_R)" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "互換性" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "受信中" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "システムフォントを使う(_U)" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "プロファイル" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "プロファイル:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "作業ディレクトリ:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "レイアウト" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "キーバインド" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "キーの割り当て" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "プラグイン" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "このプラグインにオプション設定はありません" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "プラグイン" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1123,18 +1127,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "情報" @@ -1231,234 +1235,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 +msgid "Scroll upwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:136 +msgid "Scroll downwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "ウィンドウを閉じる" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "タブを右に移動" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "タブを左に移動" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "次のタブに切り替えます" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "前のタブに切り替えます" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "全画面表示" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "ターミナルを消去してリセット" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "端末番号を挿入" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "ウィンドウタイトルを編集" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "新しいプロファイル" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "新しいレイアウト" @@ -1555,85 +1567,85 @@ msgstr "スクロールバーを表示(_S)" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "グループ%sを解除" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "全てのタブをグループ化(_r)" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "全てのグループ化を解除" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "グループ%sを閉じる" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "シェルが見つかりません" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "シェルを起動できません:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "ウィンドウ名の変更" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "新しいウィンドウのタイトルを入力..." @@ -1751,6 +1763,9 @@ msgstr "" msgid "Tab %d" msgstr "タブ%d" +#~ msgid "Infinite Scrollback" +#~ msgstr "無限のスクロールバック" + #~ msgid "Current Locale" #~ msgstr "現在利用しているロケール" diff --git a/po/jv.po b/po/jv.po index bd01de51..56d2cb14 100644 --- a/po/jv.po +++ b/po/jv.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Javanese (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Akeh terminal ning sak jendelo" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profil" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Profil anyar" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Totoruang anyar" @@ -1551,85 +1563,85 @@ msgstr "Tampilake _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "ngGuwaki kelompok %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roup kabeh ning tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "ngGuwaki kabeh kelompok %s" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Nutupe kelompok %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Ora iso nemokake sell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ka.po b/po/ka.po index 53cebf1e..b84f69ed 100644 --- a/po/ka.po +++ b/po/ka.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Georgian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "მრავალი ტერმინალები ერთ ფანჯარაში" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "ახალი პროფილი" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "ახალი განლაგება" @@ -1553,85 +1565,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/kk.po b/po/kk.po index 44eee5fa..572a3b1c 100644 --- a/po/kk.po +++ b/po/kk.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Kazakh (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Терминатор" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Бір терезе ішінде көптік терминалдар" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профильдер" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Терминал нөмірін басып шығару" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Сандық пернетақтадан консольды санды енгізу" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Жаңа профиль" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Жаңа қабат" @@ -1551,85 +1563,85 @@ msgstr "_Жылжыту жолағын көрсету" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "%s тобын жою" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Барлық топтарды жою" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "%s тобын жабу" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Қабықшаны табу мүмкін емес" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Қабықшаны ашу мүмкін емес:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ko.po b/po/ko.po index 7eff4ac4..4039ed4f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Korean (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "터미네이터" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "창 하나에 터미널 여러 개 쓰기" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "터미널이 지배하는 미래 세상" @@ -234,7 +234,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "형태" @@ -401,7 +401,7 @@ msgid "Enabled" msgstr "사용" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "이름" @@ -989,22 +989,26 @@ msgid "Scroll on _keystroke" msgstr "키를 누르면 스크롤(_K)" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "무제한 스크롤" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "스크롤 범위(_B):" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "줄" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "스크롤" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1015,104 +1019,104 @@ msgstr "" "수도 있습니다. 다음 옵션은 터미널 기능을 다르게 이용하는 일부 프로그램과 운영" "체제의 문제를 피해가는 기능일 뿐입니다." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "백스페이스 키를 누르면(_B):" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Delete 키를 누르면(_D):" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "호환성 옵션을 기본값으로 되돌림(_R)" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "호환성" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "활성" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "비활성" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "수신 중" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "제목에 크기 감추기" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "시스템 글꼴 사용" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "제목 글꼴 선택" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "프로파일" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "유형" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "프로파일:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "사용자 지정 명령:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "작업 디렉터리:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "레이아웃" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "동작" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "단축키" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "키 설정" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "플러그인" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "이 플러그인은 옵션 설정이 없음" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "플러그인" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1126,18 +1130,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "설명서" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "소개" @@ -1234,234 +1238,242 @@ msgid "Search terminal scrollback" msgstr "터미널 스크롤에서 검색" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "위로 한 페이지 스크롤" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "아래로 한 페이지 스크롤" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "위로 반 페이지 스크롤" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "아래로 반 페이지 스크롤" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "위로 한 줄 스크롤" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "아래로 한 줄 스크롤" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "창 닫기" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "위로 터미널 크기 조정" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "아래로 터미널 크기 조정" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "왼쪽으로 터미널 크기 조정" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "오른쪽으로 터미널 크기 조정" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "탭을 오른쪽으로 이동" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "탭을 왼쪽으로 이동" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "터미널 최대화" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "터미널 확대" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "다음 탭으로 이동" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "이전 탭으로 이동" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "첫 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "두 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "세 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "네 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "다섯 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "여섯 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "일곱 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "여덟 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "아홉 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "열 번째 탭으로 이동" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "전체화면 전환" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "터미널 초기화" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "터미널 초기화 및 비우기" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "창 보이기 전환" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "모든 터미널을 그룹 지정" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "모든 터미널을 그룹 지정/해제" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "모든 터미널을 그룹 해제" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "탭 내의 터미널들을 그룹 지정" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "탭 내의 터미널들을 그룹 지정/해제" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "탭 내의 터미널들을 그룹 해제" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "새 창 만들기" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "새로운 터미네이터 프로세스 생성" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "동시 입력 하지 않기" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "그룹에 동시 입력" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "전체에 동시 입력" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "터미널 번호 붙여넣기" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "0으로 채운 터미널 번호 붙여넣기" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "창 제목 편집" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "터미널 제목 편집" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "탭 제목 편집" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "레이아웃 런처 창 열기" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "다음 프로파일로" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "이전 프로파일로" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "설명서 열기" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "새 프로파일" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "새 레이아웃" @@ -1558,85 +1570,85 @@ msgstr "스크롤 막대 표시(_S)" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "새 그룹(_E)" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "소속 없음" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "그룹 %s 지우기" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "탭 안의 모두를 그룹으로(_G)" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "탭 안의 모두를 그룹 해제(_U)" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "모든 그룹 지우기" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "그룹 %s 닫기" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "전체에게 동시 입력(_A)" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "그룹에 동시 입력(_G)" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "동시 입력 끄기(_O)" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "나눌 때 이 그룹으로(_S)" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "빈 그룹 자동 제거(_C)" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "터미널 번호 붙여넣기(_I)" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "0으로 채운 터미널 번호 붙여넣기(_P)" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "셸을 찾을 수 없음" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "셸을 시작할 수 없음:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "윈도우 이름 바꾸기" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "터미네이터 창의 새 제목을 입력하세요..." @@ -1754,6 +1766,9 @@ msgstr "" msgid "Tab %d" msgstr "탭 %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "무제한 스크롤" + #~ msgid "Current Locale" #~ msgstr "현재 로캘" diff --git a/po/ku.po b/po/ku.po index 387fc86c..a96e429f 100644 --- a/po/ku.po +++ b/po/ku.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Kurdish (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Bicihkirin" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "Çalake" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nav" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Neçalak" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Tê wergirtin" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/la.po b/po/la.po index 4934e742..4dce41a6 100644 --- a/po/la.po +++ b/po/la.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Latin (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/lt.po b/po/lt.po index e8dce850..9a858e8c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Lithuanian (https://www.transifex.com/terminator/teams/109338/" @@ -126,7 +126,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -135,7 +135,7 @@ msgid "Multiple terminals in one window" msgstr "Keli terminalai viename lange" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -232,7 +232,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -401,7 +401,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -989,22 +989,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1012,104 +1016,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiliai" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1123,18 +1127,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1231,234 +1235,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Įterpti terminalo numerį" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Įterpti dengtą terminalo numerį" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Naujas profilis" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Naujas išdėstymas" @@ -1555,85 +1567,85 @@ msgstr "Rodyti _slinkties juostą" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Šalinti grupę %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupuoti visus kortelėje" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Pašalinti visas grupes" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Uždaryti grupę %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nepavyksta rasti komandų interpretatoriaus" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nepavyksta paleisti komandų interpretatoriaus:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/lv.po b/po/lv.po index fccb0f68..2d5e8cba 100644 --- a/po/lv.po +++ b/po/lv.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Latvian (https://www.transifex.com/terminator/teams/109338/" @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "Daudzi termināļi vienā logā" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -231,7 +231,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -398,7 +398,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -986,22 +986,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1009,104 +1013,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profili" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1120,18 +1124,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1228,234 +1232,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Ievietot termināļa numuru" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Ievietot atdalītu temināļa numuru" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Jauns profils" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Jauns slānis" @@ -1552,85 +1564,85 @@ msgstr "Rādīt ritjo_slu" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Dzēst grupu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupēt visu cilnē" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Dzēst visas grupas" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Aizvērt grupu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nav iespējams atrast čaulu" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nav iespējams palaist čaulu:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/mk.po b/po/mk.po index fa8e3947..f9d9dda6 100644 --- a/po/mk.po +++ b/po/mk.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Macedonian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Терминатор" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Повеќе терминали во еден прозорец" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профили" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Внесете број на терминал" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Нов профил" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Нов распоред" @@ -1551,85 +1563,85 @@ msgstr "Покажи _лизгач" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Избриши ја групата %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Г_рупирај ги сите во табови" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Избриши ги сите групи" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Затвори група %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Неспособен да најде обвивка" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ml.po b/po/ml.po index fa9ddb77..52c2c541 100644 --- a/po/ml.po +++ b/po/ml.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Malayalam (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "ടെര്‍മിനേറ്റര്‍" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "ഒരു ജാലകത്തില്‍ ഒന്നിലധികം ടെര്‍മിനലുകള്‍" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "ലേഔട്ട്" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "പുതിയ പ്രൊഫൈല്‍" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/mr.po b/po/mr.po index 7afbdcf4..8814421e 100644 --- a/po/mr.po +++ b/po/mr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Marathi (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ms.po b/po/ms.po index f0f21d58..e9d4fbd8 100644 --- a/po/ms.po +++ b/po/ms.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Malay (https://www.transifex.com/terminator/teams/109338/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Kesemua terminal dalam satu tetingkap" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Terminal dari robot masa hadapan" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "Pelancar Bentangan Terminator" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Bentangan" @@ -405,7 +405,7 @@ msgid "Enabled" msgstr "Dibenarkan" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nama" @@ -993,22 +993,26 @@ msgid "Scroll on _keystroke" msgstr "Tatal pada _ketukan kekunci" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Tatal Kembali Tak Terhingga" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Tatar _kembali:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "baris" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Penatalan" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1020,104 +1024,104 @@ msgstr "" "sekitar aplikasi dan sistem operasi tertentu yang mempunyai perilaku " "terminal yang berbeza." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Kekunci _Backspace menjana:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Kekunci _Del menjana:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Tetap semula pilihan keserasian kepada Lalai" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Keserasian" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Terfokus" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Tidak Aktif" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Penerimaan" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Sembunyi saiz dari tajuk" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "G_una fon sistem" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Pilih Fon Palang Tajuk" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profil" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Jenis" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Perintah suai:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Direktori kerja:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Bentangan" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Tindakan" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Pengikatan kekunci" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Pengikatan kekunci" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Pemalam" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Pemalam ini tidak mempunyai pilihan konfigurasi" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Pemalam" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1142,18 +1146,18 @@ msgstr "" "apa juag cadangan, sila failkan pepijat senarai idaman! (sila rujuk ke " "pautan Pembangunan)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Panduan" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Perihal" @@ -1250,234 +1254,242 @@ msgid "Search terminal scrollback" msgstr "Gelintar tatal balik terminal" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Tatal menaik satu halaman" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Tatal menurun satu halaman" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Tatal menaik separa halaman" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Tatal menurun separa halaman" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Tatal menaik satu baris" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Tatal menurun satu baris" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Tutup tetingkap" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Saiz semula terminal atas" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Saiz semula terminal bawah" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Saiz semula terminal kiri" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Saiz semula terminal kanan" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Alih tab ke kanan" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Alih tab ke kiri" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zum terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Tukar ke tab berikutnya" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Tukar ke tab terdahulu" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Tukar ke tab pertama" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Tukar ke tab kedua" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Tukar ke tab ketiga" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Tukar ke tab keempat" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Tukar ke tab kelima" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Tukar ke tab ke enam" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Tukar ke tab ke tujuh" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Tukar ke tab ke lapan" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Tukar ke tab ke sembilan" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Tukar ke tab ke sepuluh" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Togol skrin penuh" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Tetap semula terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Tetap semula dan kosongkan terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Togol ketampakan tetingkap" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Kumpulkan semua terminal" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Kumpul/Nyahkumpul semua terminal" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Nyahkumpul semua terminal" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Kumpul terminal dalam tab" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Kumpul/Nyahkumpul terminal dalam tab" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Nyahkumpul terminal dalam tab" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Cipta tetingkap baharu" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Wujudkan proses Terminator baharu" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Jangan siarkan ketukan kekunci" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Siarkan ketukan kekunci ke kumpulan" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Siarkan peristiwa kekunci kepada semua" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Sisip nombor terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Sisip nombor terminal beralas" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Sunting tajuk tetingkap" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Buka tetingkap pelancar bentangan" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Tukar ke profil berikutnya" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Tukar ke profil terdahulu" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Buka panduan" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Profil Baru" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Bentangan Baru" @@ -1574,85 +1586,85 @@ msgstr "Papar _scrollbar" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Kumpulan _baharu..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Tiada" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Buang kumpulan %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "K_umpul semua dalam tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "N_yahkumpul semua dalam tab" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Buang semua kumpulan" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Tutup kumpulan %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Siar semu_a" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Siar _kumpulan" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Siaran _mati" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Pisah ke kumpulan ini" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Auto-k_osongkan kumpulan" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "S_isip bilangan terminal" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Sisip bilangan terminal ter_padat" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Gagal mencari shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Tidak boleh mulakan shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Nama Semula Tetingkap" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Masukkan tajuk baru untuk tetingkap Terminator..." @@ -1770,6 +1782,9 @@ msgstr "" msgid "Tab %d" msgstr "Tab %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Tatal Kembali Tak Terhingga" + #~ msgid "Current Locale" #~ msgstr "Lokaliti Semasa" diff --git a/po/nb.po b/po/nb.po index b99313db..93218acb 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/terminator/" @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Flere terminaler i ett vindu" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -403,7 +403,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -991,22 +991,26 @@ msgid "Scroll on _keystroke" msgstr "Rull ned ved tastetry_kk" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Uendelig tilbakerulling" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Til_bakerulling:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linjer" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Rulling" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1019,104 +1023,104 @@ msgstr "" "terminaler fungerer annerledes enn dette programmet gjør som standard." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Rettetasten genererer:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Delete-tasten genererer:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Sett kompatibilitetsalternativene til standard" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilitet" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiler" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Utforminger" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Tastaturbindinger" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Dette programtillegget har ingen tilgjengelige brukervalg" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Programtillegg" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1130,18 +1134,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1238,234 +1242,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Sett inn terminal nummer" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Sett inn utfylt terminalnummer" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Ny Profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Ny Side" @@ -1562,85 +1574,85 @@ msgstr "Vis _rullefelt" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Fjern gruppe %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_ruppe alle i tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Fjern alle grupper" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Lukk gruppe %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Klarer ikke å finne et skall" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kan ikke starte shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Gi nytt navn til vinduet" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Skriv en ny tittel på Terminator-vinduet..." @@ -1758,6 +1770,9 @@ msgstr "" msgid "Tab %d" msgstr "Tab %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Uendelig tilbakerulling" + #~ msgid "Current Locale" #~ msgstr "Nåværende lokale" diff --git a/po/nl.po b/po/nl.po index fdcca019..4c74af93 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Dutch (https://www.transifex.com/terminator/teams/109338/" @@ -130,7 +130,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -139,7 +139,7 @@ msgid "Multiple terminals in one window" msgstr "Meerdere terminals in één venster" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "De robottoekomst van terminals" @@ -240,7 +240,7 @@ msgid "Terminator Layout Launcher" msgstr "Lay-out van de Terminator-starter" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Lay-out" @@ -410,7 +410,7 @@ msgid "Enabled" msgstr "Ingeschakeld" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Naam" @@ -998,22 +998,26 @@ msgid "Scroll on _keystroke" msgstr "Schuiven _bij een toetsaanslag" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Oneindig terugschuiven" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Terugschuiven:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "regels" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Verschuiving" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1025,104 +1029,104 @@ msgstr "" "toepassingen en besturingssystemen, die een ander terminalgedrag verwachten, " "heen kunt werken." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Backspace-toets genereert:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Delete-toets genereert:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Compatibiliteitsopties terugzetten op standaardwaarden" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibiliteit" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Gefocust" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inactief" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Bezig met ontvangen" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Grootte verbergen in titel" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "Systeemlettertype _gebruiken" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Kies een lettertype voor de titelbalk" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profielen" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Soort" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profiel:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Aangepaste opdracht:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Werkmap:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Indelingen" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Actie" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Toetsbinding" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Toetsbindingen" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Plug-in" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Deze plug-in heeft geen configuratieopties" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plug-ins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1147,18 +1151,18 @@ msgstr "" "gebrukers. Als je suggesties hebt, gelieve dit te melden in de verlanglijst " "bugs! (zie links voor de ontwikkeling link)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "De handleiding" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Over" @@ -1255,234 +1259,242 @@ msgid "Search terminal scrollback" msgstr "Zoeken in terminalschuifbalk" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Een pagina omhoog schuiven" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Een pagina omlaag schuiven" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Een halve pagina omhoog schuiven" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Een halve pagina omlaag schuiven" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Een regel omhoog schuiven" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Een regel omlaag schuiven" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Venster sluiten" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Terminalvenster omhoog herschalen" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Terminalvenster omlaag herschalen" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Terminalvenster naar links herschalen" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Terminalvenster naar rechts herschalen" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Tabblad naar rechts verplaatsen" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Tabblad naar links verplaatsen" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Terminalvenster maximaliseren" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Terminalvensterzoom" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Overschakelen naar het volgende tabblad" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Overschakelen naar vorige tabblad" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Overschakelen naar het eerste tabblad" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Overschakelen naar het tweede tabblad" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Overschakelen naar het derde tabblad" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Overschakelen naar het vierde tabblad" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Overschakelen naar het vijfde tabblad" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Overschakelen naar het zesde tabblad" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Overschakelen naar het zevende tabblad" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Overschakelen naar het achtste tabblad" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Overschakelen naar het negende tabblad" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Overschakelen naar het tiende tabblad" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Volledig scherm-schakeling" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Terminalvenster terugzetten op standaardwaarden" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Terminalvenster wissen en terugzetten op standaardwaarden" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Vensterzichtbaarheid-schakeling" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Alle terminalvensters groeperen" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Alle terminalvensters groeperen/de-groeperen" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Alle terminalvenster de-groeperen" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Terminalvensters groeperen op tabblad" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Terminalvensters groepren/de-groeperen op tabblad" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Terminalvensters de-groeperen op tabblad" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Een nieuw venster creëren" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Creër een nieuw Terminator proces" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Zend geen toetsaanslagen uit" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Zend toetsaanslagen uit naar groep" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Broadcast belangrijke gebeurtenissen voor alle" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Terminalnummer invoegen" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Aangevuld terminalnummer invoegen" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Venstertitel wijzigen" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Terminaaltitel wijzigen" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Tabbladtitel Wijzigen" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Schakel over naar volgend profiel" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Schakel over naar vorig profiel" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Handleiding openen" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nieuw profiel" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nieuwe lay-out" @@ -1579,85 +1591,85 @@ msgstr "Laat scroll balk zien" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ieuwe groep..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Geen" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Groep %s verwijderen" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_roepeer alle terminals in het tabblad" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Alle groepen opheffen" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Sluit groep %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Broadcast _alle" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "uitzend_groep" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "uitzenden_af" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Splits naar deze groep" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Auto-opschonen groepen" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_voeg terminal nummer in" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Geen shell gevonden" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kan shell niet starten:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Hernoem venster" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" @@ -1775,6 +1787,9 @@ msgstr "" msgid "Tab %d" msgstr "Tabblad %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Oneindig terugschuiven" + #~ msgid "Current Locale" #~ msgstr "Huidig taalgebied" diff --git a/po/nn.po b/po/nn.po index ac323a13..460dfdd4 100644 --- a/po/nn.po +++ b/po/nn.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Norwegian Nynorsk (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/oc.po b/po/oc.po index 7acc4ec6..5d3fd533 100644 --- a/po/oc.po +++ b/po/oc.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Occitan (post 1500) (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Permet d'aver mantun terminal dins una sola fenèstra" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Presentacion" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfils" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Inserir lo numèro de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Perfil novèl" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Agençament novèl" @@ -1551,85 +1563,85 @@ msgstr "Far veire la barra de desfilament" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Suprimir lo grop %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ag_ropar dins un sol tablèau" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Suprimir totes los gropes" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Tampar lo grop %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Impossible de trobar un shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/pl.po b/po/pl.po index 66cdd716..5258f08f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Daniel Napora , 2021\n" "Language-Team: Polish (https://www.transifex.com/terminator/teams/109338/" @@ -22,9 +22,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -134,7 +134,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -143,7 +143,7 @@ msgid "Multiple terminals in one window" msgstr "Wiele terminali w jednym oknie" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robotyczna przyszłość terminali" @@ -252,7 +252,7 @@ msgid "Terminator Layout Launcher" msgstr "Uruchamianie układu Terminatora" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Układ" @@ -422,7 +422,7 @@ msgid "Enabled" msgstr "Aktywne" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nazwa" @@ -1010,22 +1010,26 @@ msgid "Scroll on _keystroke" msgstr "Przewijanie przy _naciśnięciu klawisza" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Nieskończone przewijanie" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "_Bufor przewijania:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linii" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Przewijanie" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1037,104 +1041,104 @@ msgstr "" "pewnymi programami i systemami operacyjnymi, które oczekują innego " "zachowania się terminala." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Klawisz _Backspace generuje:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Klawisz _Delete generuje:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Przywróć domyślne wartości opcji zgodności" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Zgodność" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Aktywny" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Nieaktywny" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Odbieranie" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Ukryj rozmiar w tytule" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Użyj czcionki systemowej" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Wybierz czcionkę paska tytułu" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profile" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Rodzaj" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Niestandardowe polecenie:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Katalog roboczy:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Układy" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Czynność" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Skrót klawiszowy" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Skróty klawiszowe" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Wtyczka" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Ta wtyczka nie ma żadnych opcji konfiguracyjnych" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Wtyczki" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "Wersja: 2.1.1" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1158,11 +1162,11 @@ msgstr "" "Jeśli masz jakieś sugestie, zgłoś błędy na liście życzeń! (link Development " "po lewej stronie)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Podręcznik" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1172,7 +1176,7 @@ msgstr "" "Błędy / " "Poprawki" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "O programie" @@ -1269,234 +1273,242 @@ msgid "Search terminal scrollback" msgstr "Przeszukaj historię terminali" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Przewiń w górę o jedną stronę" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Przewiń w dół o jedną stronę" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Przewiń w górę o pół strony" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Przewiń w dół o pół strony" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Przewiń w górę o jedną linię" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Przewiń w dół o jedną linię" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Zamknij okno" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Zmień rozmiar terminala w górę" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Zmień rozmiar terminala w dół" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Zmień rozmiar terminala w lewo" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Zmień rozmiar terminala w prawo" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Przesuń kartę w prawo" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Przesuń kartę w lewo" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maksymalizuj terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Powiększ terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Przełącza do następnej karty" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Przełącza do poprzedniej karty" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Przełącz na pierwszą kartę" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Przełącz na drugą kartę" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Przełącz na trzecią kartę" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Przełącz na czwartą kartę" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Przełącz na piątą kartę" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Przełącz na szóstą kartę" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Przełącz na siódmą kartę" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Przełącz na ósmą kartę" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Przełącz na dziewiątą kartę" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Przełącz na dziesiątą kartę" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Przełącz na pełny ekran" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Wyzeruj terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Wyzeruj i wyczyść terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Przełącz widoczność okna" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Tworzy nową grupę" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Grupuj wszystkie terminale" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Zgrupuj/Rozgrupuj wszystkie terminale" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Rozgrupuj wszystkie terminale" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Grupuj terminale w karcie" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Zgrupuj/Rozgrupuj termnale w zakładki" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Rozgrupuj termnale w zakłądki" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Tworzy nowe okno" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Utwórz nowy proces Terminatora" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Nie przekazuj naciśnięć klawiszy" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Przekazuj naciśnięcia klawiszy do grupy" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Nadawaj kluczowe wydarzenia do wszystkich" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Wstaw numer terminala" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Wstaw wyrównany numer terminala" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Edytuj tytuł okna" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Edytuj tytuł terminala" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Edytuj tytuł karty" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Otwórz okno uruchamiania układu" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Przełącz do następnego profilu" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Przełącz do poprzedniego profilu" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Otwórz okno preferencji" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Otwiera podręcznik użytkownika" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nowy profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nowy układ" @@ -1593,85 +1605,85 @@ msgstr "Pokaż _pasek przewijania" msgid "_Layouts..." msgstr "Układy..." -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Nowa grupa..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Brak" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Usuń grupę %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupuj wszystko w zakładkach" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Rozgrupuj wszytsko w zakładki" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Usuń wszystkie grupy" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zamknij grupę %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Nadawanie do wszystkich" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Nadawanie do grupy" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Wyłącz nadawanie" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Rozdziel do tej grupy" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Automatyczne czyszczenie grup" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "Wprowadź numer terminalu" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Wstaw _wyrównany numer terminala" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nie można odnaleźć powłoki" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nie można włączyć powłoki:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Zmiana nazwy okna" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Wpisz nowy tytuł dla okna Terminatora..." @@ -1789,6 +1801,9 @@ msgstr "" msgid "Tab %d" msgstr "Karta %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Nieskończone przewijanie" + #~ msgid "Current Locale" #~ msgstr "Bieżące ustawienia regionalne" diff --git a/po/pt.po b/po/pt.po index ffa3ac70..a8df0085 100644 --- a/po/pt.po +++ b/po/pt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Portuguese (https://www.transifex.com/terminator/teams/109338/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Múltiplos Terminais numa só janela" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "O robô futuro dos terminais" @@ -240,7 +240,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Disposição" @@ -409,7 +409,7 @@ msgid "Enabled" msgstr "Ativo" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nome" @@ -997,22 +997,26 @@ msgid "Scroll on _keystroke" msgstr "Deslocar ao premir a _tecla" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Deslocação infinita" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Deslocação para _trás:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linhas" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Deslocação" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1024,104 +1028,104 @@ msgstr "" "contornar determinadas aplicações e sistemas operativos que esperam um " "comportamento diferente do terminal." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Tecla _Backspace gera:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Tecla _Delete gera:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Reiniciar opções de compatibilidade originais" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilidade" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Focado" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inativo" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "A receber" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Ocultar tamanho do título" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Usar tipo de letra do sistema" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Escolha o tipo de letra para o título" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfis" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Tipo" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Perfil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Comando personalizado:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Diretório de trabalho:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Disposições" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Ação" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Associação de tecla" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Associação de teclas" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Plugin" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Este plug-in não tem opções de configuração" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plugins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1146,18 +1150,18 @@ msgstr "" "alguma sugestão, preencha a wishlist de erros.(ver à esquerda o link " "Development)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "O Manual" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Acerca" @@ -1254,234 +1258,242 @@ msgid "Search terminal scrollback" msgstr "Pesquisar para trás" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Deslocar para uma página acima" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Deslocar para uma página abaixo" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Deslocar para meia página acima" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Deslocar para meia página abaixo" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Deslocar para uma linha acima" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Deslocar para uma linha abaixo" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Fechar janela" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Redimensionar terminal para cima" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Redimensionar terminal para baixo" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Redimensionar terminal para a esquerda" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Redimensionar terminal para a direita" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Mover separador para a direita" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Mover separador para a esquerda" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximizar terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Ampliar terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Trocar para o separador seguinte" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Trocar para o separador anterior" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Trocar para o primeiro separador" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Trocar para o segundo separador" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Trocar para o terceiro separador" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Trocar para o quarto separador" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Trocar para o quinto separador" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Trocar para o sexto separador" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Trocar para o sétimo separador" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Trocar para o oitavo separador" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Trocar para o nono separador" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Trocar para o décimo separador" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Alternar ecrã completo" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Repor terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Repor e limpar o terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Alternar visibilidade da janela" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Agrupar terminais" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Agrupar/desagrupar terminais" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Deagrupar todos os terminais" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Agrupar terminais para um separador" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Agrupar/desagrupar terminais para um separador" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Desagrupar terminais do separador" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Criar nova janela" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Expandir novo processo terminator" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Não difundir pressões de teclas" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Difundir pressões de teclas para o grupo" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Difundir eventos de teclas para tudo" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Inserir número de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Inserir número do terminal almofadado" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Editar título da janela" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Editar título do terminal" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Editar título do separador" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Trocar para o perfil seguinte" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Trocar para o perfil anterior" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Abrir o manual" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Novo perfil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nova disposição" @@ -1578,85 +1590,85 @@ msgstr "Mostrar barra de de_slocação" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ovo grupo..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Nenhum" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Remover o grupo %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ag_rupar tudo num separador" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Desagr_upar tudo no separador" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Remover todos os grupos" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Fechar o grupo %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Difubdir tod_as" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Difundir _grupo" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Difusã_o desativada" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Separar este grupo" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Limpar grupos automati_camente" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Inserir número do terminal" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Incapaz de encontrar a consola" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Incapaz de iniciar a consola:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Renomear janela" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Digite o novo título para a janela Terminator..." @@ -1774,6 +1786,9 @@ msgstr "" msgid "Tab %d" msgstr "Separador %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Deslocação infinita" + #~ msgid "Current Locale" #~ msgstr "Configuração regional atual" diff --git a/po/pt_BR.po b/po/pt_BR.po index a15a853c..768eae4d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Anthony Louis , 2021\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/terminator/" @@ -131,7 +131,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -140,7 +140,7 @@ msgid "Multiple terminals in one window" msgstr "Múltiplos terminais em uma janela" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "O robo do futuro dos terminais" @@ -249,7 +249,7 @@ msgid "Terminator Layout Launcher" msgstr "Lançador de grupo de terminais" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Layout / Grupo" @@ -421,7 +421,7 @@ msgid "Enabled" msgstr "Habilitado" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Nome" @@ -1011,22 +1011,26 @@ msgid "Scroll on _keystroke" msgstr "Rolar ao _pressionar teclado" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Navegação Infinita" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "R_olar para trás:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "linhas" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Rolagem" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1038,104 +1042,104 @@ msgstr "" "contorne certos aplicativos e sistemas operacionais que esperam um " "comportamento diferente do terminal." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Tecla _Backspace gera:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Tecla _Delete gera:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Restaurar padrões para as opções de compatibilidade" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Compatibilidade" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Foco" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inativo" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Recebendo" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Esconder tamanho do título" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Utilizar a fonte do sistema" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Escolher Uma Fonte para Barra de Títulos" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Perfis" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Tipo" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Perfil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Comando personalizado" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Diretório de trabalho:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Disposições" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Ação" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Associação de tecla" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Associações de teclas" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Plugin" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Esse plug-in não tem opções de configuração" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Plug-ins" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "Versão: 2.11" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1159,11 +1163,11 @@ msgstr "" "possíveis melhorias na lista de desejo! (Veja a esquerda para o link para " "desenvolvimento)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "O Manual" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " @@ -1174,7 +1178,7 @@ msgstr "" "Bugs / " "Melhorias" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Sobre" @@ -1271,234 +1275,242 @@ msgid "Search terminal scrollback" msgstr "Procurar por barra de rolagem atrás no terminal" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Rolar uma página acima" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Rolar uma página abaixo" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Rolar meia página acima" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Rolar meia página abaixo" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Rolar uma linha acima" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Rolar uma linha abaixo" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Fechar janela" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Redimensionar o terminal acima" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Redimensionar o terminal abaixo" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Redimensionar o terminal à esqueda" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Redimensionar o terminal à direita" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Mover aba para a direita" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Mover aba para a esquerda" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximizar terminal" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Aumentar terminal" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Alternar para próxima aba" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Alternar para aba anterior" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Alternar para próxima aba" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Alternar para segunda aba" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Alternar para terceira aba" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Alternar para quarta aba" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Alternar para quinta aba" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Alternar para sexta aba" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Alternar para sétima aba" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Alternar para oitava aba" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Alternar para nona aba" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Alternar para décima aba" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Alterar para tela cheia" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Reiniciar o terminal" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Reiniciar e limpar o terminal" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Alternar visibilidade da janela" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "Criar novo grupo" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Agrupar todos os terminais" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Agrupar/Desagrupar todos os terminais" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Desagrupar todos os terminais" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Agrupar os terminais em abas" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Agrupar/Desagrupar terminais em aba" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Desagrupar terminais em aba" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Criar uma nova janela" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Gerar um novo processo de terminal" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Não transmitir pressionamento de teclas" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Transmitir pressionamento de teclas para grupo" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Transmitir eventos chave para todos" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Insira o número do terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Insira o número de terminais preenchidos" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Editar título da janela" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Editar título do terminal" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Editar título da guia" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Abrir janela lançador de layout" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Alternar para o próximo perfil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Alternar para o perfil anterior" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "Abrir janela de Preferências" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Abrir o manual" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Novo perfil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nova disposição" @@ -1595,85 +1607,85 @@ msgstr "Mostrar _barras de rolagem" msgid "_Layouts..." msgstr "_Layouts..." -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Novo grupo..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Nenhum" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Remover grupo %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Ag_rupar tudo em uma aba" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Desagru_par todas as abas" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Remover todos grupos" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Fechar grupo %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Transmissão _todos" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Transmissão _grupo" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Transmissão_desativada" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "_Dividir para este grupo" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Limpar_grupos automaticamente" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Inserir número do terminal" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Inserir _monte de números de terminal" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Incapaz de encontrar um shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Incapaz de iniciar o shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Renomear janela" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Insira um novo título para a janela do terminal" @@ -1791,6 +1803,9 @@ msgstr "" msgid "Tab %d" msgstr "Aba %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Navegação Infinita" + #~ msgid "Current Locale" #~ msgstr "Localização atual" diff --git a/po/ro.po b/po/ro.po index 8d0f02c6..6cb78dc1 100644 --- a/po/ro.po +++ b/po/ro.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Romanian (https://www.transifex.com/terminator/teams/109338/" @@ -132,7 +132,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -141,7 +141,7 @@ msgid "Multiple terminals in one window" msgstr "Terminale multiple într-o singură fereastră" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Viitorul robot al terminalelor" @@ -238,7 +238,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -407,7 +407,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -995,22 +995,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1018,104 +1022,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profile" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1129,18 +1133,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1237,234 +1241,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Introdu numărul de terminal" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Inserează numărul de completare terminal" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Profil nou" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Mod de aranjare nou" @@ -1561,85 +1573,85 @@ msgstr "Arată _bara de derulare" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Șterge grupul %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_rupează totul in tab" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Șterge toate grupele" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Închide grupa %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nu s-a găsit niciun shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Imposibil de pornit shell-ul" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ru.po b/po/ru.po index 6ccdae4e..a6a599aa 100644 --- a/po/ru.po +++ b/po/ru.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Russian (https://www.transifex.com/terminator/teams/109338/" @@ -20,9 +20,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -133,7 +133,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -142,7 +142,7 @@ msgid "Multiple terminals in one window" msgstr "Несколько терминалов в одном окне" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Технологии будущего для терминалов" @@ -245,7 +245,7 @@ msgid "Terminator Layout Launcher" msgstr "Запуск компоновки Terminator" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Компоновка" @@ -415,7 +415,7 @@ msgid "Enabled" msgstr "Включено" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Название" @@ -1003,22 +1003,26 @@ msgid "Scroll on _keystroke" msgstr "Прок_ручивать при нажатии клавиши" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Бесконечная прокрутка" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "О_братная прокрутка:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "строки" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Прокрутка" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1030,104 +1034,104 @@ msgstr "" "работать с некоторыми приложениями и операционными ситемами, ожидающими " "другого поведения терминала. " -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Клавиша _Backspace генерирует:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Клавиша _Delete генерирует:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Восстановить параметры совместимости по умолчанию" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Совместимость" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "В фокусе" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Неактивный" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Получение" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Убрать размер терминала из заголовка" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Использовать системный шрифт" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Укажите шрифт заголовка" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профили" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Тип" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Профиль:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Пользовательская команда:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Рабочий каталог:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Шаблоны" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Действие" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Комбинация клавиш" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Комбинации клавиш" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Надстройка" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Этот плагин не имеет параметров конфигурации" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Модули" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1152,18 +1156,18 @@ msgstr "" "либо предложения, пожалуйста озвучьте их на багтрекере (wishlist bugs)! (см. " "сайт разработчиков)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Руководство" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Сведения о программе" @@ -1260,234 +1264,242 @@ msgid "Search terminal scrollback" msgstr "Поиск в буфере обратной прокрутки терминала" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Прокрутить вверх на страницу" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Прокрутить вниз на страницу" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Прокрутить вверх на полстраницы" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Прокрутить вниз на полстраницы" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Прокрутить вверх на строку" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Прокрутить вниз на строку" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Закрыть окно" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Изменить размер терминала сверху" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Изменить размер терминала снизу" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Изменить размер терминала слева" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Изменить размер терминала справа" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Переместить вкладку вправо" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Переместить вкладку влево" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Развернуть терминал" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Масштабировать терминал" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Переключиться на следующую вкладку" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Переключиться на предыдущую вкладку" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Переключиться на первую вкладку" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Переключиться на вторую вкладку" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Переключиться на третью вкладку" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Переключиться на четвёртую вкладку" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Переключиться на пятую вкладку" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Переключиться на шестую вкладку" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Переключиться на седьмую вкладку" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Переключиться на восьмую вкладку" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Переключиться на девятую вкладку" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Переключиться на десятую вкладку" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Переключение полноэкранного режима" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Сброс терминала" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Сброс и очистка терминала" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Показать/Скрыть окно" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Группировать все терминалы" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Группировать/разрознить все терминалы" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Разгруппировать все терминалы" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Группировать терминалы во вкладке" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Группировать/разрознить терминалы во вкладке" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Разгруппировать терминалы во вкладке" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Создать новое окно" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Создать новый процесс Terminator'а" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Не транслировать нажатия клавиш" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Транслировать нажатия клавиш в группу терминалов" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Транслировать нажатия клавиш во все терминалы" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Вставить номер терминала" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Вставить номер терминала" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Изменить заголовок окна" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Изменить наименование терминала" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Изменить наименование вкладки" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Открыть окно компоновщика" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Переключиться на следующий профиль" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Переключиться на предыдущий профиль" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Открыть руководство" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Создать профиль" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Новое расположение" @@ -1584,85 +1596,85 @@ msgstr "Показать полосу прокрутки" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "Новая гр_уппа..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "_Ничего" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Удалить группу %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "С_группировать всё во вкладке" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Раз_рознить терминалы во вкладке" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Удалить все группы" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Закрыть группу %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Транслировать во вс_е терминалы" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "Транслировать гру_ппе" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Отключить трансляцию клавиш" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Поделить на _эту группу" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Автос_тирание у групп" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "_Добавить номер терминала" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Вставить _номер терминала" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Не удается найти оболочку (shell)" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Не удается запустить оболочку:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Переименование окна" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Введите новое название для окна Terminator..." @@ -1780,6 +1792,9 @@ msgstr "" msgid "Tab %d" msgstr "Вкладка %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Бесконечная прокрутка" + #~ msgid "Current Locale" #~ msgstr "Текущая языковая настройка" diff --git a/po/ru_RU.po b/po/ru_RU.po index 8893f3af..c4d9dcdb 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Russian (Russia) (https://www.transifex.com/terminator/" @@ -20,9 +20,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -126,7 +126,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Терминатор" @@ -135,7 +135,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -232,7 +232,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -399,7 +399,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -987,22 +987,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1010,104 +1014,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1121,18 +1125,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1229,234 +1233,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1553,85 +1565,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/si.po b/po/si.po index e023389c..03afb1ba 100644 --- a/po/si.po +++ b/po/si.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Sinhala (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "ටර්මිනේටර්" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "එක් වින්ඩෝවක ටර්මිනල් රාශියක්" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "ස්ක්‍රෝල්බාරය_පෙන්වන්න" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "ෙෂලය සොයාගැනීමට නොහැකිය" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/sk.po b/po/sk.po index 92d1ad9e..06c4f405 100644 --- a/po/sk.po +++ b/po/sk.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Slovak (https://www.transifex.com/terminator/teams/109338/" @@ -130,7 +130,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminátor" @@ -139,7 +139,7 @@ msgid "Multiple terminals in one window" msgstr "Viaceré terminály v jednom okne" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robotická budúcnosť terminálov" @@ -236,7 +236,7 @@ msgid "Terminator Layout Launcher" msgstr "Spúšťač rozhraní Terminatora" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Rozloženie" @@ -406,7 +406,7 @@ msgid "Enabled" msgstr "Povolené" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Názov" @@ -994,22 +994,26 @@ msgid "Scroll on _keystroke" msgstr "Rolovať pri stlačení _klávesu" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Nekonečná pamäť riadkov" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Počet pamätaných _riadkov:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "riadky" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Posúvanie" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1020,104 +1024,104 @@ msgstr "" "nebudú fungovať správne. Sú tu iba preto, aby iné aplikácie mohli fungovať v " "prípade, že očakávajú iné chovanie terminálu." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Klávesa _Backspace generuje:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Kláves _Delete generuje:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Obnoviť predvolené hodnoty pre voľby kompatibility" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilita" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Aktívne" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Neaktívne" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Príjem" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "Skryť veľkosť z názvu" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "_Použiť systémové písmo" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "Vybrať písmo titulku" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profily" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Typ" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "Vlastný príkaz:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Pracovný adresár:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Rozloženia" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "Akcia" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "Klávesová skratka" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Klávesové skratky" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Zásuvný modul" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Tento plugin nemá žiadne možnosti konfigurácie" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Doplnky" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1141,18 +1145,18 @@ msgstr "" "používateľov. Ak máte nejaké návrhy, prosím, pošlite vaše želanie do systému " "na hlásenie chýb (odkaz na Vývoj nájdete vľavo)." -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "Návod" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "O aplikácií" @@ -1249,234 +1253,242 @@ msgid "Search terminal scrollback" msgstr "Hľadať v histórii okna terminálu" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "Posunúť o stránku vyššie v histórii" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "Posunúť o stránku nižšie v histórii" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "Posunúť o pol stránky vyššie v histórii" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "Posunúť o pol stránky nižšie v histórii" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "Posunúť o riadok vyššie v histórii" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "Posunúť o riadok nižšie v histórii" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Zatvoriť okno" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "Zmeniť veľkosť terminálu hore" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "Zmeniť veľkosť terminálu dolu" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "Zmeniť veľkosť terminálu vľavo" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "Zmeniť veľkosť terminálu vpravo" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "Presunúť kartu vpravo" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "Presunúť kartu vľavo" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "Maximalizovať terminál" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "Zväčšiť terminál" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Prepnúť na ďalšiu kartu" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Prepnúť na predchádzajúcu kartu" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "Prepnúť na prvú kartu" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "Prepnúť na druhú kartu" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "Prepnúť na tretiu kartu" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "Prepnúť na štvrtú kartu" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "Prepnúť na piatu kartu" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "Prepnúť na šiestu kartu" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "Prepnúť na siedmu kartu" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "Prepnúť na ôsmu kartu" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "Prepnúť na deviatu kartu" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "Prepnúť na desiatu kartu" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Prepnúť na celú obrazovku" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "Obnoviť terminál" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "Obnoviť a vyčistiť terminál" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "Prepnúť viditeľnosť okna" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "Zoskupiť všetky terminály" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "Zoskupiť/Zrušiť zoskupenie všetkých terminálov" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "Zrušiť zoskupenie všetkých terminálov" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "Zoskupiť terminály v karte" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "Zoskupiť/Zrušiť zoskupenie terminálov v karte" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "Zrušiť zoskupenie terminálov v karte" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Vytvoriť nové okno" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "Spustiť nový proces Terminator" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "Nevysielať stlačenia klávesov" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "Vysielať stlačenia klávesov skupine" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "Vysielať stlačenia klávesov všetkým" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Zadať číslo terminálu" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Vložiť vypchané číslo terminála" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "Upraviť názov okna" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "Upraviť názov terminálu" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "Upraviť názov karty" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "Otvoriť okno spúšťača rozložení" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "Prepnúť na ďalší profil" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "Prepnúť na predošlý profil" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Otvoriť návod" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nový profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nový rozmiestnenie" @@ -1573,85 +1585,85 @@ msgstr "Zobraziť po_suvník" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "N_ová skupina..." -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "Žiade_n" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Odobrať skupinu %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Zoskupiť všetko na karte" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "Odsk_upiť všetky v karte" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Odobrať všetky skupiny" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zatvoriť skupinu %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "Vysiel_ať všetky" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "V_ysielať skupinu" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "Vysielanie _vypnuté" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "Rozdeliť na túto _skupinu" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "Automati_cky čistiť skupiny" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "Vložiť číslo term_inálu" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "Vložiť _zarovnané číslo terminálu" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Nepodarilo sa nájsť shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Nepodarilo sa spustiť shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Premenovať okno" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Zadajte nový názov pre okno Terminator..." @@ -1769,6 +1781,9 @@ msgstr "" msgid "Tab %d" msgstr "Karta %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Nekonečná pamäť riadkov" + #~ msgid "Current Locale" #~ msgstr "Aktuálne lokálne nastavenie" diff --git a/po/sl.po b/po/sl.po index ac43e894..f4f7b70a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Slovenian (https://www.transifex.com/terminator/teams/109338/" @@ -20,8 +20,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Več terminalov v enem oknu" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -402,7 +402,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -990,22 +990,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1013,104 +1017,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profili" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1124,18 +1128,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1232,234 +1236,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Vstavi številko terminala" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Nov profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Nova postavitev" @@ -1556,85 +1568,85 @@ msgstr "Pokaži _drsnik" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Odstrani skupino %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Zd_ruži vse v zavihku" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Odstrani vse skupine" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Zapri skupino %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Ni možno najti lupine" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Ni možno zagnati lupine:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Preimenuj okno" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/sq.po b/po/sq.po index 22257b58..2ff9e6bf 100644 --- a/po/sq.po +++ b/po/sq.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Albanian (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Shumë terminale në një dritare" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/sr.po b/po/sr.po index e77b9b29..271ca4c6 100644 --- a/po/sr.po +++ b/po/sr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Serbian (https://www.transifex.com/terminator/teams/109338/" @@ -20,8 +20,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Command uuid req. Description #: ../remotinator.py:39 @@ -125,7 +125,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Терминатор" @@ -134,7 +134,7 @@ msgid "Multiple terminals in one window" msgstr "Више терминала у једном прозору" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -231,7 +231,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -400,7 +400,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -988,22 +988,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1011,104 +1015,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профили" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1122,18 +1126,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1230,234 +1234,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Унеси број терминала" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Унеси уметнут број терминала" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Нови профил" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Нови изглед" @@ -1554,85 +1566,85 @@ msgstr "Прикажи _препис" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Уклони %s групу" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Гру_пиши све у језичке" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Уклони све групе" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Затвори %s групу" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Љуска није пронађена" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Покретање љуске није успело:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/su.po b/po/su.po index d44563e9..bcc3799a 100644 --- a/po/su.po +++ b/po/su.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Sundanese (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Loba terminal dina hiji jandela" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/sv.po b/po/sv.po index 141956fe..882a16d9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Swedish (https://www.transifex.com/terminator/teams/109338/" @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Flera terminaler i ett fönster" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Robot-framtid för terminaler" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Utformning" @@ -404,7 +404,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Namn" @@ -992,22 +992,26 @@ msgid "Scroll on _keystroke" msgstr "Rulla vid _tangentnedtryckning" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Obegränsad rullningshistorik" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "Rullnings_historik:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "rader" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Rullning" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1019,104 +1023,104 @@ msgstr "" "använda vissa program och operativsystem som förväntar sig ett annat " "terminalbeteende." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_Backstegstangenten genererar:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "_Delete-tangenten genererar:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Återställ kompatibilitetsalternativ till standardvärden" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Kompatibilitet" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Inaktiv" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiler" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "Typ" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "Profil:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "Arbetskatalog:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Layouter" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Tangentbindningar" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "Insticksmodul" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Denna insticksmodul har inga konfigureringsalternativ" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Insticksmoduler" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1130,18 +1134,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "Om" @@ -1238,234 +1242,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 +msgid "Scroll upwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:136 +msgid "Scroll downwards one line" +msgstr "" + +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "Stäng fönstret" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "Växla till nästa flik" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "Växla till föregående flik" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "Växla helskärmsläge" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "Skapa ett nytt fönster" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Infoga terminalnummer" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Infoga vadderat terminalnummer" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "Öppna handboken" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Ny profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Ny layout" @@ -1562,85 +1574,85 @@ msgstr "Visa _rullningslist" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Ta bort grupp %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "G_ruppera alla i fliken" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Ta bort alla grupper" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Stäng grupp %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Kan inte hitta ett skal" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kan inte starta skalet:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Byt namn på fönster" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Ange en ny rubrik för Terminator-fönstret …" @@ -1758,6 +1770,9 @@ msgstr "" msgid "Tab %d" msgstr "Flik %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Obegränsad rullningshistorik" + #~ msgid "Current Locale" #~ msgstr "Aktuell lokal" diff --git a/po/sw.po b/po/sw.po index 3894f0bd..2af742ff 100644 --- a/po/sw.po +++ b/po/sw.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Swahili (https://www.transifex.com/terminator/teams/109338/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "Tungo amri kadhaa kwenye window moja" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "Umbile ya kiroboti ya tungo amri" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -402,7 +402,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -990,22 +990,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1013,104 +1017,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1124,18 +1128,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1232,234 +1236,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1556,85 +1568,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ta.po b/po/ta.po index 7e85a9e7..3fe565f1 100644 --- a/po/ta.po +++ b/po/ta.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Tamil (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "முனையம்" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "ஒரு சாளரத்தில் பல முனையங்கள்" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -398,7 +398,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -986,22 +986,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1009,104 +1013,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "_ நகர்வு முக்கிய உருவாக்குகிறது:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "விவரக்குறிப்புகள்" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1120,18 +1124,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1228,234 +1232,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "முனையத்தில் எண்ணை சேர்க்க" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Padded முனைய எண்ணை சேர்க்க" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "புதிய விவரம்" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "புதிய வடிவமைப்பு" @@ -1552,85 +1564,85 @@ msgstr "சுருள் பட்டியை காட்டு" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "குழுக்களை நீக்க %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "அனைத்து தாவலில் குழு" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "அனைத்து குழுக்களை நீக்க" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "குழுவை மூடு %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "நிரப்பட்ட முனைய எண்ணை சேர்க்க" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "ஓட்டை ஆரம்பிக்க முடியவில்லை:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/te.po b/po/te.po index 6ac1a27c..f2452145 100644 --- a/po/te.po +++ b/po/te.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Telugu (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "టెర్మినేటర్" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "ఒకే విండోలో బహుళ టెర్మినల్స్" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "ప్రొఫైల్స్" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "కొత్త ప్రొఫైల్" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "కొత్త నమూనా" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/terminator.pot b/po/terminator.pot index 9c7a019d..13b0bf00 100644 --- a/po/terminator.pot +++ b/po/terminator.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:55+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -119,7 +119,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -128,7 +128,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -225,7 +225,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -392,7 +392,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -980,22 +980,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1003,104 +1007,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1114,18 +1118,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1222,234 +1226,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1546,85 +1558,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/th.po b/po/th.po index 836088b9..464bff20 100644 --- a/po/th.po +++ b/po/th.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Thai (https://www.transifex.com/terminator/teams/109338/th/)\n" @@ -123,7 +123,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -132,7 +132,7 @@ msgid "Multiple terminals in one window" msgstr "หลายเทอร์มินัลในหน้าต่างเดียว" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -229,7 +229,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -396,7 +396,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -984,22 +984,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1007,104 +1011,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1118,18 +1122,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1226,234 +1230,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "โปรไฟล์ใหม่" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1550,85 +1562,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "ลบกลุ่ม %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "ลบกลุ่มทั้งหมด" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "ปิดกลุ่ม %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/tr.po b/po/tr.po index 6b0a56ae..c4800e50 100644 --- a/po/tr.po +++ b/po/tr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Turkish (https://www.transifex.com/terminator/teams/109338/" @@ -127,7 +127,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Uçbirim" @@ -136,7 +136,7 @@ msgid "Multiple terminals in one window" msgstr "Tek pencerede birden çok uçbirim" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -233,7 +233,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator dizilim başlatıcı" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "Dizilim" @@ -403,7 +403,7 @@ msgid "Enabled" msgstr "Etkin" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "Adı" @@ -991,22 +991,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 +msgid "lines" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Kaydırma" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1014,104 +1018,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Geri tuşuna basıldığında:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Sil tuşuna basıldığında:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Uyumluluk" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "Odaklanmış" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "Pasif" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "Alınıyor" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Profiller" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Eklentiler" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1125,18 +1129,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1233,234 +1237,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Uçbirim numarası ekle" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Takımlı uçbirim numarası ekle" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Yeni Profil" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Yeni Düzen" @@ -1557,85 +1569,85 @@ msgstr "K_aydırma çubuğunu göster" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "%s grubunu kaldır" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "Hepsini sekmede t_opla" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Tüm grupları kaldır" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "%s grubunu kapat" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Kabuk bulunamadı" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Kabuk başlatılamadı:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/tyv.po b/po/tyv.po index fd9e80b9..391485a2 100644 --- a/po/tyv.po +++ b/po/tyv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: terminator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2015-08-03 19:30+0000\n" "Last-Translator: boracasli \n" "Language-Team: Tuvinian \n" @@ -120,7 +120,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -129,7 +129,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -226,7 +226,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -393,7 +393,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -981,22 +981,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1004,104 +1008,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1115,18 +1119,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1223,234 +1227,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1547,85 +1559,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/ug.po b/po/ug.po index e30092f6..44f3c9aa 100644 --- a/po/ug.po +++ b/po/ug.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Uyghur (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/uk.po b/po/uk.po index 9b141b25..a0b11f95 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Artem Mikhmel, 2021\n" "Language-Team: Ukrainian (https://www.transifex.com/terminator/teams/109338/" @@ -133,7 +133,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -142,7 +142,7 @@ msgid "Multiple terminals in one window" msgstr "Кілька терміналів в одному вікні" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -239,7 +239,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -410,7 +410,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -998,22 +998,26 @@ msgid "Scroll on _keystroke" msgstr "_Прокручувати при натисканні клавіші" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "Нескінченна прокрутка" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "З_воротна прокрутка:" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "рядки" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "Прокрутка" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1025,104 +1029,104 @@ msgstr "" "з деякими програмами та операційними ситемами, які очікували іншої поведінки " "терміналу." -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Клавіша _Backspace генерує:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Клавіша _Delete генерує:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "_Восстановить параметры совместимости по умолчанию" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "Сумісність" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "Профілі" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "Шаблони" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "Комбінації клавіш" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "Цей плагін не має параметрів конфігурації" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "Плагіни" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1136,18 +1140,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1244,234 +1248,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 +msgid "Broadcast key presses to group" +msgstr "" + +#: ../terminatorlib/prefseditor.py:176 +msgid "Broadcast key events to all" +msgstr "" + +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "Введіть номер терміналу" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "Вставити консольне число з цифрової клавіатури" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "Новий профіль" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "Поточна локаль" @@ -1568,85 +1580,85 @@ msgstr "Показувати повзунок прокрутки" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "Видалити групу %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "З_групувати все на вкладці" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "Видалити усі групи" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "Закрити групу %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "Не вдалося знайти командну оболонку" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "Неможливо запустити оболонку" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "Перейменування вікна" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "Введіть нову назву для вікна Terminator..." @@ -1764,6 +1776,9 @@ msgstr "" msgid "Tab %d" msgstr "Вкладка %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "Нескінченна прокрутка" + #~ msgid "Current Locale" #~ msgstr "Поточна локаль" diff --git a/po/ur.po b/po/ur.po index dbe5a887..63a64d9a 100644 --- a/po/ur.po +++ b/po/ur.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Urdu (https://www.transifex.com/terminator/teams/109338/ur/)\n" @@ -123,7 +123,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -132,7 +132,7 @@ msgid "Multiple terminals in one window" msgstr "ایک دریچے میں ایک سے زیادہ ٹرمنل" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -229,7 +229,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -396,7 +396,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -984,22 +984,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1007,104 +1011,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1118,18 +1122,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1226,234 +1230,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1550,85 +1562,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/vi.po b/po/vi.po index 2762a0ec..b3ce7aa1 100644 --- a/po/vi.po +++ b/po/vi.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Vietnamese (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "Mở nhiều terminal trong cùng cửa sổ" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/wa.po b/po/wa.po index 065f4944..8938efc1 100644 --- a/po/wa.po +++ b/po/wa.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Walloon (https://www.transifex.com/terminator/teams/109338/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8c785064..e949b942 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Chinese (China) (https://www.transifex.com/terminator/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator 终端终结者" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "一个窗口中的多个终端" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "高级终端的未来" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator布局启动器" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "布局" @@ -402,7 +402,7 @@ msgid "Enabled" msgstr "已启用" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "名称" @@ -990,22 +990,26 @@ msgid "Scroll on _keystroke" msgstr "击键时滚动(_K)" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "无限回滚" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "回滚(_B):" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "行" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "滚动" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1015,104 +1019,104 @@ msgstr "" "注意:这些选项可能造成一些应用程序产生不正确的行为。仅用于允" "许您在一些应用程序和操作系统中作调整以获得不同的终端行为。" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "按 _Backspace 键产生:" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "按 _Delete 键产生:" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "重置兼容性选项为默认值(_R)" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "兼容性" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "聚焦的" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "非活动" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "接收中" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "在标题中隐藏大小" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "使用系统字体(_U)" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "选择标题栏字体" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "配置" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "类型" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "配置:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "自定义命令:" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "工作目录:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "布局" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "动作" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "键绑定" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "快捷键" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "插件" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "此插件没有配置项" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "插件" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1132,18 +1136,18 @@ msgstr "" "时也希望向扩展更多不同方面的实用特性从而服务于系统管理员和其他用户。如果你有" "任何建议,请向wishlist中提交!(看左边的开发者链接)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "手册" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "关于" @@ -1240,234 +1244,242 @@ msgid "Search terminal scrollback" msgstr "回滚搜索终端" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "向上滚动一页" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "向下滚动一页" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "向上滚动半页" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "向下滚动半页" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "向上滚动一行" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "向下滚动一行" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "关闭窗口" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "向上缩放终端" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "向下缩放终端" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "向左缩放终端" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "向右缩放终端" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "向右移动标签" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "向左移动标签" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "最大化终端" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "缩放终端" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "切换到后一个标签页" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "切换到前一个标签页" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "切换到第一个标签页" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "切换到第二个标签页" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "切换到第三个标签页" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "切换到第四个标签页" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "切换到第五个标签页" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "切换到第六个标签页" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "切换到第七个标签页" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "切换到第八个标签页" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "切换到第九个标签页" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "切换到第十个标签页" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "切换全屏" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "重置终端" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "重置并清空终端" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "切换窗口可见性" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "将所有终端合为一组" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "分组/解组所有终端" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "解组所有终端" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "将标签页中的终端合为一组" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "分组/解组标签页中的终端" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "解组所有标签页中的终端" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "创建一个新窗口" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "启动一个新的Terminator进程" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "不要广播键入" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "广播键入到组" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "广播键入到所有终端" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "插入终端编号" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "插入适当宽度的终端号" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "编辑窗口标题" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "编辑终端标题" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "编辑标签标题" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "打开布局启动器窗口" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "切换到下一个配置文件" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "切换到上一个配置文件" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "打开手册" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "新配置" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "新布局" @@ -1564,85 +1576,85 @@ msgstr "显示滚动条" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "新分组……(e)" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "无(_N)" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "移除组 %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "将所有标签页中的终端合为一组(_R)" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "解散标签页中的分组(_U)" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "移除所有的组" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "关闭组 %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "广播到所有(_A)" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "广播到组(_G)" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "不广播(_O)" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "在组内分割(_S)" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "自动清理分组(_C)" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "插入终端编号(_I)" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "插入对齐的终端编号(_I)" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "无法找到shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "无法启动shell:" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "重命名窗口" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "输入新的Terminator窗口标题" @@ -1760,6 +1772,9 @@ msgstr "" msgid "Tab %d" msgstr "标签 %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "无限回滚" + #~ msgid "Current Locale" #~ msgstr "当前 Locale" diff --git a/po/zh_HK.po b/po/zh_HK.po index 577289b0..d7ad8331 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Chinese (Hong Kong) (https://www.transifex.com/terminator/" @@ -124,7 +124,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "" @@ -133,7 +133,7 @@ msgid "Multiple terminals in one window" msgstr "" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "" @@ -230,7 +230,7 @@ msgid "Terminator Layout Launcher" msgstr "" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "" @@ -397,7 +397,7 @@ msgid "Enabled" msgstr "" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "" @@ -985,22 +985,26 @@ msgid "Scroll on _keystroke" msgstr "" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" +msgid "Scroll cache (experimental)" msgstr "" #: ../terminatorlib/preferences.glade.h:127 -msgid "Scroll_back:" +msgid "Infinite scrollback" msgstr "" #: ../terminatorlib/preferences.glade.h:128 -msgid "lines" +msgid "Scroll_back:" msgstr "" #: ../terminatorlib/preferences.glade.h:129 -msgid "Scrolling" +msgid "lines" msgstr "" #: ../terminatorlib/preferences.glade.h:130 +msgid "Scrolling" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1008,104 +1012,104 @@ msgid "" "i>" msgstr "" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1119,18 +1123,18 @@ msgid "" "the Development link)" msgstr "" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "" @@ -1227,234 +1231,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 -msgid "Scroll upwards one page" +msgid "Scroll backwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:130 -msgid "Scroll downwards one page" +msgid "Scroll forwards in the cache" msgstr "" #: ../terminatorlib/prefseditor.py:131 -msgid "Scroll upwards half a page" +msgid "Scroll upwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:132 -msgid "Scroll downwards half a page" +msgid "Scroll downwards one page" msgstr "" #: ../terminatorlib/prefseditor.py:133 -msgid "Scroll upwards one line" +msgid "Scroll upwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:134 -msgid "Scroll downwards one line" +msgid "Scroll downwards half a page" msgstr "" #: ../terminatorlib/prefseditor.py:135 -msgid "Close window" +msgid "Scroll upwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:136 -msgid "Resize the terminal up" +msgid "Scroll downwards one line" msgstr "" #: ../terminatorlib/prefseditor.py:137 -msgid "Resize the terminal down" +msgid "Close window" msgstr "" #: ../terminatorlib/prefseditor.py:138 -msgid "Resize the terminal left" +msgid "Resize the terminal up" msgstr "" #: ../terminatorlib/prefseditor.py:139 -msgid "Resize the terminal right" +msgid "Resize the terminal down" msgstr "" #: ../terminatorlib/prefseditor.py:140 -msgid "Move the tab right" +msgid "Resize the terminal left" msgstr "" #: ../terminatorlib/prefseditor.py:141 -msgid "Move the tab left" +msgid "Resize the terminal right" msgstr "" #: ../terminatorlib/prefseditor.py:142 -msgid "Maximize terminal" +msgid "Move the tab right" msgstr "" #: ../terminatorlib/prefseditor.py:143 -msgid "Zoom terminal" +msgid "Move the tab left" msgstr "" #: ../terminatorlib/prefseditor.py:144 -msgid "Switch to the next tab" +msgid "Maximize terminal" msgstr "" #: ../terminatorlib/prefseditor.py:145 -msgid "Switch to the previous tab" +msgid "Zoom terminal" msgstr "" #: ../terminatorlib/prefseditor.py:146 -msgid "Switch to the first tab" +msgid "Switch to the next tab" msgstr "" #: ../terminatorlib/prefseditor.py:147 -msgid "Switch to the second tab" +msgid "Switch to the previous tab" msgstr "" #: ../terminatorlib/prefseditor.py:148 -msgid "Switch to the third tab" +msgid "Switch to the first tab" msgstr "" #: ../terminatorlib/prefseditor.py:149 -msgid "Switch to the fourth tab" +msgid "Switch to the second tab" msgstr "" #: ../terminatorlib/prefseditor.py:150 -msgid "Switch to the fifth tab" +msgid "Switch to the third tab" msgstr "" #: ../terminatorlib/prefseditor.py:151 -msgid "Switch to the sixth tab" +msgid "Switch to the fourth tab" msgstr "" #: ../terminatorlib/prefseditor.py:152 -msgid "Switch to the seventh tab" +msgid "Switch to the fifth tab" msgstr "" #: ../terminatorlib/prefseditor.py:153 -msgid "Switch to the eighth tab" +msgid "Switch to the sixth tab" msgstr "" #: ../terminatorlib/prefseditor.py:154 -msgid "Switch to the ninth tab" +msgid "Switch to the seventh tab" msgstr "" #: ../terminatorlib/prefseditor.py:155 -msgid "Switch to the tenth tab" +msgid "Switch to the eighth tab" msgstr "" #: ../terminatorlib/prefseditor.py:156 -msgid "Toggle fullscreen" +msgid "Switch to the ninth tab" msgstr "" #: ../terminatorlib/prefseditor.py:157 -msgid "Reset the terminal" +msgid "Switch to the tenth tab" msgstr "" #: ../terminatorlib/prefseditor.py:158 -msgid "Reset and clear the terminal" +msgid "Toggle fullscreen" msgstr "" #: ../terminatorlib/prefseditor.py:159 -msgid "Toggle window visibility" +msgid "Reset the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:160 -msgid "Create new group" +msgid "Reset and clear the terminal" msgstr "" #: ../terminatorlib/prefseditor.py:161 -msgid "Group all terminals" +msgid "Toggle window visibility" msgstr "" #: ../terminatorlib/prefseditor.py:162 -msgid "Group/Ungroup all terminals" +msgid "Create new group" msgstr "" #: ../terminatorlib/prefseditor.py:163 -msgid "Ungroup all terminals" +msgid "Group all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:164 -msgid "Group terminals in window" +msgid "Group/Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:165 -msgid "Group/Ungroup terminals in window" +msgid "Ungroup all terminals" msgstr "" #: ../terminatorlib/prefseditor.py:166 -msgid "Ungroup terminals in window" +msgid "Group terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:167 -msgid "Group terminals in tab" +msgid "Group/Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:168 -msgid "Group/Ungroup terminals in tab" +msgid "Ungroup terminals in window" msgstr "" #: ../terminatorlib/prefseditor.py:169 -msgid "Ungroup terminals in tab" +msgid "Group terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:170 -msgid "Create a new window" +msgid "Group/Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:171 -msgid "Spawn a new Terminator process" +msgid "Ungroup terminals in tab" msgstr "" #: ../terminatorlib/prefseditor.py:172 -msgid "Don't broadcast key presses" +msgid "Create a new window" msgstr "" #: ../terminatorlib/prefseditor.py:173 -msgid "Broadcast key presses to group" +msgid "Spawn a new Terminator process" msgstr "" #: ../terminatorlib/prefseditor.py:174 -msgid "Broadcast key events to all" +msgid "Don't broadcast key presses" msgstr "" #: ../terminatorlib/prefseditor.py:175 -msgid "Insert terminal number" +msgid "Broadcast key presses to group" msgstr "" #: ../terminatorlib/prefseditor.py:176 -msgid "Insert padded terminal number" +msgid "Broadcast key events to all" msgstr "" #: ../terminatorlib/prefseditor.py:177 -msgid "Edit window title" +msgid "Insert terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:178 -msgid "Edit terminal title" +msgid "Insert padded terminal number" msgstr "" #: ../terminatorlib/prefseditor.py:179 -msgid "Edit tab title" +msgid "Edit window title" msgstr "" #: ../terminatorlib/prefseditor.py:180 -msgid "Open layout launcher window" +msgid "Edit terminal title" msgstr "" #: ../terminatorlib/prefseditor.py:181 -msgid "Switch to next profile" +msgid "Edit tab title" msgstr "" #: ../terminatorlib/prefseditor.py:182 -msgid "Switch to previous profile" +msgid "Open layout launcher window" msgstr "" #: ../terminatorlib/prefseditor.py:183 -msgid "Open the Preferences window" +msgid "Switch to next profile" msgstr "" #: ../terminatorlib/prefseditor.py:184 +msgid "Switch to previous profile" +msgstr "" + +#: ../terminatorlib/prefseditor.py:185 +msgid "Open the Preferences window" +msgstr "" + +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "" @@ -1551,85 +1563,85 @@ msgstr "顯示捲軸(_s)" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "無法找到 Shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 542be931..f5ff3ea6 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-22 00:51+0100\n" +"POT-Creation-Date: 2022-07-28 22:17+0100\n" "PO-Revision-Date: 2020-04-22 08:11+0000\n" "Last-Translator: Gnome Terminator , 2020\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/terminator/" @@ -129,7 +129,7 @@ msgstr "" #: ../data/terminator.desktop.in.h:1 ../data/terminator.appdata.xml.in.h:1 #: ../terminatorlib/plugins/activitywatch.py:83 #: ../terminatorlib/plugins/activitywatch.py:162 -#: ../terminatorlib/preferences.glade.h:156 +#: ../terminatorlib/preferences.glade.h:157 msgid "Terminator" msgstr "Terminator" @@ -138,7 +138,7 @@ msgid "Multiple terminals in one window" msgstr "單一視窗,多重終端" #: ../data/terminator.appdata.xml.in.h:3 -#: ../terminatorlib/preferences.glade.h:157 +#: ../terminatorlib/preferences.glade.h:158 msgid "The robot future of terminals" msgstr "終結者(Terminator) - 終端機器人的未來" @@ -235,7 +235,7 @@ msgid "Terminator Layout Launcher" msgstr "Terminator版面配置啟動器" #: ../terminatorlib/layoutlauncher.glade.h:2 -#: ../terminatorlib/preferences.glade.h:143 +#: ../terminatorlib/preferences.glade.h:144 msgid "Layout" msgstr "版面配置" @@ -402,7 +402,7 @@ msgid "Enabled" msgstr "啟用" #: ../terminatorlib/plugins/custom_commands.py:170 -#: ../terminatorlib/preferences.glade.h:145 +#: ../terminatorlib/preferences.glade.h:146 msgid "Name" msgstr "名稱" @@ -990,22 +990,26 @@ msgid "Scroll on _keystroke" msgstr "按鍵時還原至原來位置(_K)" #: ../terminatorlib/preferences.glade.h:126 -msgid "Infinite Scrollback" -msgstr "無限制" +msgid "Scroll cache (experimental)" +msgstr "" #: ../terminatorlib/preferences.glade.h:127 +msgid "Infinite scrollback" +msgstr "" + +#: ../terminatorlib/preferences.glade.h:128 msgid "Scroll_back:" msgstr "向後捲動(_B):" -#: ../terminatorlib/preferences.glade.h:128 +#: ../terminatorlib/preferences.glade.h:129 msgid "lines" msgstr "行" -#: ../terminatorlib/preferences.glade.h:129 +#: ../terminatorlib/preferences.glade.h:130 msgid "Scrolling" msgstr "捲動列" -#: ../terminatorlib/preferences.glade.h:130 +#: ../terminatorlib/preferences.glade.h:131 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " @@ -1016,104 +1020,104 @@ msgstr "" "在某些應用程式及作業系統需要不同的終端機運作方式時,提供暫時的解決方法。" -#: ../terminatorlib/preferences.glade.h:131 +#: ../terminatorlib/preferences.glade.h:132 msgid "_Backspace key generates:" msgstr "Backspace 鍵產生(_B)" -#: ../terminatorlib/preferences.glade.h:132 +#: ../terminatorlib/preferences.glade.h:133 msgid "_Delete key generates:" msgstr "Detelet 鍵產生(_D):" -#: ../terminatorlib/preferences.glade.h:133 +#: ../terminatorlib/preferences.glade.h:134 msgid "_Reset Compatibility Options to Defaults" msgstr "將有關兼容性的選項重設為預設值(_R)" -#: ../terminatorlib/preferences.glade.h:134 +#: ../terminatorlib/preferences.glade.h:135 msgid "Compatibility" msgstr "相容性" -#: ../terminatorlib/preferences.glade.h:135 +#: ../terminatorlib/preferences.glade.h:136 msgid "Focused" msgstr "當前視窗" -#: ../terminatorlib/preferences.glade.h:136 +#: ../terminatorlib/preferences.glade.h:137 msgid "Inactive" msgstr "非使用中" -#: ../terminatorlib/preferences.glade.h:137 +#: ../terminatorlib/preferences.glade.h:138 msgid "Receiving" msgstr "接收中" -#: ../terminatorlib/preferences.glade.h:138 +#: ../terminatorlib/preferences.glade.h:139 msgid "Hide size from title" msgstr "不在標題列顯示終端機大小(列數X行數)" -#: ../terminatorlib/preferences.glade.h:139 +#: ../terminatorlib/preferences.glade.h:140 msgid "_Use the system font" msgstr "使用系統字型" -#: ../terminatorlib/preferences.glade.h:140 +#: ../terminatorlib/preferences.glade.h:141 msgid "Choose A Titlebar Font" msgstr "選擇標題列字型" -#: ../terminatorlib/preferences.glade.h:141 +#: ../terminatorlib/preferences.glade.h:142 msgid "Titlebar" msgstr "" -#: ../terminatorlib/preferences.glade.h:142 +#: ../terminatorlib/preferences.glade.h:143 #: ../terminatorlib/terminal_popup_menu.py:204 msgid "Profiles" msgstr "設定組合" -#: ../terminatorlib/preferences.glade.h:144 +#: ../terminatorlib/preferences.glade.h:145 msgid "Type" msgstr "類型" -#: ../terminatorlib/preferences.glade.h:146 +#: ../terminatorlib/preferences.glade.h:147 msgid "Profile:" msgstr "設定檔:" -#: ../terminatorlib/preferences.glade.h:147 +#: ../terminatorlib/preferences.glade.h:148 msgid "Custom command:" msgstr "客製化命令" -#: ../terminatorlib/preferences.glade.h:148 +#: ../terminatorlib/preferences.glade.h:149 msgid "Working directory:" msgstr "工作目錄:" -#: ../terminatorlib/preferences.glade.h:149 +#: ../terminatorlib/preferences.glade.h:150 msgid "Layouts" msgstr "版面設置" -#: ../terminatorlib/preferences.glade.h:150 +#: ../terminatorlib/preferences.glade.h:151 msgid "Action" msgstr "動作" -#: ../terminatorlib/preferences.glade.h:151 +#: ../terminatorlib/preferences.glade.h:152 msgid "Keybinding" msgstr "快速鍵" -#: ../terminatorlib/preferences.glade.h:152 +#: ../terminatorlib/preferences.glade.h:153 msgid "Keybindings" msgstr "快速鍵" -#: ../terminatorlib/preferences.glade.h:153 +#: ../terminatorlib/preferences.glade.h:154 msgid "Plugin" msgstr "外掛程式" -#: ../terminatorlib/preferences.glade.h:154 +#: ../terminatorlib/preferences.glade.h:155 msgid "This plugin has no configuration options" msgstr "當前外掛程式沒有可設定的選項" -#: ../terminatorlib/preferences.glade.h:155 +#: ../terminatorlib/preferences.glade.h:156 msgid "Plugins" msgstr "外掛程式" -#: ../terminatorlib/preferences.glade.h:158 +#: ../terminatorlib/preferences.glade.h:159 msgid "Version: 2.1.1" msgstr "" -#: ../terminatorlib/preferences.glade.h:159 +#: ../terminatorlib/preferences.glade.h:160 msgid "" "The goal of this project is to produce a useful tool for arranging " "terminals. It is inspired by programs such as gnome-multi-term, quadkonsole, " @@ -1134,18 +1138,18 @@ msgstr "" "添加更多的功能,也希望向系統管理員和其他用戶提供更多有用的功能。如果您有任何" "建議,請提交您期待的功能清單!(請參閱左側的鏈結)" -#: ../terminatorlib/preferences.glade.h:162 +#: ../terminatorlib/preferences.glade.h:163 msgid "The Manual" msgstr "手冊" -#: ../terminatorlib/preferences.glade.h:163 +#: ../terminatorlib/preferences.glade.h:164 msgid "" "Development\n" "Bugs / " "Enhancements" msgstr "" -#: ../terminatorlib/preferences.glade.h:165 +#: ../terminatorlib/preferences.glade.h:166 msgid "About" msgstr "關於" @@ -1242,234 +1246,242 @@ msgid "Search terminal scrollback" msgstr "" #: ../terminatorlib/prefseditor.py:129 +msgid "Scroll backwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:130 +msgid "Scroll forwards in the cache" +msgstr "" + +#: ../terminatorlib/prefseditor.py:131 msgid "Scroll upwards one page" msgstr "往上捲動一頁" -#: ../terminatorlib/prefseditor.py:130 +#: ../terminatorlib/prefseditor.py:132 msgid "Scroll downwards one page" msgstr "往下捲動一頁" -#: ../terminatorlib/prefseditor.py:131 +#: ../terminatorlib/prefseditor.py:133 msgid "Scroll upwards half a page" msgstr "往上捲動半頁" -#: ../terminatorlib/prefseditor.py:132 +#: ../terminatorlib/prefseditor.py:134 msgid "Scroll downwards half a page" msgstr "往下捲動半頁" -#: ../terminatorlib/prefseditor.py:133 +#: ../terminatorlib/prefseditor.py:135 msgid "Scroll upwards one line" msgstr "往上捲動一行" -#: ../terminatorlib/prefseditor.py:134 +#: ../terminatorlib/prefseditor.py:136 msgid "Scroll downwards one line" msgstr "往下捲動一行" -#: ../terminatorlib/prefseditor.py:135 +#: ../terminatorlib/prefseditor.py:137 msgid "Close window" msgstr "關閉視窗" -#: ../terminatorlib/prefseditor.py:136 +#: ../terminatorlib/prefseditor.py:138 msgid "Resize the terminal up" msgstr "向上改變大小" -#: ../terminatorlib/prefseditor.py:137 +#: ../terminatorlib/prefseditor.py:139 msgid "Resize the terminal down" msgstr "向下改變大小" -#: ../terminatorlib/prefseditor.py:138 +#: ../terminatorlib/prefseditor.py:140 msgid "Resize the terminal left" msgstr "向左改變大小" -#: ../terminatorlib/prefseditor.py:139 +#: ../terminatorlib/prefseditor.py:141 msgid "Resize the terminal right" msgstr "向右改變大小" -#: ../terminatorlib/prefseditor.py:140 +#: ../terminatorlib/prefseditor.py:142 msgid "Move the tab right" msgstr "將分頁的順序向右移動" -#: ../terminatorlib/prefseditor.py:141 +#: ../terminatorlib/prefseditor.py:143 msgid "Move the tab left" msgstr "將分頁的順序向左移動" -#: ../terminatorlib/prefseditor.py:142 +#: ../terminatorlib/prefseditor.py:144 msgid "Maximize terminal" msgstr "最大化終端機" -#: ../terminatorlib/prefseditor.py:143 +#: ../terminatorlib/prefseditor.py:145 msgid "Zoom terminal" msgstr "調整終端機大小" -#: ../terminatorlib/prefseditor.py:144 +#: ../terminatorlib/prefseditor.py:146 msgid "Switch to the next tab" msgstr "切換至下一個分頁" -#: ../terminatorlib/prefseditor.py:145 +#: ../terminatorlib/prefseditor.py:147 msgid "Switch to the previous tab" msgstr "切換至上一個分頁" -#: ../terminatorlib/prefseditor.py:146 +#: ../terminatorlib/prefseditor.py:148 msgid "Switch to the first tab" msgstr "切換至第一個分頁" -#: ../terminatorlib/prefseditor.py:147 +#: ../terminatorlib/prefseditor.py:149 msgid "Switch to the second tab" msgstr "切換至第二個分頁" -#: ../terminatorlib/prefseditor.py:148 +#: ../terminatorlib/prefseditor.py:150 msgid "Switch to the third tab" msgstr "切換至第三個分頁" -#: ../terminatorlib/prefseditor.py:149 +#: ../terminatorlib/prefseditor.py:151 msgid "Switch to the fourth tab" msgstr "切換至第四個分頁" -#: ../terminatorlib/prefseditor.py:150 +#: ../terminatorlib/prefseditor.py:152 msgid "Switch to the fifth tab" msgstr "切換到第五個分頁" -#: ../terminatorlib/prefseditor.py:151 +#: ../terminatorlib/prefseditor.py:153 msgid "Switch to the sixth tab" msgstr "切換到第六個分頁" -#: ../terminatorlib/prefseditor.py:152 +#: ../terminatorlib/prefseditor.py:154 msgid "Switch to the seventh tab" msgstr "切換到第七個分頁" -#: ../terminatorlib/prefseditor.py:153 +#: ../terminatorlib/prefseditor.py:155 msgid "Switch to the eighth tab" msgstr "切換到第八個分頁" -#: ../terminatorlib/prefseditor.py:154 +#: ../terminatorlib/prefseditor.py:156 msgid "Switch to the ninth tab" msgstr "切換到第九個分頁" -#: ../terminatorlib/prefseditor.py:155 +#: ../terminatorlib/prefseditor.py:157 msgid "Switch to the tenth tab" msgstr "切換到第十個分頁" -#: ../terminatorlib/prefseditor.py:156 +#: ../terminatorlib/prefseditor.py:158 msgid "Toggle fullscreen" msgstr "切換全螢幕模式" -#: ../terminatorlib/prefseditor.py:157 +#: ../terminatorlib/prefseditor.py:159 msgid "Reset the terminal" msgstr "重置終端機" -#: ../terminatorlib/prefseditor.py:158 +#: ../terminatorlib/prefseditor.py:160 msgid "Reset and clear the terminal" msgstr "重置並清除終端機內容" -#: ../terminatorlib/prefseditor.py:159 +#: ../terminatorlib/prefseditor.py:161 msgid "Toggle window visibility" msgstr "" -#: ../terminatorlib/prefseditor.py:160 +#: ../terminatorlib/prefseditor.py:162 msgid "Create new group" msgstr "" -#: ../terminatorlib/prefseditor.py:161 +#: ../terminatorlib/prefseditor.py:163 msgid "Group all terminals" msgstr "群組所有的終端機" -#: ../terminatorlib/prefseditor.py:162 +#: ../terminatorlib/prefseditor.py:164 msgid "Group/Ungroup all terminals" msgstr "群組/取消群組(所有的終端機)" -#: ../terminatorlib/prefseditor.py:163 +#: ../terminatorlib/prefseditor.py:165 msgid "Ungroup all terminals" msgstr "取消群組(所有的終端機)" -#: ../terminatorlib/prefseditor.py:164 +#: ../terminatorlib/prefseditor.py:166 msgid "Group terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:165 +#: ../terminatorlib/prefseditor.py:167 msgid "Group/Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:166 +#: ../terminatorlib/prefseditor.py:168 msgid "Ungroup terminals in window" msgstr "" -#: ../terminatorlib/prefseditor.py:167 +#: ../terminatorlib/prefseditor.py:169 msgid "Group terminals in tab" msgstr "群組分頁中的終端機" -#: ../terminatorlib/prefseditor.py:168 +#: ../terminatorlib/prefseditor.py:170 msgid "Group/Ungroup terminals in tab" msgstr "群組/取消群組 分頁中的終端機" -#: ../terminatorlib/prefseditor.py:169 +#: ../terminatorlib/prefseditor.py:171 msgid "Ungroup terminals in tab" msgstr "取消群組(分頁中的終端機)" -#: ../terminatorlib/prefseditor.py:170 +#: ../terminatorlib/prefseditor.py:172 msgid "Create a new window" msgstr "開啟新的視窗" -#: ../terminatorlib/prefseditor.py:171 +#: ../terminatorlib/prefseditor.py:173 msgid "Spawn a new Terminator process" msgstr "生成新的終端機程序" -#: ../terminatorlib/prefseditor.py:172 +#: ../terminatorlib/prefseditor.py:174 msgid "Don't broadcast key presses" msgstr "不要發送\"壓下按鍵\"通知" -#: ../terminatorlib/prefseditor.py:173 +#: ../terminatorlib/prefseditor.py:175 msgid "Broadcast key presses to group" msgstr "對群組發送\"壓下按鍵\"通知" -#: ../terminatorlib/prefseditor.py:174 +#: ../terminatorlib/prefseditor.py:176 msgid "Broadcast key events to all" msgstr "對所有視窗發送按鍵的事件" -#: ../terminatorlib/prefseditor.py:175 +#: ../terminatorlib/prefseditor.py:177 msgid "Insert terminal number" msgstr "插入終端機編號" -#: ../terminatorlib/prefseditor.py:176 +#: ../terminatorlib/prefseditor.py:178 msgid "Insert padded terminal number" msgstr "插入自動補 0 的終端機編號" -#: ../terminatorlib/prefseditor.py:177 +#: ../terminatorlib/prefseditor.py:179 msgid "Edit window title" msgstr "編輯視窗標題" -#: ../terminatorlib/prefseditor.py:178 +#: ../terminatorlib/prefseditor.py:180 msgid "Edit terminal title" msgstr "編輯終端機標題" -#: ../terminatorlib/prefseditor.py:179 +#: ../terminatorlib/prefseditor.py:181 msgid "Edit tab title" msgstr "編輯分頁標題" -#: ../terminatorlib/prefseditor.py:180 +#: ../terminatorlib/prefseditor.py:182 msgid "Open layout launcher window" msgstr "打開版面配置啟動器視窗" -#: ../terminatorlib/prefseditor.py:181 +#: ../terminatorlib/prefseditor.py:183 msgid "Switch to next profile" msgstr "切換到下一個配置檔" -#: ../terminatorlib/prefseditor.py:182 +#: ../terminatorlib/prefseditor.py:184 msgid "Switch to previous profile" msgstr "切換到上一個配置檔" -#: ../terminatorlib/prefseditor.py:183 +#: ../terminatorlib/prefseditor.py:185 msgid "Open the Preferences window" msgstr "" -#: ../terminatorlib/prefseditor.py:184 +#: ../terminatorlib/prefseditor.py:186 msgid "Open the manual" msgstr "開啟使用手冊" -#: ../terminatorlib/prefseditor.py:1370 +#: ../terminatorlib/prefseditor.py:1368 msgid "New Profile" msgstr "新增設定組合" -#: ../terminatorlib/prefseditor.py:1413 ../terminatorlib/prefseditor.py:1418 +#: ../terminatorlib/prefseditor.py:1411 ../terminatorlib/prefseditor.py:1416 msgid "New Layout" msgstr "新配置" @@ -1566,85 +1578,85 @@ msgstr "顯示捲動列" msgid "_Layouts..." msgstr "" -#: ../terminatorlib/terminal.py:481 +#: ../terminatorlib/terminal.py:486 msgid "N_ew group..." msgstr "新增群組" -#: ../terminatorlib/terminal.py:487 +#: ../terminatorlib/terminal.py:492 msgid "_None" msgstr "無(_N)" -#: ../terminatorlib/terminal.py:507 +#: ../terminatorlib/terminal.py:512 #, python-format msgid "Remove group %s" msgstr "移除群組 %s" -#: ../terminatorlib/terminal.py:512 +#: ../terminatorlib/terminal.py:517 msgid "G_roup all in window" msgstr "" -#: ../terminatorlib/terminal.py:517 +#: ../terminatorlib/terminal.py:522 msgid "Ungro_up all in window" msgstr "" -#: ../terminatorlib/terminal.py:522 +#: ../terminatorlib/terminal.py:527 msgid "G_roup all in tab" msgstr "將分頁內容合併為群組(_R)" -#: ../terminatorlib/terminal.py:527 +#: ../terminatorlib/terminal.py:532 msgid "Ungro_up all in tab" msgstr "取消分頁中的群組" -#: ../terminatorlib/terminal.py:532 +#: ../terminatorlib/terminal.py:537 msgid "Remove all groups" msgstr "移除所有群組" -#: ../terminatorlib/terminal.py:539 +#: ../terminatorlib/terminal.py:544 #, python-format msgid "Close group %s" msgstr "關閉群組 %s" -#: ../terminatorlib/terminal.py:549 +#: ../terminatorlib/terminal.py:554 msgid "Broadcast _all" msgstr "發送到所有終端機" -#: ../terminatorlib/terminal.py:550 +#: ../terminatorlib/terminal.py:555 msgid "Broadcast _group" msgstr "發送到群組" -#: ../terminatorlib/terminal.py:551 +#: ../terminatorlib/terminal.py:556 msgid "Broadcast _off" msgstr "停用發送功能" -#: ../terminatorlib/terminal.py:567 +#: ../terminatorlib/terminal.py:572 msgid "_Split to this group" msgstr "分割群組" -#: ../terminatorlib/terminal.py:572 +#: ../terminatorlib/terminal.py:577 msgid "Auto_clean groups" msgstr "" -#: ../terminatorlib/terminal.py:579 +#: ../terminatorlib/terminal.py:584 msgid "_Insert terminal number" msgstr "在命令列插入終端機編號" -#: ../terminatorlib/terminal.py:583 +#: ../terminatorlib/terminal.py:588 msgid "Insert _padded terminal number" msgstr "" -#: ../terminatorlib/terminal.py:1490 +#: ../terminatorlib/terminal.py:1508 msgid "Unable to find a shell" msgstr "找不到 shell" -#: ../terminatorlib/terminal.py:1521 +#: ../terminatorlib/terminal.py:1562 msgid "Unable to start shell:" msgstr "無法啟動 shell" -#: ../terminatorlib/terminal.py:1975 +#: ../terminatorlib/terminal.py:2016 msgid "Rename Window" msgstr "修改視窗名稱" -#: ../terminatorlib/terminal.py:1983 +#: ../terminatorlib/terminal.py:2024 msgid "Enter a new title for the Terminator window..." msgstr "輸入終端機視窗新標題" @@ -1762,6 +1774,9 @@ msgstr "" msgid "Tab %d" msgstr "分頁 %d" +#~ msgid "Infinite Scrollback" +#~ msgstr "無限制" + #~ msgid "Current Locale" #~ msgstr "在地語言" diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 85203ea4..24e8b610 100644 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -233,6 +233,7 @@ 'scroll_background' : True, 'scroll_on_keystroke' : True, 'scroll_on_output' : False, + 'scroll_cache' : False, 'scrollback_lines' : 500, 'scrollback_infinite' : False, 'disable_mousewheel_zoom': False, diff --git a/terminatorlib/preferences.glade b/terminatorlib/preferences.glade index 26d46b81..a2a7bab0 100644 --- a/terminatorlib/preferences.glade +++ b/terminatorlib/preferences.glade @@ -2805,7 +2805,7 @@ - + True False @@ -2884,9 +2884,26 @@ 2 + + + Scroll cache (experimental) + False + True + True + False + 0 + True + + + + 0 + 3 + 2 + + - Infinite Scrollback + Infinite scrollback False True True @@ -2897,7 +2914,7 @@ 0 - 3 + 4 2 @@ -2932,7 +2949,7 @@ 0 - 4 + 5 @@ -2978,7 +2995,7 @@ 1 - 4 + 5 diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index 2c28c34b..76acd0da 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -674,6 +674,9 @@ def on_palette_click(event, data, widget=widget): # Scroll on keystroke widget = guiget('scroll_on_keystroke_checkbutton') widget.set_active(self.config['scroll_on_keystroke']) + # Scroll cache + widget = guiget('scroll_cache_checkbutton') + widget.set_active(self.config['scroll_cache']) ## Compatibility tab # Backspace key @@ -924,6 +927,11 @@ def on_scrollback_lines_spinbutton_value_changed(self, widget): self.config['scrollback_lines'] = value self.config.save() + def on_scroll_cache_checkbutton_toggled(self, widget): + """Scroll cache setting changed""" + self.config['scroll_cache'] = widget.get_active() + self.config.save() + def on_scrollback_infinite_toggled(self, widget): """Scrollback infiniteness changed""" spinbutton = self.builder.get_object('scrollback_lines_spinbutton') diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 8b23e9f2..fb1a46c8 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -1043,15 +1043,17 @@ def on_mousewheel(self, widget, event): return False def on_scroll(self, range): - self.scrollcache.scroll_handler(self) + if self.config['scroll_cache'] == True: + self.scrollcache.scroll_handler(self) def on_commit(self, terminal, text, size): - if size == 1 and text == '\r': - for i in range(0, self.vte.get_row_count()): - prompt = self.vte.get_text_range(self.vte.get_cursor_position()[1] - i, 0, - self.vte.get_cursor_position()[1] - i, self.vte.get_column_count()) - if "$\xad" in prompt[0]: - self.scrollcache.key_cache_scroll(self, i) + if self.config['scroll_cache'] == True: + if size == 1 and text == '\r': + for i in range(0, self.vte.get_row_count()): + prompt = self.vte.get_text_range(self.vte.get_cursor_position()[1] - i, 0, + self.vte.get_cursor_position()[1] - i, self.vte.get_column_count()) + if "$\xad" in prompt[0]: + self.scrollcache.key_cache_scroll(self, i) def popup_menu(self, widget, event=None): """Display the context menu""" @@ -2059,10 +2061,12 @@ def key_layout_launcher(self): LAYOUTLAUNCHER=LayoutLauncher() def key_prev_scroll(self): - self.scrollcache.key_prev_scroll(self) + if self.config['scroll_cache'] == True: + self.scrollcache.key_prev_scroll(self) def key_next_scroll(self): - self.scrollcache.key_next_scroll(self) + if self.config['scroll_cache'] == True: + self.scrollcache.key_next_scroll(self) def key_page_up(self): self.scroll_by_page(-1)