From ccfff8d7117d93d3642577fc33fdd71e624c6b65 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Sun, 24 May 2015 17:16:46 +0200 Subject: [PATCH] Improve command order and categories --- extension/lib/commands.coffee | 248 ++++++++++++------------ extension/lib/defaults.coffee | 135 +++++++------ extension/lib/help.coffee | 17 +- extension/locale/de/vimfx.properties | 56 +++--- extension/locale/el-GR/vimfx.properties | 56 +++--- extension/locale/en-US/vimfx.properties | 56 +++--- extension/locale/fr/vimfx.properties | 56 +++--- extension/locale/hu/vimfx.properties | 56 +++--- extension/locale/id/vimfx.properties | 56 +++--- extension/locale/it/vimfx.properties | 56 +++--- extension/locale/ja/vimfx.properties | 56 +++--- extension/locale/nl/vimfx.properties | 56 +++--- extension/locale/pl/vimfx.properties | 56 +++--- extension/locale/ru/vimfx.properties | 56 +++--- extension/locale/sv-SE/vimfx.properties | 56 +++--- extension/locale/zh-CN/vimfx.properties | 56 +++--- extension/locale/zh-TW/vimfx.properties | 56 +++--- 17 files changed, 625 insertions(+), 559 deletions(-) diff --git a/extension/lib/commands.coffee b/extension/lib/commands.coffee index 57fcb22..efbf370 100644 --- a/extension/lib/commands.coffee +++ b/extension/lib/commands.coffee @@ -64,6 +64,33 @@ command_paste_and_go_in_tab = (vim) -> command_copy_current_url = (vim) -> utils.writeToClipboard(vim.window.location.href) +# Go up one level in the URL hierarchy. +command_go_up_path = (vim, event, count = 1) -> + { pathname } = vim.window.location + vim.window.location.pathname = pathname.replace( + /// (?: /[^/]+ ){1,#{ count }} /?$ ///, '' + ) + +# Go up to root of the URL hierarchy. +command_go_to_root = (vim) -> + vim.window.location.href = vim.window.location.origin + +command_go_home = (vim) -> + vim.rootWindow.BrowserHome() + +helper_go_history = (num, vim, event, count = 1) -> + { index } = vim.rootWindow.getWebNavigation().sessionHistory + { history } = vim.window + num *= count + num = Math.max(num, -index) + num = Math.min(num, history.length - 1 - index) + return if num == 0 + history.go(num) + +command_history_back = helper_go_history.bind(undefined, -1) + +command_history_forward = helper_go_history.bind(undefined, +1) + command_reload = (vim) -> vim.rootWindow.BrowserReload() @@ -126,34 +153,38 @@ helper_scroll = (method, type, axis, amount, vim, event, count = 1) -> frameDocument.body?[method](options) ) -command_scroll_to_top = - helper_scroll.bind(undefined, 'scrollTo', 'other', 'y', 0) -command_scroll_to_bottom = - helper_scroll.bind(undefined, 'scrollTo', 'other', 'y', Infinity) -command_scroll_to_left = - helper_scroll.bind(undefined, 'scrollTo', 'other', 'x', 0) -command_scroll_to_right = - helper_scroll.bind(undefined, 'scrollTo', 'other', 'x', Infinity) +command_scroll_left = + helper_scroll.bind(undefined, 'scrollBy', 'lines', 'x', -1) +command_scroll_right = + helper_scroll.bind(undefined, 'scrollBy', 'lines', 'x', +1) command_scroll_down = helper_scroll.bind(undefined, 'scrollBy', 'lines', 'y', +1) command_scroll_up = helper_scroll.bind(undefined, 'scrollBy', 'lines', 'y', -1) -command_scroll_right = - helper_scroll.bind(undefined, 'scrollBy', 'lines', 'x', +1) -command_scroll_left = - helper_scroll.bind(undefined, 'scrollBy', 'lines', 'x', -1) -command_scroll_half_page_down = - helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', +0.5) -command_scroll_half_page_up = - helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', -0.5) command_scroll_page_down = helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', +1) command_scroll_page_up = helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', -1) +command_scroll_half_page_down = + helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', +0.5) +command_scroll_half_page_up = + helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', -0.5) +command_scroll_to_top = + helper_scroll.bind(undefined, 'scrollTo', 'other', 'y', 0) +command_scroll_to_bottom = + helper_scroll.bind(undefined, 'scrollTo', 'other', 'y', Infinity) +command_scroll_to_left = + helper_scroll.bind(undefined, 'scrollTo', 'other', 'x', 0) +command_scroll_to_right = + helper_scroll.bind(undefined, 'scrollTo', 'other', 'x', Infinity) command_tab_new = (vim) -> vim.rootWindow.BrowserOpenTab() +command_tab_duplicate = (vim) -> + { gBrowser } = vim.rootWindow + gBrowser.duplicateTab(gBrowser.selectedTab) + absoluteTabIndex = (relativeIndex, gBrowser) -> tabs = gBrowser.visibleTabs { selectedTab } = gBrowser @@ -197,9 +228,6 @@ command_tab_move_backward = helper_move_tab.bind(undefined, -1) command_tab_move_forward = helper_move_tab.bind(undefined, +1) -command_go_home = (vim) -> - vim.rootWindow.BrowserHome() - command_tab_select_first = (vim) -> vim.rootWindow.gBrowser.selectTabAtIndex(0) @@ -218,18 +246,6 @@ command_tab_toggle_pinned = (vim) -> else vim.rootWindow.gBrowser.pinTab(currentTab) -command_tab_duplicate = (vim) -> - { gBrowser } = vim.rootWindow - gBrowser.duplicateTab(gBrowser.selectedTab) - -command_tab_close_to_end = (vim) -> - { gBrowser } = vim.rootWindow - gBrowser.removeTabsToTheEndFrom(gBrowser.selectedTab) - -command_tab_close_other = (vim) -> - { gBrowser } = vim.rootWindow - gBrowser.removeAllTabsBut(gBrowser.selectedTab) - command_tab_close = (vim, event, count = 1) -> { gBrowser } = vim.rootWindow return if gBrowser.selectedTab.pinned @@ -240,6 +256,14 @@ command_tab_close = (vim, event, count = 1) -> command_tab_restore = (vim, event, count = 1) -> vim.rootWindow.undoCloseTab() for [1..count] +command_tab_close_to_end = (vim) -> + { gBrowser } = vim.rootWindow + gBrowser.removeTabsToTheEndFrom(gBrowser.selectedTab) + +command_tab_close_other = (vim) -> + { gBrowser } = vim.rootWindow + gBrowser.removeAllTabsBut(gBrowser.selectedTab) + # Combine links with the same href. combine = (hrefs, marker) -> if marker.type == 'link' @@ -335,10 +359,6 @@ command_follow = (vim, event, count = 1) -> vim.enterMode('hints', filter, callback) -# Like command_follow but multiple times. -command_follow_multiple = (vim, event) -> - command_follow(vim, event, Infinity) - # Follow links in a new background tab with hint markers. command_follow_in_tab = (vim, event, count = 1, inBackground = true) -> hrefs = {} @@ -362,6 +382,10 @@ command_follow_in_tab = (vim, event, count = 1, inBackground = true) -> command_follow_in_focused_tab = (vim, event, count = 1) -> command_follow_in_tab(vim, event, count, false) +# Like command_follow but multiple times. +command_follow_multiple = (vim, event) -> + command_follow(vim, event, Infinity) + # Copy the URL or text of a markable element to the system clipboard. command_follow_copy = (vim) -> hrefs = {} @@ -448,30 +472,6 @@ command_text_input = (vim, event, count) -> inputs[count - 1].select() vim.enterMode('text-input', inputs) -# Go up one level in the URL hierarchy. -command_go_up_path = (vim, event, count = 1) -> - { pathname } = vim.window.location - vim.window.location.pathname = pathname.replace( - /// (?: /[^/]+ ){1,#{ count }} /?$ ///, '' - ) - -# Go up to root of the URL hierarchy. -command_go_to_root = (vim) -> - vim.window.location.href = vim.window.location.origin - -helper_go_history = (num, vim, event, count = 1) -> - { index } = vim.rootWindow.getWebNavigation().sessionHistory - { history } = vim.window - num *= count - num = Math.max(num, -index) - num = Math.min(num, history.length - 1 - index) - return if num == 0 - history.go(num) - -command_history_back = helper_go_history.bind(undefined, -1) - -command_history_forward = helper_go_history.bind(undefined, +1) - findStorage = {lastSearchString: ''} helper_find = (highlight, vim) -> @@ -538,75 +538,77 @@ command_esc = (vim, event) -> document.mozCancelFullScreen() +# coffeelint: disable=max_line_length commands = [ - new Command('urls', 'focus_location_bar', command_focus_location_bar) - new Command('urls', 'focus_search_bar', command_focus_search_bar) - new Command('urls', 'paste_and_go', command_paste_and_go) - new Command('urls', 'paste_and_go_in_tab', command_paste_and_go_in_tab) - new Command('urls', 'follow_copy', command_follow_copy) - new Command('urls', 'follow_focus', command_follow_focus) - new Command('urls', 'copy_current_url', command_copy_current_url) - new Command('urls', 'reload', command_reload) - new Command('urls', 'reload_force', command_reload_force) - new Command('urls', 'reload_all', command_reload_all) - new Command('urls', 'reload_all_force', command_reload_all_force) - new Command('urls', 'stop', command_stop) - new Command('urls', 'stop_all', command_stop_all) - - new Command('nav', 'scroll_to_top', command_scroll_to_top ) - new Command('nav', 'scroll_to_bottom', command_scroll_to_bottom) - new Command('nav', 'scroll_to_left', command_scroll_to_left ) - new Command('nav', 'scroll_to_right', command_scroll_to_right) - new Command('nav', 'scroll_down', command_scroll_down) - new Command('nav', 'scroll_up', command_scroll_up) - new Command('nav', 'scroll_left', command_scroll_left) - new Command('nav', 'scroll_right', command_scroll_right ) - new Command('nav', 'scroll_half_page_down', command_scroll_half_page_down) - new Command('nav', 'scroll_half_page_up', command_scroll_half_page_up) - new Command('nav', 'scroll_page_down', command_scroll_page_down) - new Command('nav', 'scroll_page_up', command_scroll_page_up) - - new Command('tabs', 'tab_new', command_tab_new) - new Command('tabs', 'tab_select_previous', command_tab_select_previous) - new Command('tabs', 'tab_select_next', command_tab_select_next) - new Command('tabs', 'tab_move_backward', command_tab_move_backward) - new Command('tabs', 'tab_move_forward', command_tab_move_forward) - new Command('tabs', 'go_home', command_go_home) - new Command('tabs', 'tab_select_first', command_tab_select_first) - new Command('tabs', 'tab_select_first_non_pinned', - command_tab_select_first_non_pinned) - new Command('tabs', 'tab_select_last', command_tab_select_last) - new Command('tabs', 'tab_toggle_pinned', command_tab_toggle_pinned) - new Command('tabs', 'tab_duplicate', command_tab_duplicate) - new Command('tabs', 'tab_close_to_end', command_tab_close_to_end) - new Command('tabs', 'tab_close_other', command_tab_close_other) - new Command('tabs', 'tab_close', command_tab_close) - new Command('tabs', 'tab_restore', command_tab_restore) - - new Command('browse', 'follow', command_follow) - new Command('browse', 'follow_in_tab', command_follow_in_tab) - new Command('browse', 'follow_in_focused_tab', command_follow_in_focused_tab) - new Command('browse', 'follow_multiple', command_follow_multiple) - new Command('browse', 'follow_previous', command_follow_previous) - new Command('browse', 'follow_next', command_follow_next) - new Command('browse', 'text_input', command_text_input) - new Command('browse', 'go_up_path', command_go_up_path) - new Command('browse', 'go_to_root', command_go_to_root) - new Command('browse', 'history_back', command_history_back) - new Command('browse', 'history_forward', command_history_forward) - - new Command('misc', 'find', command_find) - new Command('misc', 'find_highlight_all', command_find_highlight_all) - new Command('misc', 'find_next', command_find_next) - new Command('misc', 'find_previous', command_find_previous) - new Command('misc', 'enter_mode_insert', command_enter_mode_insert) - new Command('misc', 'quote', command_quote) - new Command('misc', 'help', command_help) - new Command('misc', 'dev', command_dev) + new Command('location', 'focus_location_bar', command_focus_location_bar) + new Command('location', 'focus_search_bar', command_focus_search_bar) + new Command('location', 'paste_and_go', command_paste_and_go) + new Command('location', 'paste_and_go_in_tab', command_paste_and_go_in_tab) + new Command('location', 'copy_current_url', command_copy_current_url) + new Command('location', 'go_up_path', command_go_up_path) + new Command('location', 'go_to_root', command_go_to_root) + new Command('location', 'go_home', command_go_home) + new Command('location', 'history_back', command_history_back) + new Command('location', 'history_forward', command_history_forward) + new Command('location', 'reload', command_reload) + new Command('location', 'reload_force', command_reload_force) + new Command('location', 'reload_all', command_reload_all) + new Command('location', 'reload_all_force', command_reload_all_force) + new Command('location', 'stop', command_stop) + new Command('location', 'stop_all', command_stop_all) + + new Command('scrolling', 'scroll_left', command_scroll_left) + new Command('scrolling', 'scroll_right', command_scroll_right ) + new Command('scrolling', 'scroll_down', command_scroll_down) + new Command('scrolling', 'scroll_up', command_scroll_up) + new Command('scrolling', 'scroll_page_down', command_scroll_page_down) + new Command('scrolling', 'scroll_page_up', command_scroll_page_up) + new Command('scrolling', 'scroll_half_page_down', command_scroll_half_page_down) + new Command('scrolling', 'scroll_half_page_up', command_scroll_half_page_up) + new Command('scrolling', 'scroll_to_top', command_scroll_to_top ) + new Command('scrolling', 'scroll_to_bottom', command_scroll_to_bottom) + new Command('scrolling', 'scroll_to_left', command_scroll_to_left ) + new Command('scrolling', 'scroll_to_right', command_scroll_to_right) + + new Command('tabs', 'tab_new', command_tab_new) + new Command('tabs', 'tab_duplicate', command_tab_duplicate) + new Command('tabs', 'tab_select_previous', command_tab_select_previous) + new Command('tabs', 'tab_select_next', command_tab_select_next) + new Command('tabs', 'tab_move_backward', command_tab_move_backward) + new Command('tabs', 'tab_move_forward', command_tab_move_forward) + new Command('tabs', 'tab_select_first', command_tab_select_first) + new Command('tabs', 'tab_select_first_non_pinned', command_tab_select_first_non_pinned) + new Command('tabs', 'tab_select_last', command_tab_select_last) + new Command('tabs', 'tab_toggle_pinned', command_tab_toggle_pinned) + new Command('tabs', 'tab_close', command_tab_close) + new Command('tabs', 'tab_restore', command_tab_restore) + new Command('tabs', 'tab_close_to_end', command_tab_close_to_end) + new Command('tabs', 'tab_close_other', command_tab_close_other) + + new Command('browsing', 'follow', command_follow) + new Command('browsing', 'follow_in_tab', command_follow_in_tab) + new Command('browsing', 'follow_in_focused_tab', command_follow_in_focused_tab) + new Command('browsing', 'follow_multiple', command_follow_multiple) + new Command('browsing', 'follow_copy', command_follow_copy) + new Command('browsing', 'follow_focus', command_follow_focus) + new Command('browsing', 'follow_previous', command_follow_previous) + new Command('browsing', 'follow_next', command_follow_next) + new Command('browsing', 'text_input', command_text_input) + + new Command('find', 'find', command_find) + new Command('find', 'find_highlight_all', command_find_highlight_all) + new Command('find', 'find_next', command_find_next) + new Command('find', 'find_previous', command_find_previous) + + new Command('misc', 'enter_mode_insert', command_enter_mode_insert) + new Command('misc', 'quote', command_quote) + new Command('misc', 'help', command_help) + new Command('misc', 'dev', command_dev) escapeCommand = new Command('misc', 'esc', command_esc) ] +# coffeelint: enable=max_line_length exports.commands = commands exports.escapeCommand = escapeCommand diff --git a/extension/lib/defaults.coffee b/extension/lib/defaults.coffee index 756fe30..790d351 100644 --- a/extension/lib/defaults.coffee +++ b/extension/lib/defaults.coffee @@ -23,70 +23,77 @@ notation = require('vim-like-key-notation') shortcuts = 'normal': - 'o': 'focus_location_bar' - 'O': 'focus_search_bar' - 'p': 'paste_and_go' - 'P': 'paste_and_go_in_tab' - 'yf': 'follow_copy' - 'vf': 'follow_focus' - 'yy': 'copy_current_url' - 'r': 'reload' - 'R': 'reload_force' - 'ar': 'reload_all' - 'aR': 'reload_all_force' - 's': 'stop' - 'as': 'stop_all' - - 'gg': 'scroll_to_top' - 'G': 'scroll_to_bottom' - '0 ^': 'scroll_to_left' - '$': 'scroll_to_right' - 'j': 'scroll_down' - 'k': 'scroll_up' - 'h': 'scroll_left' - 'l': 'scroll_right' - 'd': 'scroll_half_page_down' - 'u': 'scroll_half_page_up' - '': 'scroll_page_down' - '': 'scroll_page_up' - - 't': 'tab_new' - 'J gT': 'tab_select_previous' - 'K gt': 'tab_select_next' - 'gJ': 'tab_move_backward' - 'gK': 'tab_move_forward' - 'gh': 'go_home' - 'gH g0': 'tab_select_first' - 'g^': 'tab_select_first_non_pinned' - 'gL g$': 'tab_select_last' - 'gp': 'tab_toggle_pinned' - 'yt': 'tab_duplicate' - 'gx$': 'tab_close_to_end' - 'gxa': 'tab_close_other' - 'x': 'tab_close' - 'X': 'tab_restore' - - 'f': 'follow' - 'F': 'follow_in_tab' - 'gf': 'follow_in_focused_tab' - 'af': 'follow_multiple' - '[': 'follow_previous' - ']': 'follow_next' - 'gi': 'text_input' - 'gu': 'go_up_path' - 'gU': 'go_to_root' - 'H': 'history_back' - 'L': 'history_forward' - - '/': 'find' - 'a/': 'find_highlight_all' - 'n': 'find_next' - 'N': 'find_previous' - 'i': 'enter_mode_insert' - 'I': 'quote' - '?': 'help' - ':': 'dev' - '': 'esc' + # Location + 'o': 'focus_location_bar' + 'O': 'focus_search_bar' + 'p': 'paste_and_go' + 'P': 'paste_and_go_in_tab' + 'yy': 'copy_current_url' + 'gu': 'go_up_path' + 'gU': 'go_to_root' + 'gh': 'go_home' + 'H': 'history_back' + 'L': 'history_forward' + 'r': 'reload' + 'R': 'reload_force' + 'ar': 'reload_all' + 'aR': 'reload_all_force' + 's': 'stop' + 'as': 'stop_all' + + # Scrolling + 'h': 'scroll_left' + 'l': 'scroll_right' + 'j': 'scroll_down' + 'k': 'scroll_up' + '': 'scroll_page_down' + '': 'scroll_page_up' + 'd': 'scroll_half_page_down' + 'u': 'scroll_half_page_up' + 'gg': 'scroll_to_top' + 'G': 'scroll_to_bottom' + '0 ^': 'scroll_to_left' + '$': 'scroll_to_right' + + # Tabs + 't': 'tab_new' + 'yt': 'tab_duplicate' + 'J gT': 'tab_select_previous' + 'K gt': 'tab_select_next' + 'gJ': 'tab_move_backward' + 'gK': 'tab_move_forward' + 'gH g0': 'tab_select_first' + 'g^': 'tab_select_first_non_pinned' + 'gL g$': 'tab_select_last' + 'gp': 'tab_toggle_pinned' + 'x': 'tab_close' + 'X': 'tab_restore' + 'gx$': 'tab_close_to_end' + 'gxa': 'tab_close_other' + + # Browsing + 'f': 'follow' + 'F': 'follow_in_tab' + 'gf': 'follow_in_focused_tab' + 'af': 'follow_multiple' + 'yf': 'follow_copy' + 'vf': 'follow_focus' + '[': 'follow_previous' + ']': 'follow_next' + 'gi': 'text_input' + + # Find + '/': 'find' + 'a/': 'find_highlight_all' + 'n': 'find_next' + 'N': 'find_previous' + + # Misc + 'i': 'enter_mode_insert' + 'I': 'quote' + '?': 'help' + ':': 'dev' + '': 'esc' 'insert': '': 'exit' diff --git a/extension/lib/help.coffee b/extension/lib/help.coffee index 9bc8283..73607a3 100644 --- a/extension/lib/help.coffee +++ b/extension/lib/help.coffee @@ -220,16 +220,17 @@ helpDialogHtml = (modeCommands) ->
- #{ section(_('help_section_urls'), commands.filter((a) -> a.group == 'urls')) } - #{ section(_('help_section_nav'), commands.filter((a) -> a.group == 'nav')) } - #{ section(_('help_section_misc'), commands.filter((a) -> a.group == 'misc')) } + #{ section(_('category.location'), commands.filter((a) -> a.group == 'location')) } + #{ section(_('category.scrolling'), commands.filter((a) -> a.group == 'scrolling')) } + #{ section(_('category.find'), commands.filter((a) -> a.group == 'find')) } + #{ section(_('category.misc'), commands.filter((a) -> a.group == 'misc')) }
- #{ section(_('help_section_tabs'), commands.filter((a) -> a.group == 'tabs')) } - #{ section(_('help_section_browse'), commands.filter((a) -> a.group == 'browse')) } - #{ section(_('help_section_mode_hints'), modeCommands['hints'], 'hints') } - #{ section(_('help_section_mode_insert'), modeCommands['insert'], 'insert') } - #{ section(_('help_section_mode_find'), modeCommands['find'], 'find') } + #{ section(_('category.tabs'), commands.filter((a) -> a.group == 'tabs')) } + #{ section(_('category.browsing'), commands.filter((a) -> a.group == 'browsing')) } + #{ section(_('mode.hints'), modeCommands['hints'], 'hints') } + #{ section(_('mode.insert'), modeCommands['insert'], 'insert') } + #{ section(_('mode.find'), modeCommands['find'], 'find') }
diff --git a/extension/locale/de/vimfx.properties b/extension/locale/de/vimfx.properties index 239b78c..1cfc587 100644 --- a/extension/locale/de/vimfx.properties +++ b/extension/locale/de/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Einstellungen item_blacklist_button_tooltip=Schwarze Liste item_blacklist_button_inverse_tooltip=Diese Regel entfernen -help_section_urls=Umgang mit URLs +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Adressleiste fokussieren mode.normal.focus_search_bar=Suchleiste fokussieren mode.normal.paste_and_go=Adresse aus Zwischenablage öffnen mode.normal.paste_and_go_in_tab=Adresse aus Zwischenablage in neuem Tab öffnen -mode.normal.follow_copy=Links oder Text-Eingabewerte in Zwischenablage kopieren -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=URL der aktuellen Seite in Zwischenablage kopieren +mode.normal.go_up_path=Einen Level nach oben in der URL-Hierarchie springen +mode.normal.go_to_root=Zum Stammverzeichnis der URL-Hierarchie springen +mode.normal.go_home=Startseite öffnen +mode.normal.history_back=Eine Seite zurück in der Chronik +mode.normal.history_forward=Eine Seite vorwärts in der Chronik mode.normal.reload=Seite aktualisieren mode.normal.reload_force=Seite inklusive aller Zusatzelemente aktualisieren (js, css, img) mode.normal.reload_all=Alle Tabs aktualisieren @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Alle Tabs inklusive aller Zusatzelemente aktualisie mode.normal.stop=Laden der aktuellen Seite abbrechen mode.normal.stop_all=Laden der Seiten aller Tabs abbrechen -help_section_nav=Seitennavigation -mode.normal.scroll_to_top=Zum Anfang der Seite scrollen -mode.normal.scroll_to_bottom=Zum Ende der Seite scrollen -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Abwärts scrollen -mode.normal.scroll_up=Aufwärts scrollen +category.scrolling=Scrolling mode.normal.scroll_left=Nach links scrollen mode.normal.scroll_right=Nach rechts scrollen -mode.normal.scroll_half_page_down=Eine halbe Seite nach unten scrollen -mode.normal.scroll_half_page_up=Eine halbe Seite nach oben scrollen +mode.normal.scroll_down=Abwärts scrollen +mode.normal.scroll_up=Aufwärts scrollen mode.normal.scroll_page_down=Eine ganze Seite nach unten scrollen mode.normal.scroll_page_up=Eine ganze Seite nach oben scrollen +mode.normal.scroll_half_page_down=Eine halbe Seite nach unten scrollen +mode.normal.scroll_half_page_up=Eine halbe Seite nach oben scrollen +mode.normal.scroll_to_top=Zum Anfang der Seite scrollen +mode.normal.scroll_to_bottom=Zum Ende der Seite scrollen +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Arbeiten mit Tabs +category.tabs=Tabs mode.normal.tab_new=Öffnen eines neuen leeren Tabs +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Zum vorherigen Tab springen mode.normal.tab_select_next=Zum nächsten Tab springen mode.normal.tab_move_backward=Aktuellen Tab nach links verschieben mode.normal.tab_move_forward=Aktuellen Tab nach rechts verschieben -mode.normal.go_home=Startseite öffnen mode.normal.tab_select_first=Zum ersten Tab springen mode.normal.tab_select_first_non_pinned=Zum ersten nicht angepinnten Tab springen mode.normal.tab_select_last=Zum letzten Tab springen mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Aktuellen Tab schließen mode.normal.tab_restore=Zuletzt geschlossenen Tab wieder öffnen +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Links und Chronik +category.browsing=Links und Chronik mode.normal.follow=Einem Link auf der aktuellen Seite folgen mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Links oder Text-Eingabewerte in Zwischenablage kopieren +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Zur vorherigen Seite springen mode.normal.follow_next=Zur nächsten Seite springen mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Einen Level nach oben in der URL-Hierarchie springen -mode.normal.go_to_root=Zum Stammverzeichnis der URL-Hierarchie springen -mode.normal.history_back=Eine Seite zurück in der Chronik -mode.normal.history_forward=Eine Seite vorwärts in der Chronik -help_section_misc=Verschiedenes +category.find=Suchen mode.normal.find=Suchmodus aktivieren mode.normal.find_highlight_all=Suchmodus aktivieren und alle Übereinstimmungen markieren mode.normal.find_next=Zur nächsten Übereinstimmung springen mode.normal.find_previous=Zur vorherigen Übereinstimmung springen + +category.misc=Verschiedenes mode.normal.enter_mode_insert=Zum Eingabemodus wechseln: Alle Befehle ignorieren mode.normal.quote=Pass next keypress through to the page mode.normal.help=Hilfedialog anzeigen mode.normal.dev=Entwickler-Werkzeuge öffnen mode.normal.esc=Aktives Element schließen/verlassen -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Tastenbefehle diff --git a/extension/locale/el-GR/vimfx.properties b/extension/locale/el-GR/vimfx.properties index 5831245..d0c76e8 100644 --- a/extension/locale/el-GR/vimfx.properties +++ b/extension/locale/el-GR/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Προτιμήσεις item_blacklist_button_tooltip=Μαύρη Λίστα item_blacklist_button_inverse_tooltip=Κατάργηση αυτού του κανόνα -help_section_urls=Όσον αφορά τις διευθύνσεις +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Εστιάζοντας την Γραμμή Διευθύνσεων mode.normal.focus_search_bar=Εστίασε την Γραμμή Αναζήτησης mode.normal.paste_and_go=Πήγαινε στην διεύθυνση που έχω κάνει αντιγραφή mode.normal.paste_and_go_in_tab=Άνοιξε νέα καρτέλα και πήγαινε στην διεύθυνση που έχω κάνει αντιγραφή -mode.normal.follow_copy=Κάνε αντιγραφή την διεύθυνση του συνδέσμου ή την τιμή της περιοχής κειμένου -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Κάνε αντιγραφή τη διεύθυνση της σελίδας στην οποία βρίσκομαι +mode.normal.go_up_path=Πήγαινε ένα επίπεδο πάνω στην ιεραρχία του URL +mode.normal.go_to_root=Πήγαινε στο πιο πάνω επίπεδο της ιεραρχίας του URL +mode.normal.go_home=Πλοήγηση στην Αρχική Σελίδα +mode.normal.history_back=Πήγαινε πίσω στο ιστορικό +mode.normal.history_forward=Πήγαινε μπροστά στο ιστορικό mode.normal.reload=Ανανέωσε την σελίδα στην οποία βρίσκομαι mode.normal.reload_force=Ανανέωσε την σελίδα στην οποία βρίσκομαι και όλα τα στοιχεία της (js, css, img) mode.normal.reload_all=Ανανέωσες τις σελίδες σε όλες τις καρτέλες @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Ανανέωσες τις σελίδες σε όλ mode.normal.stop=Σταμάτα να φορτώνεις την τρέχουσα σελίδα mode.normal.stop_all=Σταμάτα να φορτώνεις τις σελίδες σε όλες τις καρτέλες -help_section_nav=Πλοηγώντας στην σελίδα -mode.normal.scroll_to_top=Μετακινηθείτε στην κορυφή της σελίδας -mode.normal.scroll_to_bottom=Μετακινηθείτε στο τέλος της σελίδας -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Κύλιση προς τα κάτω -mode.normal.scroll_up=Κύλιση προς τα πάνω +category.scrolling=Scrolling mode.normal.scroll_left=Κύλιση προς τα αριστερά mode.normal.scroll_right=Κύλιση προς τα δεξιά -mode.normal.scroll_half_page_down=Κύλιση μισό Page Down -mode.normal.scroll_half_page_up=Κύλιση μισό Page Up +mode.normal.scroll_down=Κύλιση προς τα κάτω +mode.normal.scroll_up=Κύλιση προς τα πάνω mode.normal.scroll_page_down=Κύλιση Page Down mode.normal.scroll_page_up=Κύλιση Page Up +mode.normal.scroll_half_page_down=Κύλιση μισό Page Down +mode.normal.scroll_half_page_up=Κύλιση μισό Page Up +mode.normal.scroll_to_top=Μετακινηθείτε στην κορυφή της σελίδας +mode.normal.scroll_to_bottom=Μετακινηθείτε στο τέλος της σελίδας +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Δουλεύοντας με τις καρτέλες +category.tabs=καρτέλες mode.normal.tab_new=Άνοιγμα νέας κενής καρτέλας +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Μετακίνηση στην προηγούμενη καρτέλα mode.normal.tab_select_next=Μετακίνηση στην επόμενη καρτέλα mode.normal.tab_move_backward=Μετακίνηση της καρτέλας που βρίσκομαι αριστερά mode.normal.tab_move_forward=Μετακίνηση της καρτέλας που βρίσκομαι δεξιά -mode.normal.go_home=Πλοήγηση στην Αρχική Σελίδα mode.normal.tab_select_first=Πήγαινε στην πρώτη καρτέλα mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Πήγαινε στην τελευταία καρτέλα mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Κλείσιμο της καρτέλας που βρίσκομαι mode.normal.tab_restore=Επαναφορά τελευταίας καρτέλας που έκλεισα +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Περιήγηση +category.browsing=Περιήγηση mode.normal.follow=Πήγαινε σε σύνδεσμο που υπάρχει στην καρτέλα που βρίσκομαι mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Κάνε αντιγραφή την διεύθυνση του συνδέσμου ή την τιμή της περιοχής κειμένου +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Πήγαινε στην προηγούμενη σελίδα mode.normal.follow_next=Πήγαινε στην επόμενη σελίδα mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Πήγαινε ένα επίπεδο πάνω στην ιεραρχία του URL -mode.normal.go_to_root=Πήγαινε στο πιο πάνω επίπεδο της ιεραρχίας του URL -mode.normal.history_back=Πήγαινε πίσω στο ιστορικό -mode.normal.history_forward=Πήγαινε μπροστά στο ιστορικό -help_section_misc=Διάφορα +category.find=Find mode.normal.find=Είσοδος σε λειτουργία Εύρεσης (Find mode) mode.normal.find_highlight_all=Είσοδος σε λειτουργία Εύρεσης (Find mode) επισημαίνοντας όλες τις αντιστοιχίες mode.normal.find_next=Πήγαινε στην επόμενη ατιστοιχία mode.normal.find_previous=Πήγαινε στην προηγούμενη αντιστοιχία + +category.misc=Διάφορα mode.normal.enter_mode_insert=Είσοδος σε λειτουργία εισαγωγής (insert mode): Αγνόησε όλες τις εντολές mode.normal.quote=Pass next keypress through to the page mode.normal.help=Προβολή αυτού του παραθύρου mode.normal.dev=Άνοιγμα Developer Toolbar mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Συντομεύσεις Πληκτρολογίου diff --git a/extension/locale/en-US/vimfx.properties b/extension/locale/en-US/vimfx.properties index abfd944..f237e47 100644 --- a/extension/locale/en-US/vimfx.properties +++ b/extension/locale/en-US/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Preferences item_blacklist_button_tooltip=Blacklist item_blacklist_button_inverse_tooltip=Remove this rule -help_section_urls=Dealing with URLs +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Focus the Address Bar mode.normal.focus_search_bar=Focus the Search Bar mode.normal.paste_and_go=Paste and go mode.normal.paste_and_go_in_tab=Paste and go in a new tab -mode.normal.follow_copy=Copy link or text input value -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Copy current URL +mode.normal.go_up_path=Go up one level in the URL +mode.normal.go_to_root=Go to the root in the URL +mode.normal.go_home=Go to the Home Page +mode.normal.history_back=Go back in history +mode.normal.history_forward=Go forward in history mode.normal.reload=Reload mode.normal.reload_force=Reload (override cache) mode.normal.reload_all=Reload all tabs @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Reload all tabs (override cache) mode.normal.stop=Stop loading the page mode.normal.stop_all=Stop loading all tabs -help_section_nav=Navigating the page -mode.normal.scroll_to_top=Scroll to top -mode.normal.scroll_to_bottom=Scroll to bottom -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Scroll down -mode.normal.scroll_up=Scroll up +category.scrolling=Scrolling mode.normal.scroll_left=Scroll left mode.normal.scroll_right=Scroll right -mode.normal.scroll_half_page_down=Scroll half a page down -mode.normal.scroll_half_page_up=Scroll half a page up +mode.normal.scroll_down=Scroll down +mode.normal.scroll_up=Scroll up mode.normal.scroll_page_down=Scroll full page down mode.normal.scroll_page_up=Scroll full page up +mode.normal.scroll_half_page_down=Scroll half a page down +mode.normal.scroll_half_page_up=Scroll half a page up +mode.normal.scroll_to_top=Scroll to top +mode.normal.scroll_to_bottom=Scroll to bottom +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Working with Tabs +category.tabs=Tabs mode.normal.tab_new=New tab +mode.normal.tab_duplicate=Duplicate tab mode.normal.tab_select_previous=Previous tab mode.normal.tab_select_next=Next tab mode.normal.tab_move_backward=Move tab left mode.normal.tab_move_forward=Move tab right -mode.normal.go_home=Go to the Home Page mode.normal.tab_select_first=Go to the first tab mode.normal.tab_select_first_non_pinned=Go to the first non-pinned tab mode.normal.tab_select_last=Go to the last tab mode.normal.tab_toggle_pinned=Pin/Unpin tab -mode.normal.tab_duplicate=Duplicate tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs mode.normal.tab_close=Close tab mode.normal.tab_restore=Restore closed tab +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs -help_section_browse=Browsing +category.browsing=Browsing mode.normal.follow=Follow link, focus text input or click button mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Copy link or text input value +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Go to the previous page mode.normal.follow_next=Go to the next page mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Go up one level in the URL -mode.normal.go_to_root=Go to the root in the URL -mode.normal.history_back=Go back in history -mode.normal.history_forward=Go forward in history -help_section_misc=Misc +category.find=Find mode.normal.find=Enter Find mode mode.normal.find_highlight_all=Enter Find mode highlighting all matches mode.normal.find_next=Find next mode.normal.find_previous=Find previous + +category.misc=Misc mode.normal.enter_mode_insert=Enter Insert mode: Ignore all commands mode.normal.quote=Pass next keypress through to the page mode.normal.help=Show this dialog mode.normal.dev=Open the Developer Toolbar mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to Normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to Normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Keyboard Shortcuts diff --git a/extension/locale/fr/vimfx.properties b/extension/locale/fr/vimfx.properties index ad8290a..f6367d4 100644 --- a/extension/locale/fr/vimfx.properties +++ b/extension/locale/fr/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Préférences item_blacklist_button_tooltip=Liste noire item_blacklist_button_inverse_tooltip=Supprimer cette règle -help_section_urls=Gestion des liens +mode.normal=Mode normal + +category.location=Location mode.normal.focus_location_bar=Donner le focus à la barre d'adresse mode.normal.focus_search_bar=Donner le focus à la barre de recherche mode.normal.paste_and_go=Aller à l'adresse dans le presse-papier mode.normal.paste_and_go_in_tab=Ouvrir un nouvel onglet et aller à l'adresse dans le presse-papier -mode.normal.follow_copy=Copier l'adresse du lien ou le texte dans le presse-papier -mode.normal.follow_focus=Donner le focus à l'élément mode.normal.copy_current_url=Copier l'adresse de la page dans le presse-papier +mode.normal.go_up_path=Monter d'un niveau dans l'arborescence du site +mode.normal.go_to_root=Aller au niveau racine du site +mode.normal.go_home=Aller à la page d'accueil +mode.normal.history_back=Revenir en arrière dans l'historique +mode.normal.history_forward=Avancer dans l'historique mode.normal.reload=Recharger la page mode.normal.reload_force=Recharger la page (en invalidant le cache) mode.normal.reload_all=Recharger tous les onglets @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Recharger tous les onglets (en invalidant le cache) mode.normal.stop=Arrêter le chargement de la page mode.normal.stop_all=Arrêter le chargement de toutes les pages -help_section_nav=Déplacement dans la page -mode.normal.scroll_to_top=Aller en haut de la page -mode.normal.scroll_to_bottom=Aller en bas de la page -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Faire défiler vers le bas -mode.normal.scroll_up=Faire défiler vers le haut +category.scrolling=Scrolling mode.normal.scroll_left=Faire défiler vers la gauche mode.normal.scroll_right=Faire défiler vers la droite -mode.normal.scroll_half_page_down=Faire défiler d'une moitié de page vers le bas -mode.normal.scroll_half_page_up=Faire défiler d'une moitié de page vers le haut +mode.normal.scroll_down=Faire défiler vers le bas +mode.normal.scroll_up=Faire défiler vers le haut mode.normal.scroll_page_down=Faire défiler d'une page vers le bas mode.normal.scroll_page_up=Faire défiler d'une page vers le haut +mode.normal.scroll_half_page_down=Faire défiler d'une moitié de page vers le bas +mode.normal.scroll_half_page_up=Faire défiler d'une moitié de page vers le haut +mode.normal.scroll_to_top=Aller en haut de la page +mode.normal.scroll_to_bottom=Aller en bas de la page +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Gestion des onglets +category.tabs=Onglets mode.normal.tab_new=Ouvrir un nouvel onglet +mode.normal.tab_duplicate=Dupliquer l'onglet mode.normal.tab_select_previous=Aller à l'onglet précédent mode.normal.tab_select_next=Aller à l'onglet suivant mode.normal.tab_move_backward=Déplacer l'onglet vers la gauche mode.normal.tab_move_forward=Déplacer l'onglet vers la droite -mode.normal.go_home=Aller à la page d'accueil mode.normal.tab_select_first=Aller au premier onglet mode.normal.tab_select_first_non_pinned=Aller au premier onglet non épinglé. mode.normal.tab_select_last=Aller au dernier onglet mode.normal.tab_toggle_pinned=Épingler/relâcher l'onglet -mode.normal.tab_duplicate=Dupliquer l'onglet -mode.normal.tab_close_to_end=Fermer les onglets sur la droite -mode.normal.tab_close_other=Fermer les autres onglets mode.normal.tab_close=Fermer l'onglet mode.normal.tab_restore=Restaurer le dernier onglet fermé +mode.normal.tab_close_to_end=Fermer les onglets sur la droite +mode.normal.tab_close_other=Fermer les autres onglets -help_section_browse=Navigation +category.browsing=Navigation mode.normal.follow=Ouvrir un lien dans l'onglet courant mode.normal.follow_in_tab=Ouvrir un lien dans un nouvel onglet mode.normal.follow_in_focused_tab=Ouvrir le lien dans un nouvel onglet en arrière plan mode.normal.follow_multiple=Ouvrir plusieurs liens dans des onglets en arrière plan +mode.normal.follow_copy=Copier l'adresse du lien ou le texte dans le presse-papier +mode.normal.follow_focus=Donner le focus à l'élément mode.normal.follow_previous=Aller à la page précédente mode.normal.follow_next=Aller à la page suivante mode.normal.text_input=Donner le focus à la dernière entrée de formulaire ou à la première -mode.normal.go_up_path=Monter d'un niveau dans l'arborescence du site -mode.normal.go_to_root=Aller au niveau racine du site -mode.normal.history_back=Revenir en arrière dans l'historique -mode.normal.history_forward=Avancer dans l'historique -help_section_misc=Divers +category.find=Find mode.normal.find=Rechercher dans la page mode.normal.find_highlight_all=Rechercher dans la page en mettant les occurrences en surbrillance mode.normal.find_next=Aller au résultat suivant mode.normal.find_previous=Aller au résultat précédent + +category.misc=Divers mode.normal.enter_mode_insert=Enter en mode insertion: Ignorer toutes les commandes mode.normal.quote=Transmettre la prochaine pression de touche à la page mode.normal.help=Afficher cette boîte de dialogue mode.normal.dev=Ouvrir la barre d'outils de développement mode.normal.esc=Revenir en mode normal (supprimer le marqueurs, sortir du mode insertion) ou quitter l'élément actif -help_section_mode_hints=Mode de sélection de lien +mode.hints=Mode de sélection de lien mode.hints.exit=Retourner au mode initial mode.hints.rotate_markers_forward=Faire tourner vers l'avant les marqueurs superposés mode.hints.rotate_markers_backward=Faire tourner en arrière mode.hints.delete_hint_char=Supprimer le dernier caractère frappé lors de la sélection d'un marqueur -help_section_mode_insert=Mode insertion +mode.insert=Mode insertion mode.insert.exit=Retourner au mode par défaut -help_section_mode_find=Mode recherche +mode.find=Mode recherche mode.find.exit=Fermer la barre de recherche help_title=Raccourcis claviers diff --git a/extension/locale/hu/vimfx.properties b/extension/locale/hu/vimfx.properties index 6b98d55..38ff36a 100644 --- a/extension/locale/hu/vimfx.properties +++ b/extension/locale/hu/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Beállítások item_blacklist_button_tooltip=Feketelista item_blacklist_button_inverse_tooltip=Remove this rule -help_section_urls=URL műveletek +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Fókusz a címsorra mode.normal.focus_search_bar=Focus the Search Bar mode.normal.paste_and_go=A vágólapon található link megnyitása mode.normal.paste_and_go_in_tab=A vágólapon található link megnyitása új tabban -mode.normal.follow_copy=Copy link url or text input value to the clipboard -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Aktuális oldal címének másolása vágólapra +mode.normal.go_up_path=Go up one level in the URL hierarchy +mode.normal.go_to_root=Go up to root of the URL hierarchy +mode.normal.go_home=Kezdőlap megnyitása +mode.normal.history_back=Vissza az előzményekben +mode.normal.history_forward=Előre az előzményekben mode.normal.reload=Oldal újratöltése mode.normal.reload_force=Oldal újratöltése minden elemmel együtt (js, css, img) mode.normal.reload_all=Összes oldal újratöltése @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Összes oldal újratöltése minden elemmel együtt mode.normal.stop=Stop loading current page mode.normal.stop_all=Stop loading pages in all tabs -help_section_nav=Navigálás az oldalon -mode.normal.scroll_to_top=Ugrás az oldal tetejére -mode.normal.scroll_to_bottom=Ugrás az oldal aljára -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Görgetés le -mode.normal.scroll_up=Görgetés fel +category.scrolling=Scrolling mode.normal.scroll_left=Görgetés balra mode.normal.scroll_right=Görgetés jobbra -mode.normal.scroll_half_page_down=Fél oldalnyi görgetés lefelé -mode.normal.scroll_half_page_up=Fél oldalnyi görgetés felfelé +mode.normal.scroll_down=Görgetés le +mode.normal.scroll_up=Görgetés fel mode.normal.scroll_page_down=Oldalnyi görgetés lefelé mode.normal.scroll_page_up=Oldalnyi görgetés felfelé +mode.normal.scroll_half_page_down=Fél oldalnyi görgetés lefelé +mode.normal.scroll_half_page_up=Fél oldalnyi görgetés felfelé +mode.normal.scroll_to_top=Ugrás az oldal tetejére +mode.normal.scroll_to_bottom=Ugrás az oldal aljára +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Tab műveletek +category.tabs=Tab mode.normal.tab_new=Új tab nyitása +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Ugrás az előző tabra mode.normal.tab_select_next=Ugrás a következő tabra mode.normal.tab_move_backward=Aktuális tab mozgatása balra mode.normal.tab_move_forward=Aktuális tab mozgatása jobbra -mode.normal.go_home=Kezdőlap megnyitása mode.normal.tab_select_first=Ugrás az első tabra mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Ugrás az utolsó tabra mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Aktuális tab bezárása mode.normal.tab_restore=Utoljára bezárt tab visszatöltése +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Böngészés +category.browsing=Böngészés mode.normal.follow=Link követése mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Copy link url or text input value to the clipboard +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Go to previous page mode.normal.follow_next=Go to next page mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Go up one level in the URL hierarchy -mode.normal.go_to_root=Go up to root of the URL hierarchy -mode.normal.history_back=Vissza az előzményekben -mode.normal.history_forward=Előre az előzményekben -help_section_misc=Általános +category.find=Find mode.normal.find=Keresési módba lépés mode.normal.find_highlight_all=Enter Find mode highlighting all matches mode.normal.find_next=Következő találatra ugrás mode.normal.find_previous=Előző találatra ugrás + +category.misc=Általános mode.normal.enter_mode_insert=Enter insert mode: Ignore all commands mode.normal.quote=Pass next keypress through to the page mode.normal.help=Show this dialog mode.normal.dev=Open Developer Toolbar mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Keyboard Shortcuts diff --git a/extension/locale/id/vimfx.properties b/extension/locale/id/vimfx.properties index 2637591..89cec39 100644 --- a/extension/locale/id/vimfx.properties +++ b/extension/locale/id/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Preferensi item_blacklist_button_tooltip=Larangan item_blacklist_button_inverse_tooltip=Remove this rule -help_section_urls=Penanganan URL +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Fokus pada Address Bar mode.normal.focus_search_bar=Focus the Search Bar mode.normal.paste_and_go=Navigasi ke alamat dalam clipboard mode.normal.paste_and_go_in_tab=Buka tab baru dan navigasi ke alamat dalam clipboard -mode.normal.follow_copy=Salin pranala atau teks ke dalam clipboard -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Salin pranala halaman sekarang ke clipboard +mode.normal.go_up_path=Go up one level in the URL hierarchy +mode.normal.go_to_root=Go up to root of the URL hierarchy +mode.normal.go_home=Navigasi ke Halaman Beranda +mode.normal.history_back=Mundur dalam history +mode.normal.history_forward=Maju dalam history mode.normal.reload=Muat ulang halaman sekarang mode.normal.reload_force=Muat ulang halaman sekarang dan seluruh aset (js, css, gambar) mode.normal.reload_all=Muat ulang semua tab @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Muat ulang semua tab beserta aset (js, css, gambar) mode.normal.stop=Hentikan memuata halaman sekarang mode.normal.stop_all=Hentikan memuat halaman pada semua tab -help_section_nav=Navigasi halaman -mode.normal.scroll_to_top=Gulung ke Atas halaman -mode.normal.scroll_to_bottom=Gulung ke Bawah halaman -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Gulung ke Bawah -mode.normal.scroll_up=Gulung ke Atas +category.scrolling=Scrolling mode.normal.scroll_left=Gulung ke Kiri mode.normal.scroll_right=Gulung ke Kanan -mode.normal.scroll_half_page_down=Gulung setengah halaman ke Bawah -mode.normal.scroll_half_page_up=Gulung setengah halaman ke Atas +mode.normal.scroll_down=Gulung ke Bawah +mode.normal.scroll_up=Gulung ke Atas mode.normal.scroll_page_down=Gulung satu halaman ke Bawah mode.normal.scroll_page_up=Gulung satu halaman ke Atas +mode.normal.scroll_half_page_down=Gulung setengah halaman ke Bawah +mode.normal.scroll_half_page_up=Gulung setengah halaman ke Atas +mode.normal.scroll_to_top=Gulung ke Atas halaman +mode.normal.scroll_to_bottom=Gulung ke Bawah halaman +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Bekerja dengan tab +category.tabs=Tab mode.normal.tab_new=Buka tab kosong baru +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Buka tab sebelum mode.normal.tab_select_next=Buka tab sesudah mode.normal.tab_move_backward=Pindah tab sekarang ke kiri mode.normal.tab_move_forward=Pindah tab sekarang ke kanan -mode.normal.go_home=Navigasi ke Halaman Beranda mode.normal.tab_select_first=Buka tab Pertama mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Buka tab Terakhir mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Tutup tab sekarang mode.normal.tab_restore=Buka tab terakhir ditutup +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Berselancar +category.browsing=Berselancar mode.normal.follow=Ikuti pranala pada halaman sekarang mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Salin pranala atau teks ke dalam clipboard +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Go to previous page mode.normal.follow_next=Go to next page mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Go up one level in the URL hierarchy -mode.normal.go_to_root=Go up to root of the URL hierarchy -mode.normal.history_back=Mundur dalam history -mode.normal.history_forward=Maju dalam history -help_section_misc=Lain-lain +category.find=Find mode.normal.find=Masuk mode pencarian mode.normal.find_highlight_all=Masuk mode pencarian menandai semua cocok mode.normal.find_next=Menuju temuan cocok setelah mode.normal.find_previous=Menuju temuan cocok sebelum + +category.misc=Lain-lain mode.normal.enter_mode_insert=Enter insert mode: Ignore all commands mode.normal.quote=Pass next keypress through to the page mode.normal.help=Show this dialog mode.normal.dev=Buka Toolbar Pengembang mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Keyboard Shortcuts diff --git a/extension/locale/it/vimfx.properties b/extension/locale/it/vimfx.properties index c7a50c1..ddb4bf7 100644 --- a/extension/locale/it/vimfx.properties +++ b/extension/locale/it/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Preferenze item_blacklist_button_tooltip=Lista nera item_blacklist_button_inverse_tooltip=Rimuovi questa regola -help_section_urls=Gestire gli URL +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Sposta il focus sulla barra degli indirizzi mode.normal.focus_search_bar=Sposta il focus sulla barra di ricerca. mode.normal.paste_and_go=Vai all'indirizzo presente negli appunti mode.normal.paste_and_go_in_tab=Apri un nuovo tab e vai all'indirizzo presente negli appunti -mode.normal.follow_copy=Copia il link o il testo nella casella negli appunti -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Copia la pagina corrente negli appunti +mode.normal.go_up_path=Sali di un livello nella gerarchia dell'URL +mode.normal.go_to_root=Vai alla radice della gerarchia dell'URL +mode.normal.go_home=Vai alla pagina home +mode.normal.history_back=Torna indietro nella cronologia +mode.normal.history_forward=Vai avanti nella cronologia mode.normal.reload=Ricarica la pagina corrente mode.normal.reload_force=Ricarica la pagina corrente e tutte le risorse relative (js, css, img) mode.normal.reload_all=Ricarica tutti i tab @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Ricarica tutti i tab incluse le risorse (js, css, i mode.normal.stop=Ferma il caricamento della pagina corrente mode.normal.stop_all=Ferma il caricamento di tutti i tab -help_section_nav=Navigare nella pagina -mode.normal.scroll_to_top=Scorri all'inizio della pagina -mode.normal.scroll_to_bottom=Scorri alla fine della pagina -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Scorri in basso -mode.normal.scroll_up=Scorri in alto +category.scrolling=Scrolling mode.normal.scroll_left=Scorri a sinistra mode.normal.scroll_right=Scorri a destra -mode.normal.scroll_half_page_down=Scorri di metà pagina in basso -mode.normal.scroll_half_page_up=Scorri di metà pagina in alto +mode.normal.scroll_down=Scorri in basso +mode.normal.scroll_up=Scorri in alto mode.normal.scroll_page_down=Scorri di una pagina in basso mode.normal.scroll_page_up=Scorri di una pagina in alto +mode.normal.scroll_half_page_down=Scorri di metà pagina in basso +mode.normal.scroll_half_page_up=Scorri di metà pagina in alto +mode.normal.scroll_to_top=Scorri all'inizio della pagina +mode.normal.scroll_to_bottom=Scorri alla fine della pagina +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Lavorare con i tab +category.tabs=Tab mode.normal.tab_new=Apri un nuovo tab vuoto +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Vai al tab precedente mode.normal.tab_select_next=Vai al prossimo tab mode.normal.tab_move_backward=Sposta il tab corrente a sinistra mode.normal.tab_move_forward=Sposta il tab corrente a destra -mode.normal.go_home=Vai alla pagina home mode.normal.tab_select_first=Vai al primo tab mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Vai all'ultimo tab mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Chiudi il tab corrente mode.normal.tab_restore=Riapri l'ulitmo tab chiuso +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Navigazione +category.browsing=Navigazione mode.normal.follow=Apri un link nella pagina corrente mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Copia il link o il testo nella casella negli appunti +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Vai alla pagina precedente mode.normal.follow_next=Vai alla prossima pagina mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Sali di un livello nella gerarchia dell'URL -mode.normal.go_to_root=Vai alla radice della gerarchia dell'URL -mode.normal.history_back=Torna indietro nella cronologia -mode.normal.history_forward=Vai avanti nella cronologia -help_section_misc=Miscellanea +category.find=Find mode.normal.find=Entra nella modalità ricerca mode.normal.find_highlight_all=Entra nella modalità ricerca evidenziando tutte le occorrenze mode.normal.find_next=Vai al prossimo risultato della ricerca mode.normal.find_previous=Vai al precedente risultato della ricerca + +category.misc=Miscellanea mode.normal.enter_mode_insert=Entra in modalità inserimento: ignora tutti i comandi mode.normal.quote=Pass next keypress through to the page mode.normal.help=Mostra questa schermata mode.normal.dev=Apri la barra degli strumenti Sviluppatore mode.normal.esc=Chiude l'elemento attivo -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Scorciatoie da tastiera diff --git a/extension/locale/ja/vimfx.properties b/extension/locale/ja/vimfx.properties index fe69d1e..91ca000 100644 --- a/extension/locale/ja/vimfx.properties +++ b/extension/locale/ja/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=設定 item_blacklist_button_tooltip=ブラックリスト item_blacklist_button_inverse_tooltip=このルールを削除 -help_section_urls=URLの取り扱い +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=アドレスバーにフォーカス mode.normal.focus_search_bar=検索バーにフォーカス mode.normal.paste_and_go=クリップボードのアドレスに移動 mode.normal.paste_and_go_in_tab=新しいタブを開いてクリップボードのアドレスに移動 -mode.normal.follow_copy=URLまたは入力値をクリップボードにコピー -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=現在のページへのリンクをクリップボードにコピー +mode.normal.go_up_path=URLを一階層上る +mode.normal.go_to_root=URLを最上階まで上る +mode.normal.go_home=ホームページに移動する +mode.normal.history_back=履歴を戻る +mode.normal.history_forward=履歴を進む mode.normal.reload=現在のページを再読み込み mode.normal.reload_force=現在のページとその全てのファイル(js, css, img)を再読み込み mode.normal.reload_all=全てのタブを再読み込み @@ -21,71 +26,70 @@ mode.normal.reload_all_force=全てのタブのページとその全てのファ mode.normal.stop=現在のページの読み込みを中止 mode.normal.stop_all=全てのタブのページの読み込みを中止 -help_section_nav=ページ移動 -mode.normal.scroll_to_top=ページの最上部へスクロール -mode.normal.scroll_to_bottom=ページの最下部へスクロール -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=下へスクロール -mode.normal.scroll_up=上へスクロール +category.scrolling=Scrolling mode.normal.scroll_left=左へスクロール mode.normal.scroll_right=右へスクロール -mode.normal.scroll_half_page_down=下へ半画面スクロール -mode.normal.scroll_half_page_up=上へ半画面スクロール +mode.normal.scroll_down=下へスクロール +mode.normal.scroll_up=上へスクロール mode.normal.scroll_page_down=下へ一画面スクロール mode.normal.scroll_page_up=上へ一画面スクロール +mode.normal.scroll_half_page_down=下へ半画面スクロール +mode.normal.scroll_half_page_up=上へ半画面スクロール +mode.normal.scroll_to_top=ページの最上部へスクロール +mode.normal.scroll_to_bottom=ページの最下部へスクロール +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=タブの操作 +category.tabs=タブの操作 mode.normal.tab_new=空のタブを開く +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=前のタブに移動する mode.normal.tab_select_next=次のタブに移動する mode.normal.tab_move_backward=現在のタブを左に移動する mode.normal.tab_move_forward=現在のタブを右に移動する -mode.normal.go_home=ホームページに移動する mode.normal.tab_select_first=最初のタブに移動する mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=最後のタブに移動する mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=現在のタブを閉じる mode.normal.tab_restore=最後に閉じたタブを復元する +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=ブラウジング +category.browsing=ブラウジング mode.normal.follow=現在のページにあるリンクをたどる mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=URLまたは入力値をクリップボードにコピー +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=前のページに移動 mode.normal.follow_next=次のページに移動 mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=URLを一階層上る -mode.normal.go_to_root=URLを最上階まで上る -mode.normal.history_back=履歴を戻る -mode.normal.history_forward=履歴を進む -help_section_misc=その他 +category.find=Find mode.normal.find=ページ内検索モードに入る mode.normal.find_highlight_all=ページ内検索モードに入り、全ての一致語を強調する mode.normal.find_next=次の一致部分へ移動 mode.normal.find_previous=前の一致部分へ移動 + +category.misc=その他 mode.normal.enter_mode_insert=挿入モードへ入る:全てのコマンドを無視します mode.normal.quote=Pass next keypress through to the page mode.normal.help=このダイアログを表示 mode.normal.dev=開発者ツールバーを開く mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=キーボードショートカット diff --git a/extension/locale/nl/vimfx.properties b/extension/locale/nl/vimfx.properties index 07fa9e6..0b3ac67 100644 --- a/extension/locale/nl/vimfx.properties +++ b/extension/locale/nl/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Instellingen item_blacklist_button_tooltip=Zwarte lijst item_blacklist_button_inverse_tooltip=Remove this rule -help_section_urls=Omgaan met URLs +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Focus de adresbalk mode.normal.focus_search_bar=Focus the Search Bar mode.normal.paste_and_go=Open het adres op het klembord mode.normal.paste_and_go_in_tab=Open het adres op het klembord in een nieuw tabblad -mode.normal.follow_copy=Kopieer link URL of tekstinvoer naar klembord -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Kopieer link van huidige pagina naar klembord +mode.normal.go_up_path=Go up one level in the URL hierarchy +mode.normal.go_to_root=Go up to root of the URL hierarchy +mode.normal.go_home=Open startpagina +mode.normal.history_back=Ga terug in de geschiedenis +mode.normal.history_forward=Ga vooruit in geschiedenis mode.normal.reload=Herlaad huidige pagina mode.normal.reload_force=Herlaad huidige pagina inclusief javascript, css en plaatjes mode.normal.reload_all=Herlaad alle tabbladen @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Herlaad alle tabbladen inclusief javascript, css en mode.normal.stop=Stop loading current page mode.normal.stop_all=Stop loading pages in all tabs -help_section_nav=Navigeren over de pagina -mode.normal.scroll_to_top=Scroll naar de bovenkant -mode.normal.scroll_to_bottom=Scroll naar de onderkant -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Scroll naar beneden -mode.normal.scroll_up=Scroll naar boven +category.scrolling=Scrolling mode.normal.scroll_left=Scroll naar links mode.normal.scroll_right=Scroll naar rechts -mode.normal.scroll_half_page_down=Scroll een halve pagina naar beneden -mode.normal.scroll_half_page_up=Scroll een halve pagina naar boven +mode.normal.scroll_down=Scroll naar beneden +mode.normal.scroll_up=Scroll naar boven mode.normal.scroll_page_down=Scroll een pagina naar beneden mode.normal.scroll_page_up=Scroll een pagina naar boven +mode.normal.scroll_half_page_down=Scroll een halve pagina naar beneden +mode.normal.scroll_half_page_up=Scroll een halve pagina naar boven +mode.normal.scroll_to_top=Scroll naar de bovenkant +mode.normal.scroll_to_bottom=Scroll naar de onderkant +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Werken met tabbladen +category.tabs=Tabbladen mode.normal.tab_new=Open een nieuw tabblad +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Ga naar het vorige tabblad mode.normal.tab_select_next=Ga naar het volgende tabblad mode.normal.tab_move_backward=Verplaats huidige tabblad naar links mode.normal.tab_move_forward=Verplaats huidige tabblad naar rechts -mode.normal.go_home=Open startpagina mode.normal.tab_select_first=Ga naar het eerste tabblad mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Ga naar het laatste tabblad mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Sluit huidige tabblad mode.normal.tab_restore=Heropen laatst gesloten tabblad +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Browsen +category.browsing=Browsen mode.normal.follow=Volg een link op de huidige pagina mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Kopieer link URL of tekstinvoer naar klembord +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Go to previous page mode.normal.follow_next=Go to next page mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Go up one level in the URL hierarchy -mode.normal.go_to_root=Go up to root of the URL hierarchy -mode.normal.history_back=Ga terug in de geschiedenis -mode.normal.history_forward=Ga vooruit in geschiedenis -help_section_misc=Trivia +category.find=Find mode.normal.find=Zoeken mode.normal.find_highlight_all=Zoek met highlights mode.normal.find_next=Ga naar volgende overeenkomst mode.normal.find_previous=Ga naar vorige overeenkomst + +category.misc=Trivia mode.normal.enter_mode_insert=Enter insert mode: Ignore all commands mode.normal.quote=Pass next keypress through to the page mode.normal.help=Show this dialog mode.normal.dev=Open ontwikkelaarswerkbalk mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Keyboard Shortcuts diff --git a/extension/locale/pl/vimfx.properties b/extension/locale/pl/vimfx.properties index 46827b8..d67ebde 100644 --- a/extension/locale/pl/vimfx.properties +++ b/extension/locale/pl/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Preferencje item_blacklist_button_tooltip=Czarna lista item_blacklist_button_inverse_tooltip=Usuń tę regułę -help_section_urls=Praca z adresami +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Przejdź do paska adresu mode.normal.focus_search_bar=Przejdź do paska wyszukiwania mode.normal.paste_and_go=Przejdź pod adres w schowku mode.normal.paste_and_go_in_tab=Przejdź pod adres w schowku w nowej karcie -mode.normal.follow_copy=Kopiuj adres odnośnika lub treść pola do schowka -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=Kopiuj adres bieżącej strony do schowka +mode.normal.go_up_path=Idź poziom wyżej w hierarchii URL +mode.normal.go_to_root=Idź do korzenia w hierarchii URL +mode.normal.go_home=Przejdź na stronę startową +mode.normal.history_back=Wstecz +mode.normal.history_forward=Dalej mode.normal.reload=Odśwież bieżącą stronę mode.normal.reload_force=Odśwież bieżącą stronę wraz z zasobami (js, css, img) mode.normal.reload_all=Odśwież strony we wszystkich kartach @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Odśwież strony we wszystkich kartach wraz z zasob mode.normal.stop=Anuluj ładowanie bieżącej strony mode.normal.stop_all=Anuluj ładowanie wszystkich kart -help_section_nav=Poruszanie po stronie -mode.normal.scroll_to_top=Przewiń na górę strony -mode.normal.scroll_to_bottom=Przewin na dół strony -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Przewiń w dół -mode.normal.scroll_up=Przewiń w górę +category.scrolling=Scrolling mode.normal.scroll_left=Przewiń w lewo mode.normal.scroll_right=Przewiń w prawo -mode.normal.scroll_half_page_down=Przewiń o pół strony w dół -mode.normal.scroll_half_page_up=Przewiń o pół strony w górę +mode.normal.scroll_down=Przewiń w dół +mode.normal.scroll_up=Przewiń w górę mode.normal.scroll_page_down=Przewiń o pełną stronę w dół mode.normal.scroll_page_up=Przewiń o pełną stronę w górę +mode.normal.scroll_half_page_down=Przewiń o pół strony w dół +mode.normal.scroll_half_page_up=Przewiń o pół strony w górę +mode.normal.scroll_to_top=Przewiń na górę strony +mode.normal.scroll_to_bottom=Przewin na dół strony +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Karty +category.tabs=Karty mode.normal.tab_new=Otwórz nową kartę +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=Przejdź do poprzedniej karty mode.normal.tab_select_next=Przejdź do następnej karty mode.normal.tab_move_backward=Przenieś aktywną kartę w lewo mode.normal.tab_move_forward=Przenieś aktywną kartę w prawo -mode.normal.go_home=Przejdź na stronę startową mode.normal.tab_select_first=Idź do pierwszej karty mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=Idź do ostatniej karty mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=Zamknij bieżącą kartę mode.normal.tab_restore=Przywróć ostatnio zamkniętą kartę +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=Przeglądanie +category.browsing=Przeglądanie mode.normal.follow=Otwórz link z bieżącej strony mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=Kopiuj adres odnośnika lub treść pola do schowka +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=Idź do poprzedniej strony mode.normal.follow_next=Idź do następnej strony mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Idź poziom wyżej w hierarchii URL -mode.normal.go_to_root=Idź do korzenia w hierarchii URL -mode.normal.history_back=Wstecz -mode.normal.history_forward=Dalej -help_section_misc=Różne +category.find=Find mode.normal.find=Znajdź mode.normal.find_highlight_all=Znajdź i podkreśl wszystkie wystąpienia mode.normal.find_next=Znajdź następne mode.normal.find_previous=Znajdź poprzednie + +category.misc=Różne mode.normal.enter_mode_insert=Włącz insert mode: Ignoruj wszystkie komendy mode.normal.quote=Pass next keypress through to the page mode.normal.help=Pokaż ten dialog mode.normal.dev=Otwórz pasek programisty mode.normal.esc=Zdeaktywuj element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=Skróty klawiszowe diff --git a/extension/locale/ru/vimfx.properties b/extension/locale/ru/vimfx.properties index 3ee13f6..de7fbee 100644 --- a/extension/locale/ru/vimfx.properties +++ b/extension/locale/ru/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Настройки item_blacklist_button_tooltip=Добавить в стоп-список item_blacklist_button_inverse_tooltip=Убрать эту комбинацию -help_section_urls=Адресная Строка +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=Фокус на адресную строку mode.normal.focus_search_bar=Фокус на строку поиска mode.normal.paste_and_go=Перейти по адресу в буфере обмена mode.normal.paste_and_go_in_tab=Открыть новую вкладку и перейти по адресу в буфере обмена -mode.normal.follow_copy=Скопировать в буфер обмена адрес ссылки или текст в элементе ввода -mode.normal.follow_focus=Фокус на/выбрать элемент mode.normal.copy_current_url=Скопировать в буфер обмена адрес текущей страницы +mode.normal.go_up_path=Перейти на уровень выше в URL +mode.normal.go_to_root=Перейти к корню сайта +mode.normal.go_home=Загрузить домашнюю страницу +mode.normal.history_back=Предыдущая страница +mode.normal.history_forward=Следующая страница mode.normal.reload=Перезагрузить текущую страницу mode.normal.reload_force=Перезагрузить текущую страницу и все ресурсы (js, css, img) mode.normal.reload_all=Перезагрузить страницы во всех вкладках @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Перезагрузить страницы и ре mode.normal.stop=Остановить загрузку mode.normal.stop_all=Остановить загрузку во всех вкладках -help_section_nav=Страница -mode.normal.scroll_to_top=Прокрутить к верху страницы -mode.normal.scroll_to_bottom=Прокрутить к низу страницы -mode.normal.scroll_to_left=Прокрутить влево до конца -mode.normal.scroll_to_right=Прокрутить вправо до конца -mode.normal.scroll_down=Прокрутить вниз -mode.normal.scroll_up=Прокрутить вверх +category.scrolling=Scrolling mode.normal.scroll_left=Прокрутить влево mode.normal.scroll_right=Прокрутить вправо -mode.normal.scroll_half_page_down=Прокрутить полстраницы вниз -mode.normal.scroll_half_page_up=Прокрутить полстраницы вверх +mode.normal.scroll_down=Прокрутить вниз +mode.normal.scroll_up=Прокрутить вверх mode.normal.scroll_page_down=Прокрутить на страницу вниз mode.normal.scroll_page_up=Прокрутить на страницу вверх +mode.normal.scroll_half_page_down=Прокрутить полстраницы вниз +mode.normal.scroll_half_page_up=Прокрутить полстраницы вверх +mode.normal.scroll_to_top=Прокрутить к верху страницы +mode.normal.scroll_to_bottom=Прокрутить к низу страницы +mode.normal.scroll_to_left=Прокрутить влево до конца +mode.normal.scroll_to_right=Прокрутить вправо до конца -help_section_tabs=Вкладки +category.tabs=Вкладки mode.normal.tab_new=Открыть новую вкладку +mode.normal.tab_duplicate=Дублировать текущую вкладку mode.normal.tab_select_previous=Перейти к предыдущей вкладке mode.normal.tab_select_next=Перейти к следующей вкладке mode.normal.tab_move_backward=Переместить текущую вкладку влево mode.normal.tab_move_forward=Переместить текущую вкладку вправо -mode.normal.go_home=Загрузить домашнюю страницу mode.normal.tab_select_first=Перейти к первой вкладке mode.normal.tab_select_first_non_pinned=Перейти к первой незакреплённой вкладке mode.normal.tab_select_last=Перейти к последней вкладке mode.normal.tab_toggle_pinned=Закрепить/открепить текущую вкладку -mode.normal.tab_duplicate=Дублировать текущую вкладку -mode.normal.tab_close_to_end=Закрыть вкладки справа -mode.normal.tab_close_other=Закрыть все вкладки кроме текущей mode.normal.tab_close=Закрыть текущую вкладку mode.normal.tab_restore=Восстановить последнюю закрытую вкладку +mode.normal.tab_close_to_end=Закрыть вкладки справа +mode.normal.tab_close_other=Закрыть все вкладки кроме текущей -help_section_browse=Навигация +category.browsing=Навигация mode.normal.follow=Перейти по ссылке mode.normal.follow_in_tab=Перейти по ссылке в новой фоновой вкладке mode.normal.follow_in_focused_tab=Перейти по ссылке в новой вкладке на первом плане mode.normal.follow_multiple=Перейти по нескольким ссылкам в новых вкладках, сфокусироваться на поле ввода или щелкнуть по нескольким кнопкам +mode.normal.follow_copy=Скопировать в буфер обмена адрес ссылки или текст в элементе ввода +mode.normal.follow_focus=Фокус на/выбрать элемент mode.normal.follow_previous=Перейти к предыдущей странице mode.normal.follow_next=Перейти к следующей странице mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Перейти на уровень выше в URL -mode.normal.go_to_root=Перейти к корню сайта -mode.normal.history_back=Предыдущая страница -mode.normal.history_forward=Следующая страница -help_section_misc=Разное +category.find=Find mode.normal.find=Режим поиска mode.normal.find_highlight_all=Режим поиска с выделением всех совпадений mode.normal.find_next=Перейти к следующему результату поиска mode.normal.find_previous=Перейти к предыдущему результату поиска + +category.misc=Разное mode.normal.enter_mode_insert=Режим ввода: все команды игнорируются mode.normal.quote=Передать странице следующее нажатие клавиши mode.normal.help=Открыть это окно mode.normal.dev=Открыть Панель Разработки mode.normal.esc=Закрыть/покинуть элемент с фокусом -help_section_mode_hints=Режим маркеров +mode.hints=Режим маркеров mode.hints.exit=Вернуться в нормальный режим mode.hints.rotate_markers_forward=Переставить перекрывающиеся маркеры mode.hints.rotate_markers_backward=Переставить перекрывающиеся маркеры в обратном порядке mode.hints.delete_hint_char=Удалить последний введённый символ -help_section_mode_insert=Режим вставки +mode.insert=Режим вставки mode.insert.exit=Вернуться в нормальный режим -help_section_mode_find=Режим поиска +mode.find=Режим поиска mode.find.exit=Закрыть панель поиска help_title=Команды diff --git a/extension/locale/sv-SE/vimfx.properties b/extension/locale/sv-SE/vimfx.properties index e75d8aa..3fa5c19 100644 --- a/extension/locale/sv-SE/vimfx.properties +++ b/extension/locale/sv-SE/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=Inställningar item_blacklist_button_tooltip=Svartlista item_blacklist_button_inverse_tooltip=Ta bort denna regel -help_section_urls=Hantera URL:er +mode.normal=Normalläge + +category.location=Adress mode.normal.focus_location_bar=Fokusera adressfältet mode.normal.focus_search_bar=Fokusera sökfältet mode.normal.paste_and_go=Klistra in och kör mode.normal.paste_and_go_in_tab=Klistra in och kör i en ny flik -mode.normal.follow_copy=Kopiera länkadress eller inmatad text -mode.normal.follow_focus=Fokusera/markera element mode.normal.copy_current_url=Kopiera nuvarande URL +mode.normal.go_up_path=Gå upp en nivå i URL:en +mode.normal.go_to_root=Gå till roten av URL:en +mode.normal.go_home=Gå till Startsidan +mode.normal.history_back=Gå tillbaka i historiken +mode.normal.history_forward=Gå framåt i historiken mode.normal.reload=Ladda om mode.normal.reload_force=Ladda om (hoppa över cache) mode.normal.reload_all=Ladda om alla flikar @@ -21,71 +26,70 @@ mode.normal.reload_all_force=Ladda om alla flikar (hoppa över cache) mode.normal.stop=Stoppa inladdning av sidan mode.normal.stop_all=Stoppa inladdning i alla flikar -help_section_nav=Navigera sidan -mode.normal.scroll_to_top=Scrolla högst upp -mode.normal.scroll_to_bottom=Scrolla längst ned -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=Scolla ned -mode.normal.scroll_up=Scrolla upp +category.scrolling=Scrollning mode.normal.scroll_left=Scrolla åt vänster mode.normal.scroll_right=Scrolla åt höger -mode.normal.scroll_half_page_down=Scrolla en halv sida ned -mode.normal.scroll_half_page_up=Scrolla en halv sida upp +mode.normal.scroll_down=Scolla ned +mode.normal.scroll_up=Scrolla upp mode.normal.scroll_page_down=Scrolla en hel sida ned mode.normal.scroll_page_up=Scrolla en hel sida upp +mode.normal.scroll_half_page_down=Scrolla en halv sida ned +mode.normal.scroll_half_page_up=Scrolla en halv sida upp +mode.normal.scroll_to_top=Scrolla högst upp +mode.normal.scroll_to_bottom=Scrolla längst ned +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=Arbeta med flikar +category.tabs=Flikar mode.normal.tab_new=Ny flik +mode.normal.tab_duplicate=Duplicera flik mode.normal.tab_select_previous=Föregående flik mode.normal.tab_select_next=Nästa flik mode.normal.tab_move_backward=Flytta flik åt vänster mode.normal.tab_move_forward=Flytta flik åt höger -mode.normal.go_home=Gå till Startsidan mode.normal.tab_select_first=Gå till den första fliken mode.normal.tab_select_first_non_pinned=Gå till den första icke fastnålade fliken mode.normal.tab_select_last=Gå till den sista fliken mode.normal.tab_toggle_pinned=Växla mellan vanlig och fastnålad flik -mode.normal.tab_duplicate=Duplicera flik -mode.normal.tab_close_to_end=Stäng flikar till höger -mode.normal.tab_close_other=Stäng övriga flikar mode.normal.tab_close=Stäng flik mode.normal.tab_restore=Återställ stängd flik +mode.normal.tab_close_to_end=Stäng flikar till höger +mode.normal.tab_close_other=Stäng övriga flikar -help_section_browse=Surfande +category.browsing=Surfande mode.normal.follow=Följ länk, fokusera textruta eller klicka på knapp mode.normal.follow_in_tab=Följ länk i ny bakgrundsflik mode.normal.follow_in_focused_tab=Följ länk i ny förgrundsflik mode.normal.follow_multiple=Följ flera länkar i nya bakgrundsflikar, fokusera textruta eller klicka på flera knappar +mode.normal.follow_copy=Kopiera länkadress eller inmatad text +mode.normal.follow_focus=Fokusera/markera element mode.normal.follow_previous=Gå till föregående sida mode.normal.follow_next=Gå till nästa sida mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=Gå upp en nivå i URL:en -mode.normal.go_to_root=Gå till roten av URL:en -mode.normal.history_back=Gå tillbaka i historiken -mode.normal.history_forward=Gå framåt i historiken -help_section_misc=Övrigt +category.find=Sök mode.normal.find=Gå till Sökläge mode.normal.find_highlight_all=Gå till Sökläge och markera alla sökresultat mode.normal.find_next=Nästa sökresultat mode.normal.find_previous=Föregående sökresultat + +category.misc=Övrigt mode.normal.enter_mode_insert=Gå till Inmatningsläge: Ignorera alla kommandon mode.normal.quote=Skicka nästa tangenttryckning direkt till sidan mode.normal.help=Visa denna ruta mode.normal.dev=Öppna utvecklarverktygsfältet mode.normal.esc=Avfokusera/stäng aktivt element -help_section_mode_hints=Etikettsläge +mode.hints=Etikettsläge mode.hints.exit=Återvänd till Normalläge mode.hints.rotate_markers_forward=Rotera överlappande etiketter framåt mode.hints.rotate_markers_backward=Rotera överlappande etiketter bakåt mode.hints.delete_hint_char=Radera senast inmatade tecken -help_section_mode_insert=Inmatingsläge +mode.insert=Inmatingsläge mode.insert.exit=Återvänd till Normalläge -help_section_mode_find=Sökläge +mode.find=Sökläge mode.find.exit=Stäng sökpanelen help_title=Tangentbordskommandon diff --git a/extension/locale/zh-CN/vimfx.properties b/extension/locale/zh-CN/vimfx.properties index 7d16f7d..5372980 100644 --- a/extension/locale/zh-CN/vimfx.properties +++ b/extension/locale/zh-CN/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=首选项 item_blacklist_button_tooltip=添加到黑名单 item_blacklist_button_inverse_tooltip=移除此规则 -help_section_urls=处理 URL +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=聚焦地址栏 mode.normal.focus_search_bar=聚焦搜索栏 mode.normal.paste_and_go=打开剪贴板中的链接 mode.normal.paste_and_go_in_tab=在新标签页中打开剪贴板中的链接 -mode.normal.follow_copy=复制链接地址或输入框文本到剪贴板 -mode.normal.follow_focus=聚焦/选中元素 mode.normal.copy_current_url=复制当前标签页链接到剪贴板 +mode.normal.go_up_path=打开上一级页面 +mode.normal.go_to_root=打开根目录页面 +mode.normal.go_home=跳到主页 +mode.normal.history_back=后退 +mode.normal.history_forward=前进 mode.normal.reload=重新载入当前页面 mode.normal.reload_force=重新载入当前页面及所有外部资源(js,css,img) mode.normal.reload_all=重新载入所有标签页中打开的页面 @@ -21,71 +26,70 @@ mode.normal.reload_all_force=重新载入所有标签页中包含外部资源( mode.normal.stop=停止载入当前页面 mode.normal.stop_all=停止载入所有标签页中的页面 -help_section_nav=页面导航 -mode.normal.scroll_to_top=滚动到页面顶部 -mode.normal.scroll_to_bottom=滚动到页面底部 -mode.normal.scroll_to_left=滚动到最左边 -mode.normal.scroll_to_right=滚动到最右边 -mode.normal.scroll_down=向下滚动 -mode.normal.scroll_up=向上滚动 +category.scrolling=页面导航 mode.normal.scroll_left=向左滚动 mode.normal.scroll_right=向右滚动 -mode.normal.scroll_half_page_down=向下滚动半页 -mode.normal.scroll_half_page_up=向上滚动半页 +mode.normal.scroll_down=向下滚动 +mode.normal.scroll_up=向上滚动 mode.normal.scroll_page_down=向下滚动整页 mode.normal.scroll_page_up=向上滚动整页 +mode.normal.scroll_half_page_down=向下滚动半页 +mode.normal.scroll_half_page_up=向上滚动半页 +mode.normal.scroll_to_top=滚动到页面顶部 +mode.normal.scroll_to_bottom=滚动到页面底部 +mode.normal.scroll_to_left=滚动到最左边 +mode.normal.scroll_to_right=滚动到最右边 -help_section_tabs=控制标签页 +category.tabs=控制标签页 mode.normal.tab_new=打开新的空白标签页 +mode.normal.tab_duplicate=复制标签页 mode.normal.tab_select_previous=跳到上一标签页 mode.normal.tab_select_next=跳到下一标签页 mode.normal.tab_move_backward=移动当前标签页到左边 mode.normal.tab_move_forward=移动当前标签页到右边 -mode.normal.go_home=跳到主页 mode.normal.tab_select_first=跳到第一个标签页 mode.normal.tab_select_first_non_pinned=跳到第一个未固定的标签页 mode.normal.tab_select_last=跳到最后一个标签页 mode.normal.tab_toggle_pinned=固定/不固定标签页 -mode.normal.tab_duplicate=复制标签页 -mode.normal.tab_close_to_end=关闭右边的标签页 -mode.normal.tab_close_other=关闭其他标签页 mode.normal.tab_close=关闭当前标签页 mode.normal.tab_restore=恢复最后关闭的标签页 +mode.normal.tab_close_to_end=关闭右边的标签页 +mode.normal.tab_close_other=关闭其他标签页 -help_section_browse=浏览 +category.browsing=浏览 mode.normal.follow=打开当前页面上的某个链接 mode.normal.follow_in_tab=在新的后台标签页中打开此链接 mode.normal.follow_in_focused_tab=在新的前台标签页中打开此链接 mode.normal.follow_multiple=在新的后台标签页中打开多个链接,聚焦输入框或点击多个按钮 +mode.normal.follow_copy=复制链接地址或输入框文本到剪贴板 +mode.normal.follow_focus=聚焦/选中元素 mode.normal.follow_previous=打开上一页 mode.normal.follow_next=打开下一页 mode.normal.text_input=聚焦最后聚焦过的或第一个输入框 -mode.normal.go_up_path=打开上一级页面 -mode.normal.go_to_root=打开根目录页面 -mode.normal.history_back=后退 -mode.normal.history_forward=前进 -help_section_misc=杂项 +category.find=Find mode.normal.find=进入查找模式 mode.normal.find_highlight_all=进入查找模式并高亮所有匹配项 mode.normal.find_next=跳到下一个查找匹配项 mode.normal.find_previous=跳到上一个查找匹配项 + +category.misc=杂项 mode.normal.enter_mode_insert=进入插入模式:忽略所有命令 mode.normal.quote=把下一个按键直接发送给页面(不触发 VimFx 内设置的快捷键) mode.normal.help=显示这个对话框 mode.normal.dev=打开开发者工具栏 mode.normal.esc=取消聚焦/关闭激活的元素 -help_section_mode_hints=Hints 模式 +mode.hints=Hints 模式 mode.hints.exit=返回正常模式 mode.hints.rotate_markers_forward=向前旋转重叠的标记 mode.hints.rotate_markers_backward=向后旋转重叠的标记 mode.hints.delete_hint_char=删除最后输入的提示符 -help_section_mode_insert=插入模式 +mode.insert=插入模式 mode.insert.exit=返回正常模式 -help_section_mode_find=查找模式 +mode.find=查找模式 mode.find.exit=关闭查找栏 help_title=键盘快捷键 diff --git a/extension/locale/zh-TW/vimfx.properties b/extension/locale/zh-TW/vimfx.properties index 396da4c..3b43055 100644 --- a/extension/locale/zh-TW/vimfx.properties +++ b/extension/locale/zh-TW/vimfx.properties @@ -6,14 +6,19 @@ item_preferences=偏好設定 item_blacklist_button_tooltip=添加到黑名單 item_blacklist_button_inverse_tooltip=移除此規則 -help_section_urls=處理 URL +mode.normal=Normal Mode + +category.location=Location mode.normal.focus_location_bar=游標移至網址列 mode.normal.focus_search_bar=游標移至搜尋列 mode.normal.paste_and_go=打開剪貼簿中的連結 mode.normal.paste_and_go_in_tab=在新分頁中打開剪貼簿中的連結 -mode.normal.follow_copy=複製連結網址或目前輸入框中的文字到剪貼簿 -mode.normal.follow_focus=Focus/select element mode.normal.copy_current_url=複製目前網頁的網址至剪貼簿 +mode.normal.go_up_path=打開網址的上一級目錄 +mode.normal.go_to_root=打開網址的根目錄 +mode.normal.go_home=跳到首頁 +mode.normal.history_back=後退 +mode.normal.history_forward=前進 mode.normal.reload=重新載入目前網頁 mode.normal.reload_force=重新載入目前網頁及所有外部資源(js,css,img) mode.normal.reload_all=重新載入所有分頁 @@ -21,71 +26,70 @@ mode.normal.reload_all_force=重新載入所有網頁及其外部資源(js,c mode.normal.stop=停止載入目前網頁 mode.normal.stop_all=停止載入所有分頁 -help_section_nav=網頁導覽 -mode.normal.scroll_to_top=捲動到網頁最頂端 -mode.normal.scroll_to_bottom=捲動到網頁最末端 -mode.normal.scroll_to_left=Scroll to the far left -mode.normal.scroll_to_right=Scroll to the far right -mode.normal.scroll_down=往下捲動 -mode.normal.scroll_up=往上捲動 +category.scrolling=Scrolling mode.normal.scroll_left=向左捲動 mode.normal.scroll_right=向右捲動 -mode.normal.scroll_half_page_down=向下捲動半頁 -mode.normal.scroll_half_page_up=向上捲動半頁 +mode.normal.scroll_down=往下捲動 +mode.normal.scroll_up=往上捲動 mode.normal.scroll_page_down=向下捲動整頁 mode.normal.scroll_page_up=向上捲動整頁 +mode.normal.scroll_half_page_down=向下捲動半頁 +mode.normal.scroll_half_page_up=向上捲動半頁 +mode.normal.scroll_to_top=捲動到網頁最頂端 +mode.normal.scroll_to_bottom=捲動到網頁最末端 +mode.normal.scroll_to_left=Scroll to the far left +mode.normal.scroll_to_right=Scroll to the far right -help_section_tabs=處理所有分頁 +category.tabs=處理所有分頁 mode.normal.tab_new=新開一個空白分頁 +mode.normal.tab_duplicate=Duplicate current tab mode.normal.tab_select_previous=跳到上一個分頁 mode.normal.tab_select_next=跳到下一個分頁 mode.normal.tab_move_backward=向左移動目前分頁 mode.normal.tab_move_forward=向右移動目前分頁 -mode.normal.go_home=跳到首頁 mode.normal.tab_select_first=跳到第一個分頁 mode.normal.tab_select_first_non_pinned=Go to the First non-pinned tab mode.normal.tab_select_last=跳到最後一個分頁 mode.normal.tab_toggle_pinned=Pin/Unpin current tab -mode.normal.tab_duplicate=Duplicate current tab -mode.normal.tab_close_to_end=Close tabs to the right -mode.normal.tab_close_other=Close other tabs except the current tab mode.normal.tab_close=關閉目前分頁 mode.normal.tab_restore=恢復最後關閉的分頁 +mode.normal.tab_close_to_end=Close tabs to the right +mode.normal.tab_close_other=Close other tabs except the current tab -help_section_browse=瀏覽 +category.browsing=瀏覽 mode.normal.follow=打開目前網頁上的某個連結 mode.normal.follow_in_tab=Follow link in a new background tab mode.normal.follow_in_focused_tab=Follow link in a new foreground tab mode.normal.follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons +mode.normal.follow_copy=複製連結網址或目前輸入框中的文字到剪貼簿 +mode.normal.follow_focus=Focus/select element mode.normal.follow_previous=到上一頁 mode.normal.follow_next=到下一頁 mode.normal.text_input=Focus last focused or first text input -mode.normal.go_up_path=打開網址的上一級目錄 -mode.normal.go_to_root=打開網址的根目錄 -mode.normal.history_back=後退 -mode.normal.history_forward=前進 -help_section_misc=其他雜項 +category.find=Find mode.normal.find=進入搜尋模式 mode.normal.find_highlight_all=進入搜尋模式並標示所有符合項目 mode.normal.find_next=跳到下一個搜尋到的符合項目 mode.normal.find_previous=跳到上一個搜尋到的符合項目 + +category.misc=其他雜項 mode.normal.enter_mode_insert=進入插入模式並忽略所有指令 mode.normal.quote=Pass next keypress through to the page mode.normal.help=顯示協助說明框 mode.normal.dev=打開開發者工具列 mode.normal.esc=Blur/close active element -help_section_mode_hints=Hints Mode +mode.hints=Hints Mode mode.hints.exit=Return to normal mode mode.hints.rotate_markers_forward=Rotate overlapping markers forward mode.hints.rotate_markers_backward=Rotate overlapping markers backward mode.hints.delete_hint_char=Delete last typed hint character -help_section_mode_insert=Insert Mode +mode.insert=Insert Mode mode.insert.exit=Return to normal mode -help_section_mode_find=Find Mode +mode.find=Find Mode mode.find.exit=Close find bar help_title=鍵盤快速鍵 -- 2.39.3