From 3add9b43a547983ebd814ed2c13344a24ce7a5c6 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Sun, 24 May 2015 16:07:33 +0200 Subject: [PATCH] Rework custom shortcut prefs - Defaults are now set for all prefs (including custom shortcuts and advanced options), not just the options that can be seen in the options UI. - All command prefs are now named 'mode..'. So are the translation IDs for the commands. This helps to simplify the code. - Migration from the 0.5.x format and the format used in the devlopment version up until this commit can now be done once, instead of at every startup and every shortcut change. - All old custom shortcut prefs are migrated automatically, using a generalized migration facility that can be reused for other migrations in the future. - Some command names were slightly renamed to improve consistency and to make the more descriptive. The latter is important since regular users are now expected to be able to read lib/defaults.coffee as documentation on all default shortcuts. --- extension/bootstrap.coffee | 7 ++ extension/lib/command.coffee | 20 ++- extension/lib/commands.coffee | 157 +++++++++--------------- extension/lib/defaults.coffee | 60 +++++---- extension/lib/main.coffee | 4 - extension/lib/migrations.coffee | 128 +++++++++++++++++++ extension/lib/modes.coffee | 2 +- extension/lib/prefs.coffee | 9 +- extension/lib/utils.coffee | 5 +- extension/locale/de/vimfx.properties | 132 ++++++++++---------- extension/locale/el-GR/vimfx.properties | 132 ++++++++++---------- extension/locale/en-US/vimfx.properties | 132 ++++++++++---------- extension/locale/fr/vimfx.properties | 132 ++++++++++---------- extension/locale/hu/vimfx.properties | 132 ++++++++++---------- extension/locale/id/vimfx.properties | 132 ++++++++++---------- extension/locale/it/vimfx.properties | 132 ++++++++++---------- extension/locale/ja/vimfx.properties | 132 ++++++++++---------- extension/locale/nl/vimfx.properties | 132 ++++++++++---------- extension/locale/pl/vimfx.properties | 132 ++++++++++---------- extension/locale/ru/vimfx.properties | 132 ++++++++++---------- extension/locale/sv-SE/vimfx.properties | 132 ++++++++++---------- extension/locale/zh-CN/vimfx.properties | 132 ++++++++++---------- extension/locale/zh-TW/vimfx.properties | 132 ++++++++++---------- 23 files changed, 1163 insertions(+), 1077 deletions(-) create mode 100644 extension/lib/migrations.coffee diff --git a/extension/bootstrap.coffee b/extension/bootstrap.coffee index 8e417bf..1503c70 100644 --- a/extension/bootstrap.coffee +++ b/extension/bootstrap.coffee @@ -58,6 +58,13 @@ require = (path, moduleRoot = '.', dir = '.') -> require.scopes = {} require.data = require('./require-data') +# Set default prefs and apply migrations as early as possible. +{ setDefaultPrefs } = require('./lib/prefs') +{ applyMigrations +, migrations } = require('./lib/migrations') +setDefaultPrefs() +applyMigrations(migrations) + do (global = this) -> global.startup = require('./lib/main') diff --git a/extension/lib/command.coffee b/extension/lib/command.coffee index bc95e74..f2bca33 100644 --- a/extension/lib/command.coffee +++ b/extension/lib/command.coffee @@ -18,7 +18,7 @@ # along with VimFx. If not, see . ### -legacy = require('./legacy') +notation = require('vim-like-key-notation') utils = require('./utils') _ = require('./l10n') { getPref @@ -26,25 +26,23 @@ _ = require('./l10n') class Command constructor: (@group, @name, @func) -> - @prefName = "commands.#{ @name }.keys" - keys = getPref(@prefName) + unless @name.startsWith('mode.') + @name = "mode.normal.#{ @name }" + keyString = getPref(@name).trim() @keyValues = - if typeof keys == 'string' - try JSON.parse(getPref(@prefName)) - catch then [] + if keyString == '' + [] else - keys - for key, index in @keyValues when typeof key == 'string' - @keyValues[index] = legacy.convertKey(key) + keyString.split(/\s+/).map(notation.parseSequence) keys: (value) -> if value == undefined return @keyValues else @keyValues = value - setPref(@prefName, JSON.stringify(value)) + setPref(@name, value.map((key) -> key.join('')).join(' ')) - help: -> _("help_command_#{ @name }") + help: -> _(@name) match: (str, numbers = null) -> for key in @keys() diff --git a/extension/lib/commands.coffee b/extension/lib/commands.coffee index bb0d3db..57fcb22 100644 --- a/extension/lib/commands.coffee +++ b/extension/lib/commands.coffee @@ -34,16 +34,11 @@ help = require('./help') XULDocument = Ci.nsIDOMXULDocument -# “Selecting an element” means “focusing and selecting the text, if any, of an -# element”. - -# Select the Address Bar. -command_focus = (vim) -> +command_focus_location_bar = (vim) -> # This function works even if the Address Bar has been removed. vim.rootWindow.focusAndSelectUrlBar() -# Select the Search Bar. -command_focus_search = (vim) -> +command_focus_search_bar = (vim) -> # The `.webSearch()` method opens a search engine in a tab if the Search Bar # has been removed. Therefore we first check if it exists. if vim.rootWindow.BrowserSearch.searchBar @@ -57,44 +52,35 @@ helper_paste = (vim) -> { postData } = submission return {url, postData} -# Go to or search for the contents of the system clipboard. -command_paste = (vim) -> +command_paste_and_go = (vim) -> { url, postData } = helper_paste(vim) vim.rootWindow.gBrowser.loadURIWithFlags(url, {postData}) -# Go to or search for the contents of the system clipboard in a new tab. -command_paste_tab = (vim) -> +command_paste_and_go_in_tab = (vim) -> { url, postData } = helper_paste(vim) vim.rootWindow.gBrowser.selectedTab = vim.rootWindow.gBrowser.addTab(url, {postData}) -# Copy the current URL to the system clipboard. -command_yank = (vim) -> +command_copy_current_url = (vim) -> utils.writeToClipboard(vim.window.location.href) -# Reload the current tab, possibly from cache. command_reload = (vim) -> vim.rootWindow.BrowserReload() -# Reload the current tab, skipping cache. command_reload_force = (vim) -> vim.rootWindow.BrowserReloadSkipCache() -# Reload all tabs, possibly from cache. command_reload_all = (vim) -> vim.rootWindow.gBrowser.reloadAllTabs() -# Reload all tabs, skipping cache. command_reload_all_force = (vim) -> for tab in vim.rootWindow.gBrowser.visibleTabs window = tab.linkedBrowser.contentWindow window.location.reload(true) -# Stop loading the current tab. command_stop = (vim) -> vim.window.stop() -# Stop loading all tabs. command_stop_all = (vim) -> for tab in vim.rootWindow.gBrowser.visibleTabs window = tab.linkedBrowser.contentWindow @@ -165,8 +151,7 @@ command_scroll_page_down = command_scroll_page_up = helper_scroll.bind(undefined, 'scrollBy', 'pages', 'y', -1) -# Open a new tab and select the Address Bar. -command_open_tab = (vim) -> +command_tab_new = (vim) -> vim.rootWindow.BrowserOpenTab() absoluteTabIndex = (relativeIndex, gBrowser) -> @@ -190,11 +175,9 @@ helper_switch_tab = (direction, vim, event, count = 1) -> { gBrowser } = vim.rootWindow gBrowser.selectTabAtIndex(absoluteTabIndex(direction * count, gBrowser)) -# Switch to the previous tab. -command_tab_prev = helper_switch_tab.bind(undefined, -1) +command_tab_select_previous = helper_switch_tab.bind(undefined, -1) -# Switch to the next tab. -command_tab_next = helper_switch_tab.bind(undefined, +1) +command_tab_select_next = helper_switch_tab.bind(undefined, +1) helper_move_tab = (direction, vim, event, count = 1) -> { gBrowser } = vim.rootWindow @@ -210,31 +193,24 @@ helper_move_tab = (direction, vim, event, count = 1) -> gBrowser.moveTabTo(selectedTab, index) -# Move the current tab backward. -command_tab_move_left = helper_move_tab.bind(undefined, -1) +command_tab_move_backward = helper_move_tab.bind(undefined, -1) -# Move the current tab forward. -command_tab_move_right = helper_move_tab.bind(undefined, +1) +command_tab_move_forward = helper_move_tab.bind(undefined, +1) -# Load the home page. -command_home = (vim) -> +command_go_home = (vim) -> vim.rootWindow.BrowserHome() -# Switch to the first tab. -command_tab_first = (vim) -> +command_tab_select_first = (vim) -> vim.rootWindow.gBrowser.selectTabAtIndex(0) -# Switch to the first non-pinned tab. -command_tab_first_non_pinned = (vim) -> +command_tab_select_first_non_pinned = (vim) -> firstNonPinned = vim.rootWindow.gBrowser._numPinnedTabs vim.rootWindow.gBrowser.selectTabAtIndex(firstNonPinned) -# Switch to the last tab. -command_tab_last = (vim) -> +command_tab_select_last = (vim) -> vim.rootWindow.gBrowser.selectTabAtIndex(-1) -# Toggle Pin Tab. -command_toggle_pin_tab = (vim) -> +command_tab_toggle_pinned = (vim) -> currentTab = vim.rootWindow.gBrowser.selectedTab if currentTab.pinned @@ -242,31 +218,26 @@ command_toggle_pin_tab = (vim) -> else vim.rootWindow.gBrowser.pinTab(currentTab) -# Duplicate current tab. -command_duplicate_tab = (vim) -> +command_tab_duplicate = (vim) -> { gBrowser } = vim.rootWindow gBrowser.duplicateTab(gBrowser.selectedTab) -# Close all tabs from current to the end. -command_close_tabs_to_end = (vim) -> +command_tab_close_to_end = (vim) -> { gBrowser } = vim.rootWindow gBrowser.removeTabsToTheEndFrom(gBrowser.selectedTab) -# Close all tabs except the current. -command_close_other_tabs = (vim) -> +command_tab_close_other = (vim) -> { gBrowser } = vim.rootWindow gBrowser.removeAllTabsBut(gBrowser.selectedTab) -# Close current tab. -command_close_tab = (vim, event, count = 1) -> +command_tab_close = (vim, event, count = 1) -> { gBrowser } = vim.rootWindow return if gBrowser.selectedTab.pinned currentIndex = gBrowser.visibleTabs.indexOf(gBrowser.selectedTab) for tab in gBrowser.visibleTabs[currentIndex...(currentIndex + count)] gBrowser.removeTab(tab) -# Restore last closed tab. -command_restore_tab = (vim, event, count = 1) -> +command_tab_restore = (vim, event, count = 1) -> vim.rootWindow.undoCloseTab() for [1..count] # Combine links with the same href. @@ -392,7 +363,7 @@ command_follow_in_focused_tab = (vim, event, count = 1) -> command_follow_in_tab(vim, event, count, false) # Copy the URL or text of a markable element to the system clipboard. -command_marker_yank = (vim) -> +command_follow_copy = (vim) -> hrefs = {} filter = (element, getElementShape) -> type = switch @@ -414,7 +385,7 @@ command_marker_yank = (vim) -> vim.enterMode('hints', filter, callback) # Focus element with hint markers. -command_marker_focus = (vim) -> +command_follow_focus = (vim) -> filter = (element, getElementShape) -> type = switch when element.tabIndex > -1 @@ -457,10 +428,8 @@ helper_follow_pattern = (type, vim) -> if matchingLink = utils.getBestPatternMatch(patterns, attrs, candidates) utils.simulateClick(matchingLink) -# Follow previous page. -command_follow_prev = helper_follow_pattern.bind(undefined, 'prev') +command_follow_previous = helper_follow_pattern.bind(undefined, 'prev') -# Follow next page. command_follow_next = helper_follow_pattern.bind(undefined, 'next') # Focus last focused or first text input and enter text input mode. @@ -499,11 +468,9 @@ helper_go_history = (num, vim, event, count = 1) -> return if num == 0 history.go(num) -# Go back in history. -command_back = helper_go_history.bind(undefined, -1) +command_history_back = helper_go_history.bind(undefined, -1) -# Go forward in history. -command_forward = helper_go_history.bind(undefined, +1) +command_history_forward = helper_go_history.bind(undefined, +1) findStorage = {lastSearchString: ''} @@ -522,7 +489,7 @@ helper_find = (highlight, vim) -> command_find = helper_find.bind(undefined, false) # Open the find bar, making sure that hightlighting is on. -command_find_hl = helper_find.bind(undefined, true) +command_find_highlight_all = helper_find.bind(undefined, true) helper_find_again = (direction, vim) -> findBar = vim.rootWindow.gBrowser.getFindBar() @@ -530,14 +497,11 @@ helper_find_again = (direction, vim) -> findBar._findField.value = findStorage.lastSearchString findBar.onFindAgainCommand(direction) -# Search for the last pattern. command_find_next = helper_find_again.bind(undefined, false) -# Search for the last pattern backwards. -command_find_prev = helper_find_again.bind(undefined, true) +command_find_previous = helper_find_again.bind(undefined, true) -# Enter insert mode. -command_insert_mode = (vim) -> +command_enter_mode_insert = (vim) -> vim.enterMode('insert') # Quote next keypress (pass it through to the page). @@ -548,11 +512,11 @@ command_quote = (vim, event, count = 1) -> command_help = (vim) -> help.injectHelp(vim.window.document, require('./modes')) -# Open and select the Developer Toolbar. +# Open and focus the Developer Toolbar. command_dev = (vim) -> - vim.rootWindow.DeveloperToolbar.show(true) # focus + vim.rootWindow.DeveloperToolbar.show(true) # `true` to focus. -command_Esc = (vim, event) -> +command_esc = (vim, event) -> utils.blurActiveElement(vim.window) # Blur active XUL control. @@ -575,13 +539,13 @@ command_Esc = (vim, event) -> commands = [ - new Command('urls', 'focus', command_focus) - new Command('urls', 'focus_search', command_focus_search) - new Command('urls', 'paste', command_paste) - new Command('urls', 'paste_tab', command_paste_tab) - new Command('urls', 'marker_yank', command_marker_yank) - new Command('urls', 'marker_focus', command_marker_focus) - new Command('urls', 'yank', command_yank) + 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) @@ -602,45 +566,46 @@ commands = [ new Command('nav', 'scroll_page_down', command_scroll_page_down) new Command('nav', 'scroll_page_up', command_scroll_page_up) - new Command('tabs', 'open_tab', command_open_tab) - new Command('tabs', 'tab_prev', command_tab_prev) - new Command('tabs', 'tab_next', command_tab_next) - new Command('tabs', 'tab_move_left', command_tab_move_left) - new Command('tabs', 'tab_move_right', command_tab_move_right) - new Command('tabs', 'home', command_home) - new Command('tabs', 'tab_first', command_tab_first) - new Command('tabs', 'tab_first_non_pinned', command_tab_first_non_pinned) - new Command('tabs', 'tab_last', command_tab_last) - new Command('tabs', 'toggle_pin_tab', command_toggle_pin_tab) - new Command('tabs', 'duplicate_tab', command_duplicate_tab) - new Command('tabs', 'close_tabs_to_end', command_close_tabs_to_end) - new Command('tabs', 'close_other_tabs', command_close_other_tabs) - new Command('tabs', 'close_tab', command_close_tab) - new Command('tabs', 'restore_tab', command_restore_tab) + 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_prev) + 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', 'back', command_back) - new Command('browse', 'forward', command_forward) + 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_hl', command_find_hl) + new Command('misc', 'find_highlight_all', command_find_highlight_all) new Command('misc', 'find_next', command_find_next) - new Command('misc', 'find_prev', command_find_prev) - new Command('misc', 'insert_mode', command_insert_mode) + 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) escapeCommand = - new Command('misc', 'Esc', command_Esc) + new Command('misc', 'esc', command_esc) ] exports.commands = commands diff --git a/extension/lib/defaults.coffee b/extension/lib/defaults.coffee index 500dc5f..756fe30 100644 --- a/extension/lib/defaults.coffee +++ b/extension/lib/defaults.coffee @@ -23,13 +23,13 @@ notation = require('vim-like-key-notation') shortcuts = 'normal': - 'o': 'focus' - 'O': 'focus_search' - 'p': 'paste' - 'P': 'paste_tab' - 'yf': 'marker_yank' - 'vf': 'marker_focus' - 'yy': 'yank' + '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' @@ -50,21 +50,21 @@ shortcuts = '': 'scroll_page_down' '': 'scroll_page_up' - 't': 'open_tab' - 'J gT': 'tab_prev' - 'K gt': 'tab_next' - 'gJ': 'tab_move_left' - 'gK': 'tab_move_right' - 'gh': 'home' - 'gH g0': 'tab_first' - 'g^': 'tab_first_non_pinned' - 'gL g$': 'tab_last' - 'gp': 'toggle_pin_tab' - 'yt': 'duplicate_tab' - 'gx$': 'close_tabs_to_end' - 'gxa': 'close_other_tabs' - 'x': 'close_tab' - 'X': 'restore_tab' + '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' @@ -75,18 +75,18 @@ shortcuts = 'gi': 'text_input' 'gu': 'go_up_path' 'gU': 'go_to_root' - 'H': 'back' - 'L': 'forward' + 'H': 'history_back' + 'L': 'history_forward' '/': 'find' - 'a/': 'find_hl' + 'a/': 'find_highlight_all' 'n': 'find_next' - 'N': 'find_prev' - 'i': 'insert_mode' + 'N': 'find_previous' + 'i': 'enter_mode_insert' 'I': 'quote' '?': 'help' ':': 'dev' - '': 'Esc' + '': 'esc' 'insert': '': 'exit' @@ -120,9 +120,7 @@ advanced_options = key_options = {} for modeName, modeShortcuts of shortcuts for keys, name of modeShortcuts - name = "mode_#{ modeName }_#{ name }" unless modeName == 'normal' - key_options["commands.#{ name }.keys"] = - keys.split(/\s+/).map(notation.parseSequence) + key_options["mode.#{ modeName }.#{ name }"] = keys all = Object.assign({}, options, advanced_options, key_options) diff --git a/extension/lib/main.coffee b/extension/lib/main.coffee index ba3fad5..ddf9a63 100644 --- a/extension/lib/main.coffee +++ b/extension/lib/main.coffee @@ -21,8 +21,6 @@ { loadCss } = require('./utils') { addEventListeners , vimBucket } = require('./events') -{ getPref -, setDefaultPrefs } = require('./prefs') { setButtonInstallPosition , addToolbarButton } = require('./button') options = require('./options') @@ -32,8 +30,6 @@ test = try require('../test/index') module.exports = (data, reason) -> test?() - setDefaultPrefs() - if reason == ADDON_INSTALL # Position the toolbar button right before the default Bookmarks button. # If Bookmarks button is hidden the VimFx button will be appended to the diff --git a/extension/lib/migrations.coffee b/extension/lib/migrations.coffee new file mode 100644 index 0000000..ee53027 --- /dev/null +++ b/extension/lib/migrations.coffee @@ -0,0 +1,128 @@ +### +# Copyright Simon Lydell 2015. +# +# This file is part of VimFx. +# +# VimFx is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# VimFx is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with VimFx. If not, see . +### + +legacy = require('./legacy') +{ getPref +, setPref +, isPrefSet} = require('./prefs') + +applyMigrations = (migrations) -> + for migration, index in migrations + pref = "migration.#{ index }.applied" + # This allows to manually choose migrations to apply. Be careful, though, + # since some migrations might have to run in order! + unless isPrefSet(pref) and getPref(pref) + migration() + setPref(pref, true) + return + +migrations = [] + +migrations[0] = -> + conversions = + 'focus': 'normal.focus_location_bar' + 'focus_search': 'normal.focus_search_bar' + 'paste': 'normal.paste_and_go' + 'paste_tab': 'normal.paste_and_go_in_tab' + 'marker_yank': 'normal.follow_copy' + 'marker_focus': 'normal.follow_focus' + 'yank': 'normal.copy_current_url' + 'reload': 'normal.reload' + 'reload_force': 'normal.reload_force' + 'reload_all': 'normal.reload_all' + 'reload_all_force': 'normal.reload_all_force' + 'stop': 'normal.stop' + 'stop_all': 'normal.stop_all' + + 'scroll_to_top': 'normal.scroll_to_top' + 'scroll_to_bottom': 'normal.scroll_to_bottom' + 'scroll_to_left': 'normal.scroll_to_left' + 'scroll_to_right': 'normal.scroll_to_right' + 'scroll_down': 'normal.scroll_down' + 'scroll_up': 'normal.scroll_up' + 'scroll_left': 'normal.scroll_left' + 'scroll_right': 'normal.scroll_right' + 'scroll_half_page_down': 'normal.scroll_half_page_down' + 'scroll_half_page_up': 'normal.scroll_half_page_up' + 'scroll_page_down': 'normal.scroll_page_down' + 'scroll_page_up': 'normal.scroll_page_up' + + 'open_tab': 'normal.tab_new' + 'tab_prev': 'normal.tab_select_previous' + 'tab_next': 'normal.tab_select_next' + 'tab_move_left': 'normal.tab_move_backward' + 'tab_move_right': 'normal.tab_move_forward' + 'home': 'normal.go_home' + 'tab_first': 'normal.tab_select_first' + 'tab_first_non_pinned': 'normal.tab_select_first_non_pinned' + 'tab_last': 'normal.tab_select_last' + 'toggle_pin_tab': 'normal.tab_toggle_pinned' + 'duplicate_tab': 'normal.tab_duplicate' + 'close_tabs_to_end': 'normal.tab_close_to_end' + 'close_other_tabs': 'normal.tab_close_other' + 'close_tab': 'normal.tab_close' + 'restore_tab': 'normal.tab_restore' + + 'follow': 'normal.follow' + 'follow_in_tab': 'normal.follow_in_tab' + 'follow_in_focused_tab': 'normal.follow_in_focused_tab' + 'follow_multiple': 'normal.follow_multiple' + 'follow_previous': 'normal.follow_previous' + 'follow_next': 'normal.follow_next' + 'text_input': 'normal.text_input' + 'go_up_path': 'normal.go_up_path' + 'go_to_root': 'normal.go_to_root' + 'back': 'normal.history_back' + 'forward': 'normal.history_forward' + + 'find': 'normal.find' + 'find_hl': 'normal.find_highlight_all' + 'find_next': 'normal.find_next' + 'find_prev': 'normal.find_previous' + 'insert_mode': 'normal.enter_mode_insert' + 'quote': 'normal.quote' + 'help': 'normal.help' + 'dev': 'normal.dev' + 'Esc': 'normal.esc' + + 'mode_insert_exit': 'insert.exit' + + 'mode_hints_exit': 'hints.exit' + 'mode_hints_rotate_markers_forward': 'hints.rotate_markers_forward' + 'mode_hints_rotate_markers_backward': 'hints.rotate_markers_backward' + 'mode_hints_delete_hint_char': 'hints.delete_hint_char' + + 'mode_find_exit': 'find.exit' + + + convert = (value) -> + keys = + try JSON.parse(value) + catch then [] + for key, index in keys when typeof key == 'string' + keys[index] = legacy.convertKey(key) + return keys.map((key) -> key.join('')).join(' ') + + for name, newName of conversions + pref = "commands.#{ name }.keys" + setPref("mode.#{ newName }", convert(getPref(pref))) if isPrefSet(pref) + return + +exports.applyMigrations = applyMigrations +exports.migrations = migrations diff --git a/extension/lib/modes.coffee b/extension/lib/modes.coffee index 5657760..f5dcab5 100644 --- a/extension/lib/modes.coffee +++ b/extension/lib/modes.coffee @@ -249,5 +249,5 @@ for modeName, mode of exports continue if not commandNames or commandNames == commands mode.commands = {} for commandName in commandNames - name = "mode_#{ modeName }_#{ commandName }" + name = "mode.#{ modeName }.#{ commandName }" mode.commands[commandName] = new Command(null, name, null) diff --git a/extension/lib/prefs.coffee b/extension/lib/prefs.coffee index 24a4291..2609abc 100644 --- a/extension/lib/prefs.coffee +++ b/extension/lib/prefs.coffee @@ -37,12 +37,7 @@ getBranchPref = (branch, key) -> when branch.PREF_STRING branch.getComplexValue(key, Ci.nsISupportsString).data -getPref = (key) -> - if isPrefSet(key) - return getBranchPref(vimfxBranch, key) - else - return defaults.all[key] - +getPref = getBranchPref.bind(undefined, vimfxBranch) getFirefoxPref = getBranchPref.bind(undefined, prefs) setBranchPref = (branch, key, value) -> @@ -70,7 +65,7 @@ withFirefoxPrefAs = (pref, temporaryValue, fn) -> setFirefoxPref(pref, previousValue) setDefaultPrefs = -> - setDefaultPref(key, value) for key, value of defaults.options + setDefaultPref(key, value) for key, value of defaults.all return exports.isPrefSet = isPrefSet diff --git a/extension/lib/utils.coffee b/extension/lib/utils.coffee index dc340e0..7c4aee8 100644 --- a/extension/lib/utils.coffee +++ b/extension/lib/utils.coffee @@ -19,10 +19,9 @@ # along with VimFx. If not, see . ### -notation = require('vim-like-key-notation') +notation = require('vim-like-key-notation') { getPref -, setPref -} = require('./prefs') +, setPref } = require('./prefs') ADDON_ID = 'VimFx@akhodakivskiy.github.com' diff --git a/extension/locale/de/vimfx.properties b/extension/locale/de/vimfx.properties index 23ee7fc..239b78c 100644 --- a/extension/locale/de/vimfx.properties +++ b/extension/locale/de/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Schwarze Liste item_blacklist_button_inverse_tooltip=Diese Regel entfernen help_section_urls=Umgang mit URLs -help_command_focus=Adressleiste fokussieren -help_command_focus_search=Suchleiste fokussieren -help_command_paste=Adresse aus Zwischenablage öffnen -help_command_paste_tab=Adresse aus Zwischenablage in neuem Tab öffnen -help_command_marker_yank=Links oder Text-Eingabewerte in Zwischenablage kopieren -help_command_marker_focus=Focus/select element -help_command_yank=URL der aktuellen Seite in Zwischenablage kopieren -help_command_reload=Seite aktualisieren -help_command_reload_force=Seite inklusive aller Zusatzelemente aktualisieren (js, css, img) -help_command_reload_all=Alle Tabs aktualisieren -help_command_reload_all_force=Alle Tabs inklusive aller Zusatzelemente aktualisieren (js, css, img) -help_command_stop=Laden der aktuellen Seite abbrechen -help_command_stop_all=Laden der Seiten aller Tabs abbrechen +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.reload=Seite aktualisieren +mode.normal.reload_force=Seite inklusive aller Zusatzelemente aktualisieren (js, css, img) +mode.normal.reload_all=Alle Tabs aktualisieren +mode.normal.reload_all_force=Alle Tabs inklusive aller Zusatzelemente aktualisieren (js, css, img) +mode.normal.stop=Laden der aktuellen Seite abbrechen +mode.normal.stop_all=Laden der Seiten aller Tabs abbrechen help_section_nav=Seitennavigation -help_command_scroll_to_top=Zum Anfang der Seite scrollen -help_command_scroll_to_bottom=Zum Ende der Seite scrollen -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Abwärts scrollen -help_command_scroll_up=Aufwärts scrollen -help_command_scroll_left=Nach links scrollen -help_command_scroll_right=Nach rechts scrollen -help_command_scroll_half_page_down=Eine halbe Seite nach unten scrollen -help_command_scroll_half_page_up=Eine halbe Seite nach oben scrollen -help_command_scroll_page_down=Eine ganze Seite nach unten scrollen -help_command_scroll_page_up=Eine ganze 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 +mode.normal.scroll_down=Abwärts scrollen +mode.normal.scroll_up=Aufwärts scrollen +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_page_down=Eine ganze Seite nach unten scrollen +mode.normal.scroll_page_up=Eine ganze Seite nach oben scrollen help_section_tabs=Arbeiten mit Tabs -help_command_open_tab=Öffnen eines neuen leeren Tabs -help_command_tab_prev=Zum vorherigen Tab springen -help_command_tab_next=Zum nächsten Tab springen -help_command_tab_move_left=Aktuellen Tab nach links verschieben -help_command_tab_move_right=Aktuellen Tab nach rechts verschieben -help_command_home=Startseite öffnen -help_command_tab_first=Zum ersten Tab springen -help_command_tab_first_non_pinned=Zum ersten nicht angepinnten Tab springen -help_command_tab_last=Zum letzten Tab springen -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Aktuellen Tab schließen -help_command_restore_tab=Zuletzt geschlossenen Tab wieder öffnen +mode.normal.tab_new=Öffnen eines neuen leeren Tabs +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 help_section_browse=Links und Chronik -help_command_follow=Einem Link auf der aktuellen Seite folgen -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Zur vorherigen Seite springen -help_command_follow_next=Zur nächsten Seite springen -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Einen Level nach oben in der URL-Hierarchie springen -help_command_go_to_root=Zum Stammverzeichnis der URL-Hierarchie springen -help_command_back=Eine Seite zurück in der Chronik -help_command_forward=Eine Seite vorwärts in der 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_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 -help_command_find=Suchmodus aktivieren -help_command_find_hl=Suchmodus aktivieren und alle Übereinstimmungen markieren -help_command_find_next=Zur nächsten Übereinstimmung springen -help_command_find_prev=Zur vorherigen Übereinstimmung springen -help_command_insert_mode=Zum Eingabemodus wechseln: Alle Befehle ignorieren -help_command_quote=Pass next keypress through to the page -help_command_help=Hilfedialog anzeigen -help_command_dev=Entwickler-Werkzeuge öffnen -help_command_Esc=Aktives Element schließen/verlassen +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Tastenbefehle help_version=Version diff --git a/extension/locale/el-GR/vimfx.properties b/extension/locale/el-GR/vimfx.properties index 60c63c4..5831245 100644 --- a/extension/locale/el-GR/vimfx.properties +++ b/extension/locale/el-GR/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Μαύρη Λίστα item_blacklist_button_inverse_tooltip=Κατάργηση αυτού του κανόνα help_section_urls=Όσον αφορά τις διευθύνσεις -help_command_focus=Εστιάζοντας την Γραμμή Διευθύνσεων -help_command_focus_search=Εστίασε την Γραμμή Αναζήτησης -help_command_paste=Πήγαινε στην διεύθυνση που έχω κάνει αντιγραφή -help_command_paste_tab=Άνοιξε νέα καρτέλα και πήγαινε στην διεύθυνση που έχω κάνει αντιγραφή -help_command_marker_yank=Κάνε αντιγραφή την διεύθυνση του συνδέσμου ή την τιμή της περιοχής κειμένου -help_command_marker_focus=Focus/select element -help_command_yank=Κάνε αντιγραφή τη διεύθυνση της σελίδας στην οποία βρίσκομαι -help_command_reload=Ανανέωσε την σελίδα στην οποία βρίσκομαι -help_command_reload_force=Ανανέωσε την σελίδα στην οποία βρίσκομαι και όλα τα στοιχεία της (js, css, img) -help_command_reload_all=Ανανέωσες τις σελίδες σε όλες τις καρτέλες -help_command_reload_all_force=Ανανέωσες τις σελίδες σε όλες τις καρτέλες συμπεριλαμβανομένων και των στοιχείων της (js, css, img) -help_command_stop=Σταμάτα να φορτώνεις την τρέχουσα σελίδα -help_command_stop_all=Σταμάτα να φορτώνεις τις σελίδες σε όλες τις καρτέλες +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.reload=Ανανέωσε την σελίδα στην οποία βρίσκομαι +mode.normal.reload_force=Ανανέωσε την σελίδα στην οποία βρίσκομαι και όλα τα στοιχεία της (js, css, img) +mode.normal.reload_all=Ανανέωσες τις σελίδες σε όλες τις καρτέλες +mode.normal.reload_all_force=Ανανέωσες τις σελίδες σε όλες τις καρτέλες συμπεριλαμβανομένων και των στοιχείων της (js, css, img) +mode.normal.stop=Σταμάτα να φορτώνεις την τρέχουσα σελίδα +mode.normal.stop_all=Σταμάτα να φορτώνεις τις σελίδες σε όλες τις καρτέλες help_section_nav=Πλοηγώντας στην σελίδα -help_command_scroll_to_top=Μετακινηθείτε στην κορυφή της σελίδας -help_command_scroll_to_bottom=Μετακινηθείτε στο τέλος της σελίδας -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Κύλιση προς τα κάτω -help_command_scroll_up=Κύλιση προς τα πάνω -help_command_scroll_left=Κύλιση προς τα αριστερά -help_command_scroll_right=Κύλιση προς τα δεξιά -help_command_scroll_half_page_down=Κύλιση μισό Page Down -help_command_scroll_half_page_up=Κύλιση μισό Page Up -help_command_scroll_page_down=Κύλιση Page Down -help_command_scroll_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 +mode.normal.scroll_down=Κύλιση προς τα κάτω +mode.normal.scroll_up=Κύλιση προς τα πάνω +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_page_down=Κύλιση Page Down +mode.normal.scroll_page_up=Κύλιση Page Up help_section_tabs=Δουλεύοντας με τις καρτέλες -help_command_open_tab=Άνοιγμα νέας κενής καρτέλας -help_command_tab_prev=Μετακίνηση στην προηγούμενη καρτέλα -help_command_tab_next=Μετακίνηση στην επόμενη καρτέλα -help_command_tab_move_left=Μετακίνηση της καρτέλας που βρίσκομαι αριστερά -help_command_tab_move_right=Μετακίνηση της καρτέλας που βρίσκομαι δεξιά -help_command_home=Πλοήγηση στην Αρχική Σελίδα -help_command_tab_first=Πήγαινε στην πρώτη καρτέλα -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Πήγαινε στην τελευταία καρτέλα -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Κλείσιμο της καρτέλας που βρίσκομαι -help_command_restore_tab=Επαναφορά τελευταίας καρτέλας που έκλεισα +mode.normal.tab_new=Άνοιγμα νέας κενής καρτέλας +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=Επαναφορά τελευταίας καρτέλας που έκλεισα help_section_browse=Περιήγηση -help_command_follow=Πήγαινε σε σύνδεσμο που υπάρχει στην καρτέλα που βρίσκομαι -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Πήγαινε στην προηγούμενη σελίδα -help_command_follow_next=Πήγαινε στην επόμενη σελίδα -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Πήγαινε ένα επίπεδο πάνω στην ιεραρχία του URL -help_command_go_to_root=Πήγαινε στο πιο πάνω επίπεδο της ιεραρχίας του URL -help_command_back=Πήγαινε πίσω στο ιστορικό -help_command_forward=Πήγαινε μπροστά στο ιστορικό +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_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=Διάφορα -help_command_find=Είσοδος σε λειτουργία Εύρεσης (Find mode) -help_command_find_hl=Είσοδος σε λειτουργία Εύρεσης (Find mode) επισημαίνοντας όλες τις αντιστοιχίες -help_command_find_next=Πήγαινε στην επόμενη ατιστοιχία -help_command_find_prev=Πήγαινε στην προηγούμενη αντιστοιχία -help_command_insert_mode=Είσοδος σε λειτουργία εισαγωγής (insert mode): Αγνόησε όλες τις εντολές -help_command_quote=Pass next keypress through to the page -help_command_help=Προβολή αυτού του παραθύρου -help_command_dev=Άνοιγμα Developer Toolbar -help_command_Esc=Blur/close active element +mode.normal.find=Είσοδος σε λειτουργία Εύρεσης (Find mode) +mode.normal.find_highlight_all=Είσοδος σε λειτουργία Εύρεσης (Find mode) επισημαίνοντας όλες τις αντιστοιχίες +mode.normal.find_next=Πήγαινε στην επόμενη ατιστοιχία +mode.normal.find_previous=Πήγαινε στην προηγούμενη αντιστοιχία +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Συντομεύσεις Πληκτρολογίου help_version=Έκδοση diff --git a/extension/locale/en-US/vimfx.properties b/extension/locale/en-US/vimfx.properties index aa128e6..abfd944 100644 --- a/extension/locale/en-US/vimfx.properties +++ b/extension/locale/en-US/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Blacklist item_blacklist_button_inverse_tooltip=Remove this rule help_section_urls=Dealing with URLs -help_command_focus=Focus the Address Bar -help_command_focus_search=Focus the Search Bar -help_command_paste=Paste and go -help_command_paste_tab=Paste and go in a new tab -help_command_marker_yank=Copy link or text input value -help_command_marker_focus=Focus/select element -help_command_yank=Copy current URL -help_command_reload=Reload -help_command_reload_force=Reload (override cache) -help_command_reload_all=Reload all tabs -help_command_reload_all_force=Reload all tabs (override cache) -help_command_stop=Stop loading the page -help_command_stop_all=Stop loading all tabs +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.reload=Reload +mode.normal.reload_force=Reload (override cache) +mode.normal.reload_all=Reload all tabs +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 -help_command_scroll_to_top=Scroll to top -help_command_scroll_to_bottom=Scroll to bottom -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Scroll down -help_command_scroll_up=Scroll up -help_command_scroll_left=Scroll left -help_command_scroll_right=Scroll right -help_command_scroll_half_page_down=Scroll half a page down -help_command_scroll_half_page_up=Scroll half a page up -help_command_scroll_page_down=Scroll full page down -help_command_scroll_page_up=Scroll full 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 +mode.normal.scroll_down=Scroll down +mode.normal.scroll_up=Scroll up +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_page_down=Scroll full page down +mode.normal.scroll_page_up=Scroll full page up help_section_tabs=Working with Tabs -help_command_open_tab=New tab -help_command_tab_prev=Previous tab -help_command_tab_next=Next tab -help_command_tab_move_left=Move tab left -help_command_tab_move_right=Move tab right -help_command_home=Go to the Home Page -help_command_tab_first=Go to the first tab -help_command_tab_first_non_pinned=Go to the first non-pinned tab -help_command_tab_last=Go to the last tab -help_command_toggle_pin_tab=Pin/Unpin tab -help_command_duplicate_tab=Duplicate tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs -help_command_close_tab=Close tab -help_command_restore_tab=Restore closed tab +mode.normal.tab_new=New 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 help_section_browse=Browsing -help_command_follow=Follow link, focus text input or click button -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Go to the previous page -help_command_follow_next=Go to the next page -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Go up one level in the URL -help_command_go_to_root=Go to the root in the URL -help_command_back=Go back in history -help_command_forward=Go forward in history +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_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 -help_command_find=Enter Find mode -help_command_find_hl=Enter Find mode highlighting all matches -help_command_find_next=Find next -help_command_find_prev=Find previous -help_command_insert_mode=Enter Insert mode: Ignore all commands -help_command_quote=Pass next keypress through to the page -help_command_help=Show this dialog -help_command_dev=Open the Developer Toolbar -help_command_Esc=Blur/close active element +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 +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 -help_command_mode_hints_exit=Return to Normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to Normal mode +mode.insert.exit=Return to Normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Keyboard Shortcuts help_version=Version diff --git a/extension/locale/fr/vimfx.properties b/extension/locale/fr/vimfx.properties index 105cbbc..ad8290a 100644 --- a/extension/locale/fr/vimfx.properties +++ b/extension/locale/fr/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Liste noire item_blacklist_button_inverse_tooltip=Supprimer cette règle help_section_urls=Gestion des liens -help_command_focus=Donner le focus à la barre d'adresse -help_command_focus_search=Donner le focus à la barre de recherche -help_command_paste=Aller à l'adresse dans le presse-papier -help_command_paste_tab=Ouvrir un nouvel onglet et aller à l'adresse dans le presse-papier -help_command_marker_yank=Copier l'adresse du lien ou le texte dans le presse-papier -help_command_marker_focus=Donner le focus à l'élément -help_command_yank=Copier l'adresse de la page dans le presse-papier -help_command_reload=Recharger la page -help_command_reload_force=Recharger la page (en invalidant le cache) -help_command_reload_all=Recharger tous les onglets -help_command_reload_all_force=Recharger tous les onglets (en invalidant le cache) -help_command_stop=Arrêter le chargement de la page -help_command_stop_all=Arrêter le chargement de toutes les pages +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.reload=Recharger la page +mode.normal.reload_force=Recharger la page (en invalidant le cache) +mode.normal.reload_all=Recharger tous les onglets +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 -help_command_scroll_to_top=Aller en haut de la page -help_command_scroll_to_bottom=Aller en bas de la page -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Faire défiler vers le bas -help_command_scroll_up=Faire défiler vers le haut -help_command_scroll_left=Faire défiler vers la gauche -help_command_scroll_right=Faire défiler vers la droite -help_command_scroll_half_page_down=Faire défiler d'une moitié de page vers le bas -help_command_scroll_half_page_up=Faire défiler d'une moitié de page vers le haut -help_command_scroll_page_down=Faire défiler d'une page vers le bas -help_command_scroll_page_up=Faire défiler d'une 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 +mode.normal.scroll_down=Faire défiler vers le bas +mode.normal.scroll_up=Faire défiler vers le haut +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_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 help_section_tabs=Gestion des onglets -help_command_open_tab=Ouvrir un nouvel onglet -help_command_tab_prev=Aller à l'onglet précédent -help_command_tab_next=Aller à l'onglet suivant -help_command_tab_move_left=Déplacer l'onglet vers la gauche -help_command_tab_move_right=Déplacer l'onglet vers la droite -help_command_home=Aller à la page d'accueil -help_command_tab_first=Aller au premier onglet -help_command_tab_first_non_pinned=Aller au premier onglet non épinglé. -help_command_tab_last=Aller au dernier onglet -help_command_toggle_pin_tab=Épingler/relâcher l'onglet -help_command_duplicate_tab=Dupliquer l'onglet -help_command_close_tabs_to_end=Fermer les onglets sur la droite -help_command_close_other_tabs=Fermer les autres onglets -help_command_close_tab=Fermer l'onglet -help_command_restore_tab=Restaurer le dernier onglet fermé +mode.normal.tab_new=Ouvrir un nouvel 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é help_section_browse=Navigation -help_command_follow=Ouvrir un lien dans l'onglet courant -help_command_follow_in_tab=Ouvrir un lien dans un nouvel onglet -help_command_follow_in_focused_tab=Ouvrir le lien dans un nouvel onglet en arrière plan -help_command_follow_multiple=Ouvrir plusieurs liens dans des onglets en arrière plan -help_command_follow_previous=Aller à la page précédente -help_command_follow_next=Aller à la page suivante -help_command_text_input=Donner le focus à la dernière entrée de formulaire ou à la première -help_command_go_up_path=Monter d'un niveau dans l'arborescence du site -help_command_go_to_root=Aller au niveau racine du site -help_command_back=Revenir en arrière dans l'historique -help_command_forward=Avancer dans l'historique +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_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 -help_command_find=Rechercher dans la page -help_command_find_hl=Rechercher dans la page en mettant les occurrences en surbrillance -help_command_find_next=Aller au résultat suivant -help_command_find_prev=Aller au résultat précédent -help_command_insert_mode=Enter en mode insertion: Ignorer toutes les commandes -help_command_quote=Transmettre la prochaine pression de touche à la page -help_command_help=Afficher cette boîte de dialogue -help_command_dev=Ouvrir la barre d'outils de développement -help_command_Esc=Revenir en mode normal (supprimer le marqueurs, sortir du mode insertion) ou quitter l'élément actif +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 +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 -help_command_mode_hints_exit=Retourner au mode initial -help_command_mode_hints_rotate_markers_forward=Faire tourner vers l'avant les marqueurs superposés -help_command_mode_hints_rotate_markers_backward=Faire tourner en arrière -help_command_mode_hints_delete_hint_char=Supprimer le dernier caractère frappé lors de la sélection d'un marqueur +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 -help_command_mode_insert_exit=Retourner au mode par défaut +mode.insert.exit=Retourner au mode par défaut help_section_mode_find=Mode recherche -help_command_mode_find_exit=Fermer la barre de recherche +mode.find.exit=Fermer la barre de recherche help_title=Raccourcis claviers help_version=Version diff --git a/extension/locale/hu/vimfx.properties b/extension/locale/hu/vimfx.properties index b9c200d..6b98d55 100644 --- a/extension/locale/hu/vimfx.properties +++ b/extension/locale/hu/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Feketelista item_blacklist_button_inverse_tooltip=Remove this rule help_section_urls=URL műveletek -help_command_focus=Fókusz a címsorra -help_command_focus_search=Focus the Search Bar -help_command_paste=A vágólapon található link megnyitása -help_command_paste_tab=A vágólapon található link megnyitása új tabban -help_command_marker_yank=Copy link url or text input value to the clipboard -help_command_marker_focus=Focus/select element -help_command_yank=Aktuális oldal címének másolása vágólapra -help_command_reload=Oldal újratöltése -help_command_reload_force=Oldal újratöltése minden elemmel együtt (js, css, img) -help_command_reload_all=Összes oldal újratöltése -help_command_reload_all_force=Összes oldal újratöltése minden elemmel együtt (js, css, img) -help_command_stop=Stop loading current page -help_command_stop_all=Stop loading pages in all tabs +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.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 +mode.normal.reload_all_force=Összes oldal újratöltése minden elemmel együtt (js, css, img) +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 -help_command_scroll_to_top=Ugrás az oldal tetejére -help_command_scroll_to_bottom=Ugrás az oldal aljára -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Görgetés le -help_command_scroll_up=Görgetés fel -help_command_scroll_left=Görgetés balra -help_command_scroll_right=Görgetés jobbra -help_command_scroll_half_page_down=Fél oldalnyi görgetés lefelé -help_command_scroll_half_page_up=Fél oldalnyi görgetés felfelé -help_command_scroll_page_down=Oldalnyi görgetés lefelé -help_command_scroll_page_up=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 +mode.normal.scroll_down=Görgetés le +mode.normal.scroll_up=Görgetés fel +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_page_down=Oldalnyi görgetés lefelé +mode.normal.scroll_page_up=Oldalnyi görgetés felfelé help_section_tabs=Tab műveletek -help_command_open_tab=Új tab nyitása -help_command_tab_prev=Ugrás az előző tabra -help_command_tab_next=Ugrás a következő tabra -help_command_tab_move_left=Aktuális tab mozgatása balra -help_command_tab_move_right=Aktuális tab mozgatása jobbra -help_command_home=Kezdőlap megnyitása -help_command_tab_first=Ugrás az első tabra -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Ugrás az utolsó tabra -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Aktuális tab bezárása -help_command_restore_tab=Utoljára bezárt tab visszatöltése +mode.normal.tab_new=Új tab nyitása +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 help_section_browse=Böngészés -help_command_follow=Link követése -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Go to previous page -help_command_follow_next=Go to next page -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Go up one level in the URL hierarchy -help_command_go_to_root=Go up to root of the URL hierarchy -help_command_back=Vissza az előzményekben -help_command_forward=Előre az előzményekben +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_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 -help_command_find=Keresési módba lépés -help_command_find_hl=Enter Find mode highlighting all matches -help_command_find_next=Következő találatra ugrás -help_command_find_prev=Előző találatra ugrás -help_command_insert_mode=Enter insert mode: Ignore all commands -help_command_quote=Pass next keypress through to the page -help_command_help=Show this dialog -help_command_dev=Open Developer Toolbar -help_command_Esc=Blur/close active element +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Keyboard Shortcuts help_version=Verzió diff --git a/extension/locale/id/vimfx.properties b/extension/locale/id/vimfx.properties index 30b9781..2637591 100644 --- a/extension/locale/id/vimfx.properties +++ b/extension/locale/id/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Larangan item_blacklist_button_inverse_tooltip=Remove this rule help_section_urls=Penanganan URL -help_command_focus=Fokus pada Address Bar -help_command_focus_search=Focus the Search Bar -help_command_paste=Navigasi ke alamat dalam clipboard -help_command_paste_tab=Buka tab baru dan navigasi ke alamat dalam clipboard -help_command_marker_yank=Salin pranala atau teks ke dalam clipboard -help_command_marker_focus=Focus/select element -help_command_yank=Salin pranala halaman sekarang ke clipboard -help_command_reload=Muat ulang halaman sekarang -help_command_reload_force=Muat ulang halaman sekarang dan seluruh aset (js, css, gambar) -help_command_reload_all=Muat ulang semua tab -help_command_reload_all_force=Muat ulang semua tab beserta aset (js, css, gambar) -help_command_stop=Hentikan memuata halaman sekarang -help_command_stop_all=Hentikan memuat halaman pada semua tab +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.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 +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 -help_command_scroll_to_top=Gulung ke Atas halaman -help_command_scroll_to_bottom=Gulung ke Bawah halaman -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Gulung ke Bawah -help_command_scroll_up=Gulung ke Atas -help_command_scroll_left=Gulung ke Kiri -help_command_scroll_right=Gulung ke Kanan -help_command_scroll_half_page_down=Gulung setengah halaman ke Bawah -help_command_scroll_half_page_up=Gulung setengah halaman ke Atas -help_command_scroll_page_down=Gulung satu halaman ke Bawah -help_command_scroll_page_up=Gulung satu 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 +mode.normal.scroll_down=Gulung ke Bawah +mode.normal.scroll_up=Gulung ke Atas +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_page_down=Gulung satu halaman ke Bawah +mode.normal.scroll_page_up=Gulung satu halaman ke Atas help_section_tabs=Bekerja dengan tab -help_command_open_tab=Buka tab kosong baru -help_command_tab_prev=Buka tab sebelum -help_command_tab_next=Buka tab sesudah -help_command_tab_move_left=Pindah tab sekarang ke kiri -help_command_tab_move_right=Pindah tab sekarang ke kanan -help_command_home=Navigasi ke Halaman Beranda -help_command_tab_first=Buka tab Pertama -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Buka tab Terakhir -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Tutup tab sekarang -help_command_restore_tab=Buka tab terakhir ditutup +mode.normal.tab_new=Buka tab kosong baru +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 help_section_browse=Berselancar -help_command_follow=Ikuti pranala pada halaman sekarang -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Go to previous page -help_command_follow_next=Go to next page -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Go up one level in the URL hierarchy -help_command_go_to_root=Go up to root of the URL hierarchy -help_command_back=Mundur dalam history -help_command_forward=Maju dalam history +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_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 -help_command_find=Masuk mode pencarian -help_command_find_hl=Masuk mode pencarian menandai semua cocok -help_command_find_next=Menuju temuan cocok setelah -help_command_find_prev=Menuju temuan cocok sebelum -help_command_insert_mode=Enter insert mode: Ignore all commands -help_command_quote=Pass next keypress through to the page -help_command_help=Show this dialog -help_command_dev=Buka Toolbar Pengembang -help_command_Esc=Blur/close active element +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Keyboard Shortcuts help_version=Versi diff --git a/extension/locale/it/vimfx.properties b/extension/locale/it/vimfx.properties index 8d75a84..c7a50c1 100644 --- a/extension/locale/it/vimfx.properties +++ b/extension/locale/it/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Lista nera item_blacklist_button_inverse_tooltip=Rimuovi questa regola help_section_urls=Gestire gli URL -help_command_focus=Sposta il focus sulla barra degli indirizzi -help_command_focus_search=Sposta il focus sulla barra di ricerca. -help_command_paste=Vai all'indirizzo presente negli appunti -help_command_paste_tab=Apri un nuovo tab e vai all'indirizzo presente negli appunti -help_command_marker_yank=Copia il link o il testo nella casella negli appunti -help_command_marker_focus=Focus/select element -help_command_yank=Copia la pagina corrente negli appunti -help_command_reload=Ricarica la pagina corrente -help_command_reload_force=Ricarica la pagina corrente e tutte le risorse relative (js, css, img) -help_command_reload_all=Ricarica tutti i tab -help_command_reload_all_force=Ricarica tutti i tab incluse le risorse (js, css, img) -help_command_stop=Ferma il caricamento della pagina corrente -help_command_stop_all=Ferma il caricamento di tutti i tab +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.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 +mode.normal.reload_all_force=Ricarica tutti i tab incluse le risorse (js, css, img) +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 -help_command_scroll_to_top=Scorri all'inizio della pagina -help_command_scroll_to_bottom=Scorri alla fine della pagina -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Scorri in basso -help_command_scroll_up=Scorri in alto -help_command_scroll_left=Scorri a sinistra -help_command_scroll_right=Scorri a destra -help_command_scroll_half_page_down=Scorri di metà pagina in basso -help_command_scroll_half_page_up=Scorri di metà pagina in alto -help_command_scroll_page_down=Scorri di una pagina in basso -help_command_scroll_page_up=Scorri di una 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 +mode.normal.scroll_down=Scorri in basso +mode.normal.scroll_up=Scorri in alto +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_page_down=Scorri di una pagina in basso +mode.normal.scroll_page_up=Scorri di una pagina in alto help_section_tabs=Lavorare con i tab -help_command_open_tab=Apri un nuovo tab vuoto -help_command_tab_prev=Vai al tab precedente -help_command_tab_next=Vai al prossimo tab -help_command_tab_move_left=Sposta il tab corrente a sinistra -help_command_tab_move_right=Sposta il tab corrente a destra -help_command_home=Vai alla pagina home -help_command_tab_first=Vai al primo tab -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Vai all'ultimo tab -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Chiudi il tab corrente -help_command_restore_tab=Riapri l'ulitmo tab chiuso +mode.normal.tab_new=Apri un nuovo tab vuoto +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 help_section_browse=Navigazione -help_command_follow=Apri un link nella pagina corrente -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Vai alla pagina precedente -help_command_follow_next=Vai alla prossima pagina -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Sali di un livello nella gerarchia dell'URL -help_command_go_to_root=Vai alla radice della gerarchia dell'URL -help_command_back=Torna indietro nella cronologia -help_command_forward=Vai avanti nella cronologia +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_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 -help_command_find=Entra nella modalità ricerca -help_command_find_hl=Entra nella modalità ricerca evidenziando tutte le occorrenze -help_command_find_next=Vai al prossimo risultato della ricerca -help_command_find_prev=Vai al precedente risultato della ricerca -help_command_insert_mode=Entra in modalità inserimento: ignora tutti i comandi -help_command_quote=Pass next keypress through to the page -help_command_help=Mostra questa schermata -help_command_dev=Apri la barra degli strumenti Sviluppatore -help_command_Esc=Chiude l'elemento attivo +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Scorciatoie da tastiera help_version=Versione diff --git a/extension/locale/ja/vimfx.properties b/extension/locale/ja/vimfx.properties index 12448b4..fe69d1e 100644 --- a/extension/locale/ja/vimfx.properties +++ b/extension/locale/ja/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=ブラックリスト item_blacklist_button_inverse_tooltip=このルールを削除 help_section_urls=URLの取り扱い -help_command_focus=アドレスバーにフォーカス -help_command_focus_search=検索バーにフォーカス -help_command_paste=クリップボードのアドレスに移動 -help_command_paste_tab=新しいタブを開いてクリップボードのアドレスに移動 -help_command_marker_yank=URLまたは入力値をクリップボードにコピー -help_command_marker_focus=Focus/select element -help_command_yank=現在のページへのリンクをクリップボードにコピー -help_command_reload=現在のページを再読み込み -help_command_reload_force=現在のページとその全てのファイル(js, css, img)を再読み込み -help_command_reload_all=全てのタブを再読み込み -help_command_reload_all_force=全てのタブのページとその全てのファイル(js, css, img)を再読み込み -help_command_stop=現在のページの読み込みを中止 -help_command_stop_all=全てのタブのページの読み込みを中止 +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.reload=現在のページを再読み込み +mode.normal.reload_force=現在のページとその全てのファイル(js, css, img)を再読み込み +mode.normal.reload_all=全てのタブを再読み込み +mode.normal.reload_all_force=全てのタブのページとその全てのファイル(js, css, img)を再読み込み +mode.normal.stop=現在のページの読み込みを中止 +mode.normal.stop_all=全てのタブのページの読み込みを中止 help_section_nav=ページ移動 -help_command_scroll_to_top=ページの最上部へスクロール -help_command_scroll_to_bottom=ページの最下部へスクロール -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=下へスクロール -help_command_scroll_up=上へスクロール -help_command_scroll_left=左へスクロール -help_command_scroll_right=右へスクロール -help_command_scroll_half_page_down=下へ半画面スクロール -help_command_scroll_half_page_up=上へ半画面スクロール -help_command_scroll_page_down=下へ一画面スクロール -help_command_scroll_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 +mode.normal.scroll_down=下へスクロール +mode.normal.scroll_up=上へスクロール +mode.normal.scroll_left=左へスクロール +mode.normal.scroll_right=右へスクロール +mode.normal.scroll_half_page_down=下へ半画面スクロール +mode.normal.scroll_half_page_up=上へ半画面スクロール +mode.normal.scroll_page_down=下へ一画面スクロール +mode.normal.scroll_page_up=上へ一画面スクロール help_section_tabs=タブの操作 -help_command_open_tab=空のタブを開く -help_command_tab_prev=前のタブに移動する -help_command_tab_next=次のタブに移動する -help_command_tab_move_left=現在のタブを左に移動する -help_command_tab_move_right=現在のタブを右に移動する -help_command_home=ホームページに移動する -help_command_tab_first=最初のタブに移動する -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=最後のタブに移動する -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=現在のタブを閉じる -help_command_restore_tab=最後に閉じたタブを復元する +mode.normal.tab_new=空のタブを開く +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=最後に閉じたタブを復元する help_section_browse=ブラウジング -help_command_follow=現在のページにあるリンクをたどる -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=前のページに移動 -help_command_follow_next=次のページに移動 -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=URLを一階層上る -help_command_go_to_root=URLを最上階まで上る -help_command_back=履歴を戻る -help_command_forward=履歴を進む +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_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=その他 -help_command_find=ページ内検索モードに入る -help_command_find_hl=ページ内検索モードに入り、全ての一致語を強調する -help_command_find_next=次の一致部分へ移動 -help_command_find_prev=前の一致部分へ移動 -help_command_insert_mode=挿入モードへ入る:全てのコマンドを無視します -help_command_quote=Pass next keypress through to the page -help_command_help=このダイアログを表示 -help_command_dev=開発者ツールバーを開く -help_command_Esc=Blur/close active element +mode.normal.find=ページ内検索モードに入る +mode.normal.find_highlight_all=ページ内検索モードに入り、全ての一致語を強調する +mode.normal.find_next=次の一致部分へ移動 +mode.normal.find_previous=前の一致部分へ移動 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=キーボードショートカット help_version=バージョン diff --git a/extension/locale/nl/vimfx.properties b/extension/locale/nl/vimfx.properties index 737fc53..07fa9e6 100644 --- a/extension/locale/nl/vimfx.properties +++ b/extension/locale/nl/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Zwarte lijst item_blacklist_button_inverse_tooltip=Remove this rule help_section_urls=Omgaan met URLs -help_command_focus=Focus de adresbalk -help_command_focus_search=Focus the Search Bar -help_command_paste=Open het adres op het klembord -help_command_paste_tab=Open het adres op het klembord in een nieuw tabblad -help_command_marker_yank=Kopieer link URL of tekstinvoer naar klembord -help_command_marker_focus=Focus/select element -help_command_yank=Kopieer link van huidige pagina naar klembord -help_command_reload=Herlaad huidige pagina -help_command_reload_force=Herlaad huidige pagina inclusief javascript, css en plaatjes -help_command_reload_all=Herlaad alle tabbladen -help_command_reload_all_force=Herlaad alle tabbladen inclusief javascript, css en plaatjes. -help_command_stop=Stop loading current page -help_command_stop_all=Stop loading pages in all tabs +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.reload=Herlaad huidige pagina +mode.normal.reload_force=Herlaad huidige pagina inclusief javascript, css en plaatjes +mode.normal.reload_all=Herlaad alle tabbladen +mode.normal.reload_all_force=Herlaad alle tabbladen inclusief javascript, css en plaatjes. +mode.normal.stop=Stop loading current page +mode.normal.stop_all=Stop loading pages in all tabs help_section_nav=Navigeren over de pagina -help_command_scroll_to_top=Scroll naar de bovenkant -help_command_scroll_to_bottom=Scroll naar de onderkant -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Scroll naar beneden -help_command_scroll_up=Scroll naar boven -help_command_scroll_left=Scroll naar links -help_command_scroll_right=Scroll naar rechts -help_command_scroll_half_page_down=Scroll een halve pagina naar beneden -help_command_scroll_half_page_up=Scroll een halve pagina naar boven -help_command_scroll_page_down=Scroll een pagina naar beneden -help_command_scroll_page_up=Scroll een 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 +mode.normal.scroll_down=Scroll naar beneden +mode.normal.scroll_up=Scroll naar boven +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_page_down=Scroll een pagina naar beneden +mode.normal.scroll_page_up=Scroll een pagina naar boven help_section_tabs=Werken met tabbladen -help_command_open_tab=Open een nieuw tabblad -help_command_tab_prev=Ga naar het vorige tabblad -help_command_tab_next=Ga naar het volgende tabblad -help_command_tab_move_left=Verplaats huidige tabblad naar links -help_command_tab_move_right=Verplaats huidige tabblad naar rechts -help_command_home=Open startpagina -help_command_tab_first=Ga naar het eerste tabblad -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Ga naar het laatste tabblad -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Sluit huidige tabblad -help_command_restore_tab=Heropen laatst gesloten tabblad +mode.normal.tab_new=Open een nieuw tabblad +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 help_section_browse=Browsen -help_command_follow=Volg een link op de huidige pagina -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Go to previous page -help_command_follow_next=Go to next page -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Go up one level in the URL hierarchy -help_command_go_to_root=Go up to root of the URL hierarchy -help_command_back=Ga terug in de geschiedenis -help_command_forward=Ga vooruit in geschiedenis +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_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 -help_command_find=Zoeken -help_command_find_hl=Zoek met highlights -help_command_find_next=Ga naar volgende overeenkomst -help_command_find_prev=Ga naar vorige overeenkomst -help_command_insert_mode=Enter insert mode: Ignore all commands -help_command_quote=Pass next keypress through to the page -help_command_help=Show this dialog -help_command_dev=Open ontwikkelaarswerkbalk -help_command_Esc=Blur/close active element +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Keyboard Shortcuts help_version=Versie diff --git a/extension/locale/pl/vimfx.properties b/extension/locale/pl/vimfx.properties index 45ba673..46827b8 100644 --- a/extension/locale/pl/vimfx.properties +++ b/extension/locale/pl/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Czarna lista item_blacklist_button_inverse_tooltip=Usuń tę regułę help_section_urls=Praca z adresami -help_command_focus=Przejdź do paska adresu -help_command_focus_search=Przejdź do paska wyszukiwania -help_command_paste=Przejdź pod adres w schowku -help_command_paste_tab=Przejdź pod adres w schowku w nowej karcie -help_command_marker_yank=Kopiuj adres odnośnika lub treść pola do schowka -help_command_marker_focus=Focus/select element -help_command_yank=Kopiuj adres bieżącej strony do schowka -help_command_reload=Odśwież bieżącą stronę -help_command_reload_force=Odśwież bieżącą stronę wraz z zasobami (js, css, img) -help_command_reload_all=Odśwież strony we wszystkich kartach -help_command_reload_all_force=Odśwież strony we wszystkich kartach wraz z zasobami (js, css, img) -help_command_stop=Anuluj ładowanie bieżącej strony -help_command_stop_all=Anuluj ładowanie wszystkich kart +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.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 +mode.normal.reload_all_force=Odśwież strony we wszystkich kartach wraz z zasobami (js, css, img) +mode.normal.stop=Anuluj ładowanie bieżącej strony +mode.normal.stop_all=Anuluj ładowanie wszystkich kart help_section_nav=Poruszanie po stronie -help_command_scroll_to_top=Przewiń na górę strony -help_command_scroll_to_bottom=Przewin na dół strony -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Przewiń w dół -help_command_scroll_up=Przewiń w górę -help_command_scroll_left=Przewiń w lewo -help_command_scroll_right=Przewiń w prawo -help_command_scroll_half_page_down=Przewiń o pół strony w dół -help_command_scroll_half_page_up=Przewiń o pół strony w górę -help_command_scroll_page_down=Przewiń o pełną stronę w dół -help_command_scroll_page_up=Przewiń o pełną stronę 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 +mode.normal.scroll_down=Przewiń w dół +mode.normal.scroll_up=Przewiń w górę +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_page_down=Przewiń o pełną stronę w dół +mode.normal.scroll_page_up=Przewiń o pełną stronę w górę help_section_tabs=Karty -help_command_open_tab=Otwórz nową kartę -help_command_tab_prev=Przejdź do poprzedniej karty -help_command_tab_next=Przejdź do następnej karty -help_command_tab_move_left=Przenieś aktywną kartę w lewo -help_command_tab_move_right=Przenieś aktywną kartę w prawo -help_command_home=Przejdź na stronę startową -help_command_tab_first=Idź do pierwszej karty -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=Idź do ostatniej karty -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=Zamknij bieżącą kartę -help_command_restore_tab=Przywróć ostatnio zamkniętą kartę +mode.normal.tab_new=Otwórz nową kartę +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ę help_section_browse=Przeglądanie -help_command_follow=Otwórz link z bieżącej strony -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=Idź do poprzedniej strony -help_command_follow_next=Idź do następnej strony -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Idź poziom wyżej w hierarchii URL -help_command_go_to_root=Idź do korzenia w hierarchii URL -help_command_back=Wstecz -help_command_forward=Dalej +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_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 -help_command_find=Znajdź -help_command_find_hl=Znajdź i podkreśl wszystkie wystąpienia -help_command_find_next=Znajdź następne -help_command_find_prev=Znajdź poprzednie -help_command_insert_mode=Włącz insert mode: Ignoruj wszystkie komendy -help_command_quote=Pass next keypress through to the page -help_command_help=Pokaż ten dialog -help_command_dev=Otwórz pasek programisty -help_command_Esc=Zdeaktywuj element +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 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=Skróty klawiszowe help_version=Wersja diff --git a/extension/locale/ru/vimfx.properties b/extension/locale/ru/vimfx.properties index 23e89c4..3ee13f6 100644 --- a/extension/locale/ru/vimfx.properties +++ b/extension/locale/ru/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Добавить в стоп-список item_blacklist_button_inverse_tooltip=Убрать эту комбинацию help_section_urls=Адресная Строка -help_command_focus=Фокус на адресную строку -help_command_focus_search=Фокус на строку поиска -help_command_paste=Перейти по адресу в буфере обмена -help_command_paste_tab=Открыть новую вкладку и перейти по адресу в буфере обмена -help_command_marker_yank=Скопировать в буфер обмена адрес ссылки или текст в элементе ввода -help_command_marker_focus=Фокус на/выбрать элемент -help_command_yank=Скопировать в буфер обмена адрес текущей страницы -help_command_reload=Перезагрузить текущую страницу -help_command_reload_force=Перезагрузить текущую страницу и все ресурсы (js, css, img) -help_command_reload_all=Перезагрузить страницы во всех вкладках -help_command_reload_all_force=Перезагрузить страницы и ресурсы (js, css, img) во всех вкладках -help_command_stop=Остановить загрузку -help_command_stop_all=Остановить загрузку во всех вкладках +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.reload=Перезагрузить текущую страницу +mode.normal.reload_force=Перезагрузить текущую страницу и все ресурсы (js, css, img) +mode.normal.reload_all=Перезагрузить страницы во всех вкладках +mode.normal.reload_all_force=Перезагрузить страницы и ресурсы (js, css, img) во всех вкладках +mode.normal.stop=Остановить загрузку +mode.normal.stop_all=Остановить загрузку во всех вкладках help_section_nav=Страница -help_command_scroll_to_top=Прокрутить к верху страницы -help_command_scroll_to_bottom=Прокрутить к низу страницы -help_command_scroll_to_left=Прокрутить влево до конца -help_command_scroll_to_right=Прокрутить вправо до конца -help_command_scroll_down=Прокрутить вниз -help_command_scroll_up=Прокрутить вверх -help_command_scroll_left=Прокрутить влево -help_command_scroll_right=Прокрутить вправо -help_command_scroll_half_page_down=Прокрутить полстраницы вниз -help_command_scroll_half_page_up=Прокрутить полстраницы вверх -help_command_scroll_page_down=Прокрутить на страницу вниз -help_command_scroll_page_up=Прокрутить на страницу вверх +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=Прокрутить вверх +mode.normal.scroll_left=Прокрутить влево +mode.normal.scroll_right=Прокрутить вправо +mode.normal.scroll_half_page_down=Прокрутить полстраницы вниз +mode.normal.scroll_half_page_up=Прокрутить полстраницы вверх +mode.normal.scroll_page_down=Прокрутить на страницу вниз +mode.normal.scroll_page_up=Прокрутить на страницу вверх help_section_tabs=Вкладки -help_command_open_tab=Открыть новую вкладку -help_command_tab_prev=Перейти к предыдущей вкладке -help_command_tab_next=Перейти к следующей вкладке -help_command_tab_move_left=Переместить текущую вкладку влево -help_command_tab_move_right=Переместить текущую вкладку вправо -help_command_home=Загрузить домашнюю страницу -help_command_tab_first=Перейти к первой вкладке -help_command_tab_first_non_pinned=Перейти к первой незакреплённой вкладке -help_command_tab_last=Перейти к последней вкладке -help_command_toggle_pin_tab=Закрепить/открепить текущую вкладку -help_command_duplicate_tab=Дублировать текущую вкладку -help_command_close_tabs_to_end=Закрыть вкладки справа -help_command_close_other_tabs=Закрыть все вкладки кроме текущей -help_command_close_tab=Закрыть текущую вкладку -help_command_restore_tab=Восстановить последнюю закрытую вкладку +mode.normal.tab_new=Открыть новую вкладку +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=Восстановить последнюю закрытую вкладку help_section_browse=Навигация -help_command_follow=Перейти по ссылке -help_command_follow_in_tab=Перейти по ссылке в новой фоновой вкладке -help_command_follow_in_focused_tab=Перейти по ссылке в новой вкладке на первом плане -help_command_follow_multiple=Перейти по нескольким ссылкам в новых вкладках, сфокусироваться на поле ввода или щелкнуть по нескольким кнопкам -help_command_follow_previous=Перейти к предыдущей странице -help_command_follow_next=Перейти к следующей странице -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Перейти на уровень выше в URL -help_command_go_to_root=Перейти к корню сайта -help_command_back=Предыдущая страница -help_command_forward=Следующая страница +mode.normal.follow=Перейти по ссылке +mode.normal.follow_in_tab=Перейти по ссылке в новой фоновой вкладке +mode.normal.follow_in_focused_tab=Перейти по ссылке в новой вкладке на первом плане +mode.normal.follow_multiple=Перейти по нескольким ссылкам в новых вкладках, сфокусироваться на поле ввода или щелкнуть по нескольким кнопкам +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=Разное -help_command_find=Режим поиска -help_command_find_hl=Режим поиска с выделением всех совпадений -help_command_find_next=Перейти к следующему результату поиска -help_command_find_prev=Перейти к предыдущему результату поиска -help_command_insert_mode=Режим ввода: все команды игнорируются -help_command_quote=Передать странице следующее нажатие клавиши -help_command_help=Открыть это окно -help_command_dev=Открыть Панель Разработки -help_command_Esc=Закрыть/покинуть элемент с фокусом +mode.normal.find=Режим поиска +mode.normal.find_highlight_all=Режим поиска с выделением всех совпадений +mode.normal.find_next=Перейти к следующему результату поиска +mode.normal.find_previous=Перейти к предыдущему результату поиска +mode.normal.enter_mode_insert=Режим ввода: все команды игнорируются +mode.normal.quote=Передать странице следующее нажатие клавиши +mode.normal.help=Открыть это окно +mode.normal.dev=Открыть Панель Разработки +mode.normal.esc=Закрыть/покинуть элемент с фокусом help_section_mode_hints=Режим маркеров -help_command_mode_hints_exit=Вернуться в нормальный режим -help_command_mode_hints_rotate_markers_forward=Переставить перекрывающиеся маркеры -help_command_mode_hints_rotate_markers_backward=Переставить перекрывающиеся маркеры в обратном порядке -help_command_mode_hints_delete_hint_char=Удалить последний введённый символ +mode.hints.exit=Вернуться в нормальный режим +mode.hints.rotate_markers_forward=Переставить перекрывающиеся маркеры +mode.hints.rotate_markers_backward=Переставить перекрывающиеся маркеры в обратном порядке +mode.hints.delete_hint_char=Удалить последний введённый символ help_section_mode_insert=Режим вставки -help_command_mode_insert_exit=Вернуться в нормальный режим +mode.insert.exit=Вернуться в нормальный режим help_section_mode_find=Режим поиска -help_command_mode_find_exit=Закрыть панель поиска +mode.find.exit=Закрыть панель поиска help_title=Команды help_version=Версия diff --git a/extension/locale/sv-SE/vimfx.properties b/extension/locale/sv-SE/vimfx.properties index 16ca395..e75d8aa 100644 --- a/extension/locale/sv-SE/vimfx.properties +++ b/extension/locale/sv-SE/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=Svartlista item_blacklist_button_inverse_tooltip=Ta bort denna regel help_section_urls=Hantera URL:er -help_command_focus=Fokusera adressfältet -help_command_focus_search=Fokusera sökfältet -help_command_paste=Klistra in och kör -help_command_paste_tab=Klistra in och kör i en ny flik -help_command_marker_yank=Kopiera länkadress eller inmatad text -help_command_marker_focus=Fokusera/markera element -help_command_yank=Kopiera nuvarande URL -help_command_reload=Ladda om -help_command_reload_force=Ladda om (hoppa över cache) -help_command_reload_all=Ladda om alla flikar -help_command_reload_all_force=Ladda om alla flikar (hoppa över cache) -help_command_stop=Stoppa inladdning av sidan -help_command_stop_all=Stoppa inladdning i alla flikar +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.reload=Ladda om +mode.normal.reload_force=Ladda om (hoppa över cache) +mode.normal.reload_all=Ladda om alla flikar +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 -help_command_scroll_to_top=Scrolla högst upp -help_command_scroll_to_bottom=Scrolla längst ned -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=Scolla ned -help_command_scroll_up=Scrolla upp -help_command_scroll_left=Scrolla åt vänster -help_command_scroll_right=Scrolla åt höger -help_command_scroll_half_page_down=Scrolla en halv sida ned -help_command_scroll_half_page_up=Scrolla en halv sida upp -help_command_scroll_page_down=Scrolla en hel sida ned -help_command_scroll_page_up=Scrolla en hel 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 +mode.normal.scroll_down=Scolla ned +mode.normal.scroll_up=Scrolla upp +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_page_down=Scrolla en hel sida ned +mode.normal.scroll_page_up=Scrolla en hel sida upp help_section_tabs=Arbeta med flikar -help_command_open_tab=Ny flik -help_command_tab_prev=Föregående flik -help_command_tab_next=Nästa flik -help_command_tab_move_left=Flytta flik åt vänster -help_command_tab_move_right=Flytta flik åt höger -help_command_home=Gå till Startsidan -help_command_tab_first=Gå till den första fliken -help_command_tab_first_non_pinned=Gå till den första icke fastnålade fliken -help_command_tab_last=Gå till den sista fliken -help_command_toggle_pin_tab=Växla mellan vanlig och fastnålad flik -help_command_duplicate_tab=Duplicera flik -help_command_close_tabs_to_end=Stäng flikar till höger -help_command_close_other_tabs=Stäng övriga flikar -help_command_close_tab=Stäng flik -help_command_restore_tab=Återställ stängd flik +mode.normal.tab_new=Ny 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 help_section_browse=Surfande -help_command_follow=Följ länk, fokusera textruta eller klicka på knapp -help_command_follow_in_tab=Följ länk i ny bakgrundsflik -help_command_follow_in_focused_tab=Följ länk i ny förgrundsflik -help_command_follow_multiple=Följ flera länkar i nya bakgrundsflikar, fokusera textruta eller klicka på flera knappar -help_command_follow_previous=Gå till föregående sida -help_command_follow_next=Gå till nästa sida -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=Gå upp en nivå i URL:en -help_command_go_to_root=Gå till roten av URL:en -help_command_back=Gå tillbaka i historiken -help_command_forward=Gå framåt i historiken +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_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 -help_command_find=Gå till Sökläge -help_command_find_hl=Gå till Sökläge och markera alla sökresultat -help_command_find_next=Nästa sökresultat -help_command_find_prev=Föregående sökresultat -help_command_insert_mode=Gå till Inmatningsläge: Ignorera alla kommandon -help_command_quote=Skicka nästa tangenttryckning direkt till sidan -help_command_help=Visa denna ruta -help_command_dev=Öppna utvecklarverktygsfältet -help_command_Esc=Avfokusera/stäng aktivt element +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 +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 -help_command_mode_hints_exit=Återvänd till Normalläge -help_command_mode_hints_rotate_markers_forward=Rotera överlappande etiketter framåt -help_command_mode_hints_rotate_markers_backward=Rotera överlappande etiketter bakåt -help_command_mode_hints_delete_hint_char=Radera senast inmatade tecken +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 -help_command_mode_insert_exit=Återvänd till Normalläge +mode.insert.exit=Återvänd till Normalläge help_section_mode_find=Sökläge -help_command_mode_find_exit=Stäng sökpanelen +mode.find.exit=Stäng sökpanelen help_title=Tangentbordskommandon help_version=Version diff --git a/extension/locale/zh-CN/vimfx.properties b/extension/locale/zh-CN/vimfx.properties index d11a3ec..7d16f7d 100644 --- a/extension/locale/zh-CN/vimfx.properties +++ b/extension/locale/zh-CN/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=添加到黑名单 item_blacklist_button_inverse_tooltip=移除此规则 help_section_urls=处理 URL -help_command_focus=聚焦地址栏 -help_command_focus_search=聚焦搜索栏 -help_command_paste=打开剪贴板中的链接 -help_command_paste_tab=在新标签页中打开剪贴板中的链接 -help_command_marker_yank=复制链接地址或输入框文本到剪贴板 -help_command_marker_focus=聚焦/选中元素 -help_command_yank=复制当前标签页链接到剪贴板 -help_command_reload=重新载入当前页面 -help_command_reload_force=重新载入当前页面及所有外部资源(js,css,img) -help_command_reload_all=重新载入所有标签页中打开的页面 -help_command_reload_all_force=重新载入所有标签页中包含外部资源(js,css,img)的页面 -help_command_stop=停止载入当前页面 -help_command_stop_all=停止载入所有标签页中的页面 +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.reload=重新载入当前页面 +mode.normal.reload_force=重新载入当前页面及所有外部资源(js,css,img) +mode.normal.reload_all=重新载入所有标签页中打开的页面 +mode.normal.reload_all_force=重新载入所有标签页中包含外部资源(js,css,img)的页面 +mode.normal.stop=停止载入当前页面 +mode.normal.stop_all=停止载入所有标签页中的页面 help_section_nav=页面导航 -help_command_scroll_to_top=滚动到页面顶部 -help_command_scroll_to_bottom=滚动到页面底部 -help_command_scroll_to_left=滚动到最左边 -help_command_scroll_to_right=滚动到最右边 -help_command_scroll_down=向下滚动 -help_command_scroll_up=向上滚动 -help_command_scroll_left=向左滚动 -help_command_scroll_right=向右滚动 -help_command_scroll_half_page_down=向下滚动半页 -help_command_scroll_half_page_up=向上滚动半页 -help_command_scroll_page_down=向下滚动整页 -help_command_scroll_page_up=向上滚动整页 +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=向上滚动 +mode.normal.scroll_left=向左滚动 +mode.normal.scroll_right=向右滚动 +mode.normal.scroll_half_page_down=向下滚动半页 +mode.normal.scroll_half_page_up=向上滚动半页 +mode.normal.scroll_page_down=向下滚动整页 +mode.normal.scroll_page_up=向上滚动整页 help_section_tabs=控制标签页 -help_command_open_tab=打开新的空白标签页 -help_command_tab_prev=跳到上一标签页 -help_command_tab_next=跳到下一标签页 -help_command_tab_move_left=移动当前标签页到左边 -help_command_tab_move_right=移动当前标签页到右边 -help_command_home=跳到主页 -help_command_tab_first=跳到第一个标签页 -help_command_tab_first_non_pinned=跳到第一个未固定的标签页 -help_command_tab_last=跳到最后一个标签页 -help_command_toggle_pin_tab=固定/不固定标签页 -help_command_duplicate_tab=复制标签页 -help_command_close_tabs_to_end=关闭右边的标签页 -help_command_close_other_tabs=关闭其他标签页 -help_command_close_tab=关闭当前标签页 -help_command_restore_tab=恢复最后关闭的标签页 +mode.normal.tab_new=打开新的空白标签页 +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=恢复最后关闭的标签页 help_section_browse=浏览 -help_command_follow=打开当前页面上的某个链接 -help_command_follow_in_tab=在新的后台标签页中打开此链接 -help_command_follow_in_focused_tab=在新的前台标签页中打开此链接 -help_command_follow_multiple=在新的后台标签页中打开多个链接,聚焦输入框或点击多个按钮 -help_command_follow_previous=打开上一页 -help_command_follow_next=打开下一页 -help_command_text_input=聚焦最后聚焦过的或第一个输入框 -help_command_go_up_path=打开上一级页面 -help_command_go_to_root=打开根目录页面 -help_command_back=后退 -help_command_forward=前进 +mode.normal.follow=打开当前页面上的某个链接 +mode.normal.follow_in_tab=在新的后台标签页中打开此链接 +mode.normal.follow_in_focused_tab=在新的前台标签页中打开此链接 +mode.normal.follow_multiple=在新的后台标签页中打开多个链接,聚焦输入框或点击多个按钮 +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=杂项 -help_command_find=进入查找模式 -help_command_find_hl=进入查找模式并高亮所有匹配项 -help_command_find_next=跳到下一个查找匹配项 -help_command_find_prev=跳到上一个查找匹配项 -help_command_insert_mode=进入插入模式:忽略所有命令 -help_command_quote=把下一个按键直接发送给页面(不触发 VimFx 内设置的快捷键) -help_command_help=显示这个对话框 -help_command_dev=打开开发者工具栏 -help_command_Esc=取消聚焦/关闭激活的元素 +mode.normal.find=进入查找模式 +mode.normal.find_highlight_all=进入查找模式并高亮所有匹配项 +mode.normal.find_next=跳到下一个查找匹配项 +mode.normal.find_previous=跳到上一个查找匹配项 +mode.normal.enter_mode_insert=进入插入模式:忽略所有命令 +mode.normal.quote=把下一个按键直接发送给页面(不触发 VimFx 内设置的快捷键) +mode.normal.help=显示这个对话框 +mode.normal.dev=打开开发者工具栏 +mode.normal.esc=取消聚焦/关闭激活的元素 help_section_mode_hints=Hints 模式 -help_command_mode_hints_exit=返回正常模式 -help_command_mode_hints_rotate_markers_forward=向前旋转重叠的标记 -help_command_mode_hints_rotate_markers_backward=向后旋转重叠的标记 -help_command_mode_hints_delete_hint_char=删除最后输入的提示符 +mode.hints.exit=返回正常模式 +mode.hints.rotate_markers_forward=向前旋转重叠的标记 +mode.hints.rotate_markers_backward=向后旋转重叠的标记 +mode.hints.delete_hint_char=删除最后输入的提示符 help_section_mode_insert=插入模式 -help_command_mode_insert_exit=返回正常模式 +mode.insert.exit=返回正常模式 help_section_mode_find=查找模式 -help_command_mode_find_exit=关闭查找栏 +mode.find.exit=关闭查找栏 help_title=键盘快捷键 help_version=版本 diff --git a/extension/locale/zh-TW/vimfx.properties b/extension/locale/zh-TW/vimfx.properties index f9db96f..396da4c 100644 --- a/extension/locale/zh-TW/vimfx.properties +++ b/extension/locale/zh-TW/vimfx.properties @@ -7,86 +7,86 @@ item_blacklist_button_tooltip=添加到黑名單 item_blacklist_button_inverse_tooltip=移除此規則 help_section_urls=處理 URL -help_command_focus=游標移至網址列 -help_command_focus_search=游標移至搜尋列 -help_command_paste=打開剪貼簿中的連結 -help_command_paste_tab=在新分頁中打開剪貼簿中的連結 -help_command_marker_yank=複製連結網址或目前輸入框中的文字到剪貼簿 -help_command_marker_focus=Focus/select element -help_command_yank=複製目前網頁的網址至剪貼簿 -help_command_reload=重新載入目前網頁 -help_command_reload_force=重新載入目前網頁及所有外部資源(js,css,img) -help_command_reload_all=重新載入所有分頁 -help_command_reload_all_force=重新載入所有網頁及其外部資源(js,css,img) -help_command_stop=停止載入目前網頁 -help_command_stop_all=停止載入所有分頁 +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.reload=重新載入目前網頁 +mode.normal.reload_force=重新載入目前網頁及所有外部資源(js,css,img) +mode.normal.reload_all=重新載入所有分頁 +mode.normal.reload_all_force=重新載入所有網頁及其外部資源(js,css,img) +mode.normal.stop=停止載入目前網頁 +mode.normal.stop_all=停止載入所有分頁 help_section_nav=網頁導覽 -help_command_scroll_to_top=捲動到網頁最頂端 -help_command_scroll_to_bottom=捲動到網頁最末端 -help_command_scroll_to_left=Scroll to the far left -help_command_scroll_to_right=Scroll to the far right -help_command_scroll_down=往下捲動 -help_command_scroll_up=往上捲動 -help_command_scroll_left=向左捲動 -help_command_scroll_right=向右捲動 -help_command_scroll_half_page_down=向下捲動半頁 -help_command_scroll_half_page_up=向上捲動半頁 -help_command_scroll_page_down=向下捲動整頁 -help_command_scroll_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 +mode.normal.scroll_down=往下捲動 +mode.normal.scroll_up=往上捲動 +mode.normal.scroll_left=向左捲動 +mode.normal.scroll_right=向右捲動 +mode.normal.scroll_half_page_down=向下捲動半頁 +mode.normal.scroll_half_page_up=向上捲動半頁 +mode.normal.scroll_page_down=向下捲動整頁 +mode.normal.scroll_page_up=向上捲動整頁 help_section_tabs=處理所有分頁 -help_command_open_tab=新開一個空白分頁 -help_command_tab_prev=跳到上一個分頁 -help_command_tab_next=跳到下一個分頁 -help_command_tab_move_left=向左移動目前分頁 -help_command_tab_move_right=向右移動目前分頁 -help_command_home=跳到首頁 -help_command_tab_first=跳到第一個分頁 -help_command_tab_first_non_pinned=Go to the First non-pinned tab -help_command_tab_last=跳到最後一個分頁 -help_command_toggle_pin_tab=Pin/Unpin current tab -help_command_duplicate_tab=Duplicate current tab -help_command_close_tabs_to_end=Close tabs to the right -help_command_close_other_tabs=Close other tabs except the current tab -help_command_close_tab=關閉目前分頁 -help_command_restore_tab=恢復最後關閉的分頁 +mode.normal.tab_new=新開一個空白分頁 +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=恢復最後關閉的分頁 help_section_browse=瀏覽 -help_command_follow=打開目前網頁上的某個連結 -help_command_follow_in_tab=Follow link in a new background tab -help_command_follow_in_focused_tab=Follow link in a new foreground tab -help_command_follow_multiple=Follow multiple links in new background tabs, focus text input or click multiple buttons -help_command_follow_previous=到上一頁 -help_command_follow_next=到下一頁 -help_command_text_input=Focus last focused or first text input -help_command_go_up_path=打開網址的上一級目錄 -help_command_go_to_root=打開網址的根目錄 -help_command_back=後退 -help_command_forward=前進 +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_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=其他雜項 -help_command_find=進入搜尋模式 -help_command_find_hl=進入搜尋模式並標示所有符合項目 -help_command_find_next=跳到下一個搜尋到的符合項目 -help_command_find_prev=跳到上一個搜尋到的符合項目 -help_command_insert_mode=進入插入模式並忽略所有指令 -help_command_quote=Pass next keypress through to the page -help_command_help=顯示協助說明框 -help_command_dev=打開開發者工具列 -help_command_Esc=Blur/close active element +mode.normal.find=進入搜尋模式 +mode.normal.find_highlight_all=進入搜尋模式並標示所有符合項目 +mode.normal.find_next=跳到下一個搜尋到的符合項目 +mode.normal.find_previous=跳到上一個搜尋到的符合項目 +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 -help_command_mode_hints_exit=Return to normal mode -help_command_mode_hints_rotate_markers_forward=Rotate overlapping markers forward -help_command_mode_hints_rotate_markers_backward=Rotate overlapping markers backward -help_command_mode_hints_delete_hint_char=Delete last typed hint character +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 -help_command_mode_insert_exit=Return to normal mode +mode.insert.exit=Return to normal mode help_section_mode_find=Find Mode -help_command_mode_find_exit=Close find bar +mode.find.exit=Close find bar help_title=鍵盤快速鍵 help_version=版本 -- 2.39.3