mirror of
https://github.com/MatMoul/quickdial-webext.git
synced 2025-04-03 20:21:45 +00:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
806e134b52 | |||
633c5756a1 | |||
![]() |
d2ea81d2ca | ||
![]() |
86f8063b11 | ||
![]() |
95a1ca420d | ||
41fc29660f | |||
725ad53d92 | |||
![]() |
929431e66f |
67
src/_locales/he_IL/messages.json
Normal file
67
src/_locales/he_IL/messages.json
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
"menuAddToQuickDial": {
|
||||
"message": "הוסף לחיוג מהיר",
|
||||
"description": "Text of add bookmark menu item."
|
||||
},
|
||||
|
||||
"menuNew": {
|
||||
"message": "חדש",
|
||||
"description": "Text of new menu item."
|
||||
},
|
||||
|
||||
"menuNewBookmark": {
|
||||
"message": "מועדף",
|
||||
"description": "Text of add bookmark menu item."
|
||||
},
|
||||
|
||||
"AddBookmarkPrompt": {
|
||||
"message": "הכנס קישור חדש למועדף :",
|
||||
"description": "Text of the add bookmark prompt."
|
||||
},
|
||||
|
||||
"menuNewFolder": {
|
||||
"message": "תיקייה",
|
||||
"description": "Text of add folder menu item."
|
||||
},
|
||||
|
||||
"AddFolderPrompt": {
|
||||
"message": "הכנס שם חדש לתיקייה :",
|
||||
"description": "Text of the add folder prompt."
|
||||
},
|
||||
|
||||
"menuProperties": {
|
||||
"message": "מאפיינים",
|
||||
"description": "Text of properties menu item."
|
||||
},
|
||||
|
||||
"menuRefreshItem": {
|
||||
"message": "רענן",
|
||||
"description": "Text of refresh menu item."
|
||||
},
|
||||
|
||||
"menuCaptureHere": {
|
||||
"message": "צלם מסך כאן",
|
||||
"description": "Text of capture here menu item."
|
||||
},
|
||||
|
||||
"menuCapturePage": {
|
||||
"message": "צלם מסך בלשונית חדשה",
|
||||
"description": "Text of capture menu item."
|
||||
},
|
||||
|
||||
"menuDeleteItem": {
|
||||
"message": "מחק",
|
||||
"description": "Text of delete menu item."
|
||||
},
|
||||
|
||||
"deleteItemConfimation": {
|
||||
"message": "האם למחוק $1 ?",
|
||||
"description": "Text of delete confirmation."
|
||||
},
|
||||
|
||||
"menuSettings": {
|
||||
"message": "הגדרות חיוג מהיר",
|
||||
"description": "Text of settings menu item."
|
||||
}
|
||||
|
||||
}
|
67
src/_locales/pl/messages.json
Normal file
67
src/_locales/pl/messages.json
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
"menuAddToQuickDial": {
|
||||
"message": "Dodaj do Quick Dial",
|
||||
"description": "Text of add bookmark menu item."
|
||||
},
|
||||
|
||||
"menuNew": {
|
||||
"message": "Nowy",
|
||||
"description": "Text of new menu item."
|
||||
},
|
||||
|
||||
"menuNewBookmark": {
|
||||
"message": "Zakładka",
|
||||
"description": "Text of add bookmark menu item."
|
||||
},
|
||||
|
||||
"AddBookmarkPrompt": {
|
||||
"message": "Wprowadź nowy adres URL zakładki:",
|
||||
"description": "Text of the add bookmark prompt."
|
||||
},
|
||||
|
||||
"menuNewFolder": {
|
||||
"message": "Folder",
|
||||
"description": "Text of add folder menu item."
|
||||
},
|
||||
|
||||
"AddFolderPrompt": {
|
||||
"message": "Wprowadź nazwę nowego folderu:",
|
||||
"description": "Text of the add folder prompt."
|
||||
},
|
||||
|
||||
"menuProperties": {
|
||||
"message": "Właściwości",
|
||||
"description": "Text of properties menu item."
|
||||
},
|
||||
|
||||
"menuRefreshItem": {
|
||||
"message": "Odśwież",
|
||||
"description": "Text of refresh menu item."
|
||||
},
|
||||
|
||||
"menuCaptureHere": {
|
||||
"message": "Zdjęcie tutaj",
|
||||
"description": "Text of capture here menu item."
|
||||
},
|
||||
|
||||
"menuCapturePage": {
|
||||
"message": "Zdjęcie na nowej karcie",
|
||||
"description": "Text of capture menu item."
|
||||
},
|
||||
|
||||
"menuDeleteItem": {
|
||||
"message": "Usuń",
|
||||
"description": "Text of delete menu item."
|
||||
},
|
||||
|
||||
"deleteItemConfimation": {
|
||||
"message": "Usuń $1 ?",
|
||||
"description": "Text of delete confirmation."
|
||||
},
|
||||
|
||||
"menuSettings": {
|
||||
"message": "Ustawienia Quick Dial",
|
||||
"description": "Text of settings menu item."
|
||||
}
|
||||
|
||||
}
|
@ -276,15 +276,143 @@ app.ContextMenus.menuItemClicked = function(info, tab){
|
||||
});
|
||||
};
|
||||
app.ContextMenus.initMenu = function(){ // (Called from app.init) Init context menu in all pages
|
||||
// Create Add Context menu for all pages
|
||||
if(app.settings.menuShowAdd){
|
||||
browser.contextMenus.create({ // Create Context menu
|
||||
browser.contextMenus.create({
|
||||
id: 'AddToQuickDial',
|
||||
title: browser.i18n.getMessage("menuAddToQuickDial"),
|
||||
contexts: ["all"],
|
||||
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*', 'ftp://*/*' ]
|
||||
}, function(){});
|
||||
browser.contextMenus.onClicked.addListener(app.ContextMenus.menuItemClicked);
|
||||
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*', 'ftp://*/*' ],
|
||||
onclick(info, tab) { app.ContextMenus.menuItemClicked(info, tab) }
|
||||
});
|
||||
}
|
||||
// Create WebExt Page Context menu
|
||||
browser.contextMenus.create({
|
||||
id: "pagemenu",
|
||||
title: "Quick Dial",
|
||||
documentUrlPatterns: [ 'moz-extension://*/dial', 'moz-extension://*/dial?*' ],
|
||||
contexts: ["page"]
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
id: "pagemenunew",
|
||||
parentId: "pagemenu",
|
||||
title: browser.i18n.getMessage("menuNew")
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "pagemenunew",
|
||||
title: browser.i18n.getMessage("menuNewBookmark"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.createBookmark();"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "pagemenunew",
|
||||
title: browser.i18n.getMessage("menuNewFolder"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.createFolder();"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({ parentId: "pagemenu", type: "separator" });
|
||||
browser.contextMenus.create({
|
||||
parentId: "pagemenu",
|
||||
title: browser.i18n.getMessage("menuSettings"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.editSettings();"
|
||||
});
|
||||
}
|
||||
});
|
||||
// Create WebExt Link Context menu
|
||||
browser.contextMenus.create({
|
||||
id: "itemmenu",
|
||||
title: "Quick Dial",
|
||||
documentUrlPatterns: [ 'moz-extension://*/dial', 'moz-extension://*/dial?*' ],
|
||||
contexts: ["link"]
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
id: "itemmenunew",
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuNew")
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenunew",
|
||||
title: browser.i18n.getMessage("menuNewBookmark"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.createBookmark();"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenunew",
|
||||
title: browser.i18n.getMessage("menuNewFolder"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.createFolder();"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({ parentId: "itemmenu", type: "separator" });
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuProperties"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.editProperties(window.dial._selectedItem);"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuRefreshItem"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.refreshNode(window.dial._selectedItem);"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuCaptureHere"),
|
||||
visible: false,
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.captureHere(window.dial._selectedItem);"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuCapturePage"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.capturePage(window.dial._selectedItem);"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuDeleteItem"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.deleteNode();"
|
||||
});
|
||||
}
|
||||
});
|
||||
browser.contextMenus.create({ parentId: "itemmenu", type: "separator" });
|
||||
browser.contextMenus.create({
|
||||
parentId: "itemmenu",
|
||||
title: browser.i18n.getMessage("menuSettings"),
|
||||
onclick(info, tab) {
|
||||
browser.tabs.executeScript(tab.id, {
|
||||
code: "window.dial.editSettings();"
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
app.ContextMenus.updateMenu = function(){
|
||||
browser.contextMenus.onClicked.removeListener(app.ContextMenus.menuItemClicked);
|
||||
|
@ -163,10 +163,11 @@ app.GridNodes._changed = function(node){
|
||||
|
||||
|
||||
dial.init = function(){
|
||||
dial.initMenus();
|
||||
//dial.initMenus();
|
||||
dial.Title = document.createElement('title');
|
||||
document.head.appendChild(dial.Title);
|
||||
};
|
||||
/*
|
||||
dial.initMenus = function(){
|
||||
document.body.setAttribute('contextmenu', 'page');
|
||||
dial.PageMenu = document.createElement('menu');
|
||||
@ -250,6 +251,7 @@ dial.initMenus = function(){
|
||||
dial.ItemMenu.appendChild(dial.ItemMenuSettings);
|
||||
document.body.appendChild(dial.ItemMenu);
|
||||
}
|
||||
*/
|
||||
dial.initStyles = function(){
|
||||
function applyImageMode(imageMode, target){
|
||||
switch(imageMode){
|
||||
@ -328,6 +330,7 @@ dial.initGrid = function(){
|
||||
link.appendChild(document.createElement('div'));
|
||||
link.onmousedown = function(){
|
||||
dial._selectedItem = this;
|
||||
/*
|
||||
if(dial._selectedItem.Node){
|
||||
switch(dial._selectedItem.Node.type){
|
||||
case app.GridNodes.GridNodeType.folder:
|
||||
@ -339,6 +342,7 @@ dial.initGrid = function(){
|
||||
break;
|
||||
}
|
||||
}
|
||||
*/
|
||||
};
|
||||
|
||||
function dragstart_handler(ev) {
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"manifest_version": 2,
|
||||
"name": "Quick Dial",
|
||||
"version": "0.1.18",
|
||||
"version": "0.1.20",
|
||||
"author": "MatMoul",
|
||||
"homepage_url": "https://github.com/MatMoul/quickdial-webext",
|
||||
"developer": {
|
||||
@ -43,7 +43,7 @@
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "quickdial@matmoul.com",
|
||||
"strict_min_version": "52.0"
|
||||
"strict_min_version": "70.0"
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user