mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2025-12-26 03:34:14 +00:00
FoxToPhone 1.1.2 Updated locales.
This commit is contained in:
@@ -13,10 +13,11 @@ locale sendtophone hu chrome/locale/hu/
|
|||||||
locale sendtophone it chrome/locale/it/
|
locale sendtophone it chrome/locale/it/
|
||||||
locale sendtophone ja-JP chrome/locale/ja-JP/
|
locale sendtophone ja-JP chrome/locale/ja-JP/
|
||||||
locale sendtophone nl chrome/locale/nl/
|
locale sendtophone nl chrome/locale/nl/
|
||||||
|
locale sendtophone pt-BR chrome/locale/pt-BR/
|
||||||
locale sendtophone ru chrome/locale/ru/
|
locale sendtophone ru chrome/locale/ru/
|
||||||
locale sendtophone sr chrome/locale/sr/
|
locale sendtophone sr chrome/locale/sr/
|
||||||
locale sendtophone sv chrome/locale/sv/
|
locale sendtophone sv chrome/locale/sv/
|
||||||
locale sendtophone zh chrome/locale/zh/
|
locale sendtophone zh-CN chrome/locale/zh-CN/
|
||||||
|
|
||||||
overlay chrome://browser/content/browser.xul chrome://sendtophone/content/ff-overlay.xul
|
overlay chrome://browser/content/browser.xul chrome://sendtophone/content/ff-overlay.xul
|
||||||
style chrome://global/content/customizeToolbar.xul chrome://sendtophone/skin/overlay.css
|
style chrome://global/content/customizeToolbar.xul chrome://sendtophone/skin/overlay.css
|
||||||
|
|||||||
@@ -111,10 +111,7 @@ sendtophone.showFirefoxContextMenu = function(event) {
|
|||||||
|
|
||||||
gContextMenu.showItem("context-sendtophone-text", gContextMenu.isTextSelected ||
|
gContextMenu.showItem("context-sendtophone-text", gContextMenu.isTextSelected ||
|
||||||
(gContextMenu.onTextInput && gContextMenu.target.selectionEnd > gContextMenu.target.selectionStart) );
|
(gContextMenu.onTextInput && gContextMenu.target.selectionEnd > gContextMenu.target.selectionStart) );
|
||||||
gContextMenu.showItem("context-sendtophone-email", (gContextMenu.isTextSelected ||
|
|
||||||
(gContextMenu.onTextInput && gContextMenu.target.selectionEnd > gContextMenu.target.selectionStart))&&
|
|
||||||
this.detectEmail(this.selectText())
|
|
||||||
);
|
|
||||||
gContextMenu.showItem("context-sendtophone-page", !( gContextMenu.inDirList || gContextMenu.isContentSelected || gContextMenu.onTextInput || gContextMenu.onLink || gContextMenu.onImage ));
|
gContextMenu.showItem("context-sendtophone-page", !( gContextMenu.inDirList || gContextMenu.isContentSelected || gContextMenu.onTextInput || gContextMenu.onLink || gContextMenu.onImage ));
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -61,11 +61,6 @@
|
|||||||
accesskey="&sendtophoneContextText.accesskey;"
|
accesskey="&sendtophoneContextText.accesskey;"
|
||||||
insertafter="context-searchselect"
|
insertafter="context-searchselect"
|
||||||
oncommand="sendtophone.onMenuItemCommand(event, 'text')"/>
|
oncommand="sendtophone.onMenuItemCommand(event, 'text')"/>
|
||||||
<menuitem id="context-sendtophone-email" label="&sendtophoneContextEmail.label;"
|
|
||||||
class="menuitem-iconic"
|
|
||||||
accesskey="&sendtophoneContextEmail.accesskey;"
|
|
||||||
insertafter="context-searchselect"
|
|
||||||
oncommand="sendtophone.onMenuItemCommand(event, 'email')"/>
|
|
||||||
<menuitem id="context-sendtophone-page" label="&sendtophoneContextPage.label;"
|
<menuitem id="context-sendtophone-page" label="&sendtophoneContextPage.label;"
|
||||||
class="menuitem-iconic"
|
class="menuitem-iconic"
|
||||||
accesskey="&sendtophoneContextPage.accesskey;"
|
accesskey="&sendtophoneContextPage.accesskey;"
|
||||||
|
|||||||
@@ -62,26 +62,6 @@ var sendtophone = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
detectEmail: function ( email ){
|
|
||||||
var exEmail=/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
|
|
||||||
return email.match(exEmail);
|
|
||||||
},
|
|
||||||
|
|
||||||
selectText: function (){
|
|
||||||
var input = gContextMenu.target;
|
|
||||||
if (gContextMenu.onTextInput && input && input.value)
|
|
||||||
{
|
|
||||||
selectedText = input.value.substring(input.selectionStart, input.selectionEnd);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Get the selection from the correct iframe
|
|
||||||
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
||||||
selectedText = focusedWindow.getSelection().toString();
|
|
||||||
}
|
|
||||||
return selectedText;
|
|
||||||
},
|
|
||||||
|
|
||||||
onMenuItemCommand: function(e, type)
|
onMenuItemCommand: function(e, type)
|
||||||
{
|
{
|
||||||
var title, url, selection = '';
|
var title, url, selection = '';
|
||||||
@@ -119,12 +99,17 @@ var sendtophone = {
|
|||||||
case 'text':
|
case 'text':
|
||||||
title = "Selection";
|
title = "Selection";
|
||||||
url = 'http://google.com/';
|
url = 'http://google.com/';
|
||||||
selection = this.selectText();
|
var input = gContextMenu.target;
|
||||||
|
if (gContextMenu.onTextInput && input && input.value)
|
||||||
case 'email':
|
{
|
||||||
title = "Selected EMail Address";
|
selection = input.value.substring(input.selectionStart, input.selectionEnd);
|
||||||
url = "mailto:"+this.selectText();
|
}
|
||||||
selection = "";
|
else
|
||||||
|
{
|
||||||
|
// Get the selection from the correct iframe
|
||||||
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
||||||
|
selection = focusedWindow.getSelection().toString();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'pageButton':
|
case 'pageButton':
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Odeslat video do telefonu">
|
<!ENTITY sendtophoneContextVideo.label "Odeslat video do telefonu">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<!ENTITY sendtophoneToolbarButton.label "Fox To Phone">
|
<!ENTITY sendtophoneToolbarButton.label "Fox to Phone">
|
||||||
<!ENTITY sendtophoneToolbarButton.tooltip "Diese Seite auf Ihr Android Gerät schicken.">
|
<!ENTITY sendtophoneToolbarButton.tooltip "Diese Seite auf Ihr Android Gerät schicken.">
|
||||||
<!ENTITY sendtophoneContext.label "Link auf Android senden">
|
<!ENTITY sendtophoneContext.label "Link auf Android senden">
|
||||||
<!ENTITY sendtophoneContext.accesskey "A">
|
<!ENTITY sendtophoneContext.accesskey "A">
|
||||||
@@ -10,18 +10,15 @@
|
|||||||
<!ENTITY sendtophoneContextPage.accesskey "A">
|
<!ENTITY sendtophoneContextPage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextLogout.label "Abmelden">
|
<!ENTITY sendtophoneContextLogout.label "Abmelden">
|
||||||
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
<!ENTITY sendtophoneOptions.title "Fox To Phone Einstellungen">
|
<!ENTITY sendtophoneOptions.title "Send To Phone Einstellungen">
|
||||||
<!ENTITY sendtophoneProtocols.label "Protokolle">
|
<!ENTITY sendtophoneProtocols.label "Protokolle">
|
||||||
<!ENTITY sendtophoneContextSendFile.label "Dateien senden ...">
|
<!ENTITY sendtophoneContextSendFile.label "Send files...">
|
||||||
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
||||||
<!ENTITY sendtophoneContextSendFolder.label "Send Ordner ...">
|
<!ENTITY sendtophoneContextSendFolder.label "Send folder...">
|
||||||
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
||||||
<!ENTITY sendtophoneContextQrImage.label "Send dekodiert QR Link zum Android">
|
<!ENTITY sendtophoneContextQrImage.label "Send decoded QR Link to Android">
|
||||||
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.label "Send Merkzettel">
|
<!ENTITY sendtophoneContextSendClipboard.label "Send Clipboard">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Senden Video zum Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Senden Email zum Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,13 +11,13 @@ marketLink=Market Link
|
|||||||
smsLink=SMS-Nummer
|
smsLink=SMS-Nummer
|
||||||
smstoLink=SMS-Nummer
|
smstoLink=SMS-Nummer
|
||||||
telLink=Telefonnummer
|
telLink=Telefonnummer
|
||||||
InvalidFile=Nicht eine gültige Datei
|
InvalidFile=Not a valid file
|
||||||
SendFileToPhone=Senden Sie Dateien auf Ihr Handy.
|
SendFileToPhone=Send files to your phone.
|
||||||
SendFolderToPhone=Senden Sie einen Ordner auf Ihrem Telefon.
|
SendFolderToPhone=Send a folder to your phone.
|
||||||
qrTitle=QR-Bild Link
|
qrTitle=QR Image Link
|
||||||
ConfirmQR=Ein QR-Bild wurde erkannt\n"%s"\nMöchten Sie senden möchten, dass anstelle der Seite?
|
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
||||||
RememberMyDecision=Auswahl merken
|
RememberMyDecision=Auswahl merken
|
||||||
qrContextMenu=Senden "%s" auf Android
|
qrContextMenu=Send "%s" to Android
|
||||||
FileUploadsDisabled=Es ist nicht möglich, Dateien auf das Telefon laden.
|
FileUploadsDisabled=It's not possible to upload files to the phone.
|
||||||
FileTooBig=Die Datei ist zu groß.
|
FileTooBig=The file is too big.
|
||||||
videoTitle=Video Link
|
videoTitle=Video Link
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<!ENTITY compressing.label "Komprimieren von Ordner">
|
<!ENTITY compressing.label "Compressing folder">
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Enviar video a Android">
|
<!ENTITY sendtophoneContextVideo.label "Enviar video a Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ SendFileToPhone=Send files to your phone.
|
|||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=Send a folder to your phone.
|
||||||
qrTitle=QR Image Link
|
qrTitle=QR Image Link
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
||||||
|
RememberMyDecision=Se souvenir de mon choix
|
||||||
qrContextMenu=Send "%s" to Android
|
qrContextMenu=Send "%s" to Android
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
FileUploadsDisabled=It's not possible to upload files to the phone.
|
||||||
FileTooBig=The file is too big.
|
FileTooBig=The file is too big.
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Seol Video chun Android">
|
<!ENTITY sendtophoneContextVideo.label "Seol Video chun Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Seol riomhpost chun Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -11,12 +11,13 @@ marketLink=Nasc chuig an Margadh
|
|||||||
smsLink=Uimhir SMS
|
smsLink=Uimhir SMS
|
||||||
smstoLink=Uimhir SMS
|
smstoLink=Uimhir SMS
|
||||||
telLink=Uimhir Theileafóin
|
telLink=Uimhir Theileafóin
|
||||||
InvalidFile=Not a valid file
|
InvalidFile=Gan comhad bailí
|
||||||
SendFileToPhone=Send files to your phone.
|
SendFileToPhone=Seol comhad ar do ghuthán.
|
||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=Seol an fhillteáin le do ghuthán.
|
||||||
qrTitle=QR Image Link
|
qrTitle=Nasc íomhá QR
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=Tá an íomhá QR a bhraitear\n"%s"\nAn bhfuil tú ag iarraidh a sheoladh go in ionad an leathanach seo?
|
||||||
qrContextMenu=Send "%s" to Android
|
RememberMyDecision=Cuimhnigh mo chinneadh
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
qrContextMenu=Seol "%s" ar do ghuthán.
|
||||||
FileTooBig=The file is too big.
|
FileUploadsDisabled=Níl sé indéanta chun comhaid a uaslódáil chuig an bhfón.
|
||||||
|
FileTooBig=Tá an comhad ró-mhór.
|
||||||
videoTitle=Nasc Video
|
videoTitle=Nasc Video
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Videó küldése az Androidra">
|
<!ENTITY sendtophoneContextVideo.label "Videó küldése az Androidra">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -1,26 +1,24 @@
|
|||||||
<!ENTITY sendtophoneToolbarButton.label "電話に送信">
|
<!ENTITY sendtophoneToolbarButton.label "Fox To Phone">
|
||||||
<!ENTITY sendtophoneToolbarButton.tooltip "送信あなたのAndroid携帯電話にこのページ">
|
<!ENTITY sendtophoneToolbarButton.tooltip "このページを Android に送信">
|
||||||
<!ENTITY sendtophoneContext.label "Androidへの送信このリンク">
|
<!ENTITY sendtophoneContext.label "リンクを Android に送信">
|
||||||
<!ENTITY sendtophoneContext.accesskey "A">
|
<!ENTITY sendtophoneContext.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextImage.label "Send this image to Android">
|
<!ENTITY sendtophoneContextImage.label "画像を Android に送信">
|
||||||
<!ENTITY sendtophoneContextImage.accesskey "A">
|
<!ENTITY sendtophoneContextImage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextText.label "Send this text to Android">
|
<!ENTITY sendtophoneContextText.label "選択したテキストを Android に送信">
|
||||||
<!ENTITY sendtophoneContextText.accesskey "A">
|
<!ENTITY sendtophoneContextText.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextPage.label "Send this page to Android">
|
<!ENTITY sendtophoneContextPage.label "このページを Android に送信">
|
||||||
<!ENTITY sendtophoneContextPage.accesskey "A">
|
<!ENTITY sendtophoneContextPage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextLogout.label "Logout">
|
<!ENTITY sendtophoneContextLogout.label "ログアウト">
|
||||||
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
<!ENTITY sendtophoneOptions.title "Fox to Phone Preferences">
|
<!ENTITY sendtophoneOptions.title "Fox to Phone の設定">
|
||||||
<!ENTITY sendtophoneProtocols.label "Protocols">
|
<!ENTITY sendtophoneProtocols.label "プロトコル">
|
||||||
<!ENTITY sendtophoneContextSendFile.label "Send files...">
|
<!ENTITY sendtophoneContextSendFile.label "送信するファイル...">
|
||||||
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
||||||
<!ENTITY sendtophoneContextSendFolder.label "Send folder...">
|
<!ENTITY sendtophoneContextSendFolder.label "送信するフォルダ...">
|
||||||
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
||||||
<!ENTITY sendtophoneContextQrImage.label "Send decoded QR Link to Android">
|
<!ENTITY sendtophoneContextQrImage.label "解読した QR リンクを Android に送信">
|
||||||
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.label "Send Clipboard">
|
<!ENTITY sendtophoneContextSendClipboard.label "クリップボードを Android に送信">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "動画を Android に送信">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -1,22 +1,23 @@
|
|||||||
extensions.sendtophone@martinezdelizarrondo.com.description=送信Android電話機に現在のページ
|
extensions.sendtophone@martinezdelizarrondo.com.description=読んでいるページを Android 携帯へ送信します
|
||||||
SendToPhoneTitle=送信する電話
|
SendToPhoneTitle=Fox To Phone
|
||||||
InvalidScheme=無効なスキームは、ちょうどはhttp://またはhttps://のリンクを送ってください。
|
InvalidScheme=無効なスキームです。http:// か https:// のリンクを送って下さい。
|
||||||
InfoSent=リンクはあなたの携帯電話に送信されています。
|
InfoSent=リンクを携帯電話に送信しています。
|
||||||
ErrorOnSend=これは、送信に失敗しました:
|
ErrorOnSend=送信エラーが発生:
|
||||||
LoginRequired=ログインリンクを送信するために必要です。
|
LoginRequired=リンクを送信するためにログインが必要です。
|
||||||
LoginSuccessful=あなたはログインしている
|
LoginSuccessful=ログインしました。
|
||||||
DeviceNotRegistered=は あなたの携帯電話にこのGmailアカウントに登録chrometophone.apkをインストールする必要があります
|
DeviceNotRegistered=この Gmail アカウントを登録している携帯電話に chrometophone.apk をインストールして下さい
|
||||||
LogoutSuccessful=あなたが記録されます。
|
LogoutSuccessful=ログアウトしました
|
||||||
marketLink=市場へのリンク
|
marketLink=マーケットへのリンク
|
||||||
smsLink=SMSの番号
|
smsLink=SMS番号
|
||||||
smstoLink=SMSの番号
|
smstoLink=SMS番号
|
||||||
telLink=電話番号
|
telLink=電話番号
|
||||||
InvalidFile=Not a valid file
|
InvalidFile=無効なファイル
|
||||||
SendFileToPhone=Send files to your phone.
|
SendFileToPhone=ファイルを携帯電話へ送信します。
|
||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=フォルダを携帯電話へ送信します。
|
||||||
qrTitle=QR Image Link
|
qrTitle=QR 画像リンク
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=QR 画像が解読されました\n"%s"\nこれをページの代わりに送信しますか?
|
||||||
qrContextMenu=Send "%s" to Android
|
RememberMyDecision=決定を記憶
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
qrContextMenu="%s" を Android に送信
|
||||||
FileTooBig=The file is too big.
|
FileUploadsDisabled=このファイルは携帯電話へアップロード出来ません。
|
||||||
videoTitle=Video Link
|
FileTooBig=このファイルは大きすぎます。
|
||||||
|
videoTitle=動画リンク
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<!ENTITY compressing.label "Compressing folder">
|
<!ENTITY compressing.label "フォルダを圧縮">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<!ENTITY sendtophoneToolbarButton.label "Verzenden naar telefoon">
|
<!ENTITY sendtophoneToolbarButton.label "Fox to Phone">
|
||||||
<!ENTITY sendtophoneToolbarButton.tooltip "Verzend deze pagina naar uw Android-telefoon">
|
<!ENTITY sendtophoneToolbarButton.tooltip "Verzend deze pagina naar uw Android-telefoon">
|
||||||
<!ENTITY sendtophoneContext.label "Deze koppeling naar Android verzenden">
|
<!ENTITY sendtophoneContext.label "Deze koppeling naar Android verzenden">
|
||||||
<!ENTITY sendtophoneContext.accesskey "A">
|
<!ENTITY sendtophoneContext.accesskey "A">
|
||||||
@@ -10,13 +10,15 @@
|
|||||||
<!ENTITY sendtophoneContextPage.accesskey "A">
|
<!ENTITY sendtophoneContextPage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextLogout.label "Afmelden">
|
<!ENTITY sendtophoneContextLogout.label "Afmelden">
|
||||||
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
<!ENTITY sendtophoneOptions.title "Voorkeuren voor verzenden naar telefoon">
|
<!ENTITY sendtophoneOptions.title "Fox to Phone-voorkeuren">
|
||||||
<!ENTITY sendtophoneProtocols.label "Protocollen">
|
<!ENTITY sendtophoneProtocols.label "Protocollen">
|
||||||
<!ENTITY sendtophoneContextSendFile.label "Send files...">
|
<!ENTITY sendtophoneContextSendFile.label "Bestanden verzenden…">
|
||||||
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
<!ENTITY sendtophoneContextSendFile.accesskey "z">
|
||||||
<!ENTITY sendtophoneContextSendFolder.label "Send folder...">
|
<!ENTITY sendtophoneContextSendFolder.label "Map verzenden…">
|
||||||
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
<!ENTITY sendtophoneContextSendFolder.accesskey "M">
|
||||||
<!ENTITY sendtophoneContextQrImage.label "Send decoded QR Link to Android">
|
<!ENTITY sendtophoneContextQrImage.label "Gedecodeerde QR-koppeling naar Android verzenden">
|
||||||
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
<!ENTITY sendtophoneContextSendClipboard.label "Klembord verzenden">
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "K">
|
||||||
|
<!ENTITY sendtophoneContextVideo.label "Video naar Android verzenden">
|
||||||
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
extensions.sendtophone@martinezdelizarrondo.com.description=Verzendt de huidige pagina naar uw Android-telefoon
|
extensions.sendtophone@martinezdelizarrondo.com.description=Verzendt de huidige pagina naar uw Android-telefoon
|
||||||
SendToPhoneTitle=Verzenden naar telefoon
|
SendToPhoneTitle=Fox to Phone
|
||||||
InvalidScheme=Ongeldig protocol, verzend a.u.b. alleen koppelingen van het type http:// of https://.
|
InvalidScheme=Ongeldig protocol, verzend a.u.b. alleen koppelingen van het type http:// of https://.
|
||||||
InfoSent=De koppeling is verzonden naar uw telefoon.
|
InfoSent=De koppeling is verzonden naar uw telefoon.
|
||||||
ErrorOnSend=Er is een fout opgetreden bij het verzenden:
|
ErrorOnSend=Er is een fout opgetreden bij het verzenden:
|
||||||
@@ -11,12 +11,13 @@ marketLink=Marktkoppeling
|
|||||||
smsLink=SMS-nummer
|
smsLink=SMS-nummer
|
||||||
smstoLink=SMS-nummer
|
smstoLink=SMS-nummer
|
||||||
telLink=Telefoonnummer
|
telLink=Telefoonnummer
|
||||||
InvalidFile=Not a valid file
|
InvalidFile=Geen geldig bestand
|
||||||
SendFileToPhone=Send files to your phone.
|
SendFileToPhone=Bestanden naar uw telefoon verzenden.
|
||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=Een map naar uw telefoon verzenden.
|
||||||
qrTitle=QR Image Link
|
qrTitle=QR-afbeeldingskoppeling
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=Er is een QR-afbeelding gedetecteerd\n“%s”\nWilt u deze verzenden in plaats van de pagina?
|
||||||
qrContextMenu=Send "%s" to Android
|
RememberMyDecision=Mijn keuze onthouden
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
qrContextMenu=“%s” naar Android verzenden
|
||||||
FileTooBig=The file is too big.
|
FileUploadsDisabled=Het is niet mogelijk om bestanden naar de telefoon te uploaden.
|
||||||
videoTitle=Video Link
|
FileTooBig=Het bestand is te groot.
|
||||||
|
videoTitle=Videokoppeling
|
||||||
|
|||||||
24
third_party/firefox_sendtophone/chrome/locale/pt-BR/overlay.dtd
vendored
Normal file
24
third_party/firefox_sendtophone/chrome/locale/pt-BR/overlay.dtd
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<!ENTITY sendtophoneToolbarButton.label "Fox To Phone">
|
||||||
|
<!ENTITY sendtophoneToolbarButton.tooltip "Envia esta página para seu celular Android">
|
||||||
|
<!ENTITY sendtophoneContext.label "Enviar este link para o Android">
|
||||||
|
<!ENTITY sendtophoneContext.accesskey "l">
|
||||||
|
<!ENTITY sendtophoneContextImage.label "Enviar esta imagem para o Android">
|
||||||
|
<!ENTITY sendtophoneContextImage.accesskey "i">
|
||||||
|
<!ENTITY sendtophoneContextText.label "Enviar este texto para o Android">
|
||||||
|
<!ENTITY sendtophoneContextText.accesskey "t">
|
||||||
|
<!ENTITY sendtophoneContextPage.label "Enviar esta página para o Android">
|
||||||
|
<!ENTITY sendtophoneContextPage.accesskey "g">
|
||||||
|
<!ENTITY sendtophoneContextLogout.label "Logout">
|
||||||
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
|
<!ENTITY sendtophoneOptions.title "Preferências do Fox To Phone">
|
||||||
|
<!ENTITY sendtophoneProtocols.label "Protocolos">
|
||||||
|
<!ENTITY sendtophoneContextSendFile.label "Enviar arquivos...">
|
||||||
|
<!ENTITY sendtophoneContextSendFile.accesskey "a">
|
||||||
|
<!ENTITY sendtophoneContextSendFolder.label "Enviar pasta...">
|
||||||
|
<!ENTITY sendtophoneContextSendFolder.accesskey "p">
|
||||||
|
<!ENTITY sendtophoneContextQrImage.label "Enviar link QR decodificado para o Android">
|
||||||
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
|
<!ENTITY sendtophoneContextSendClipboard.label "Enviar área de transferência">
|
||||||
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "t">
|
||||||
|
<!ENTITY sendtophoneContextVideo.label "Enviar vídeo para o Android">
|
||||||
|
<!ENTITY sendtophoneContextVideo.accesskey "v">
|
||||||
23
third_party/firefox_sendtophone/chrome/locale/pt-BR/overlay.properties
vendored
Normal file
23
third_party/firefox_sendtophone/chrome/locale/pt-BR/overlay.properties
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
extensions.sendtophone@martinezdelizarrondo.com.description=Envia a página atual para seu celular Android
|
||||||
|
SendToPhoneTitle=Fox To Phone
|
||||||
|
InvalidScheme=Esquema inválido. Por favor, só envie links http:// ou https://
|
||||||
|
InfoSent=O link foi enviado para seu celular.
|
||||||
|
ErrorOnSend=Houve um erro ao enviar:
|
||||||
|
LoginRequired=É necessário fazer login para enviar o link.
|
||||||
|
LoginSuccessful=Você se logou.
|
||||||
|
DeviceNotRegistered=Você deve instalar o chrometophone.apk no celular registrado com essa conta do GMail
|
||||||
|
LogoutSuccessful=Você se deslogou
|
||||||
|
marketLink=Link de mercado
|
||||||
|
smsLink=Número SMS
|
||||||
|
smstoLink=Número SMS
|
||||||
|
telLink=Número do celular
|
||||||
|
InvalidFile=Não é um arquivo válido
|
||||||
|
SendFileToPhone=Enviar arquivos para seu celular.
|
||||||
|
SendFolderToPhone=Enviar uma pasta para seu celular.
|
||||||
|
qrTitle=Link de imagem QR
|
||||||
|
ConfirmQR=Uma imagem QR foi detectada\n"%s"\nVocê quer enviá-la ao invés da página?
|
||||||
|
RememberMyDecision=Lembrar minha decisão
|
||||||
|
qrContextMenu=Enviar "%s" para o Android
|
||||||
|
FileUploadsDisabled=Não é possível enviar arquivos para o celular.
|
||||||
|
FileTooBig=O arquivo é grande demais.
|
||||||
|
videoTitle=Link para vídeo
|
||||||
1
third_party/firefox_sendtophone/chrome/locale/pt-BR/uploads.dtd
vendored
Normal file
1
third_party/firefox_sendtophone/chrome/locale/pt-BR/uploads.dtd
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!ENTITY compressing.label "Compactando pasta">
|
||||||
@@ -1,26 +1,24 @@
|
|||||||
<!ENTITY sendtophoneToolbarButton.label "Отправить на телефон">
|
<!ENTITY sendtophoneToolbarButton.label "Fox To Phone">
|
||||||
<!ENTITY sendtophoneToolbarButton.tooltip "Отправить эту страницу к Android телефон">
|
<!ENTITY sendtophoneToolbarButton.tooltip "Отправить страницу в телефон">
|
||||||
<!ENTITY sendtophoneContext.label "Отправить ссылку Android">
|
<!ENTITY sendtophoneContext.label "Отправить ссылку в телефон">
|
||||||
<!ENTITY sendtophoneContext.accesskey "A">
|
<!ENTITY sendtophoneContext.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextImage.label "Послать это изображение Android">
|
<!ENTITY sendtophoneContextImage.label "Послать картинку в телефон">
|
||||||
<!ENTITY sendtophoneContextImage.accesskey "A">
|
<!ENTITY sendtophoneContextImage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextText.label "Отправить этот текст Android">
|
<!ENTITY sendtophoneContextText.label "Отправить текст в телефон">
|
||||||
<!ENTITY sendtophoneContextText.accesskey "A">
|
<!ENTITY sendtophoneContextText.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextPage.label "Отправить эту страницу по Android">
|
<!ENTITY sendtophoneContextPage.label "Отправить страницу в телефон">
|
||||||
<!ENTITY sendtophoneContextPage.accesskey "A">
|
<!ENTITY sendtophoneContextPage.accesskey "A">
|
||||||
<!ENTITY sendtophoneContextLogout.label "Выйти">
|
<!ENTITY sendtophoneContextLogout.label "Выйти">
|
||||||
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
<!ENTITY sendtophoneOptions.title "Fox To Phone Preferences">
|
<!ENTITY sendtophoneOptions.title "Настройки Fox To Phone">
|
||||||
<!ENTITY sendtophoneProtocols.label "Protocols">
|
<!ENTITY sendtophoneProtocols.label "Протоколы">
|
||||||
<!ENTITY sendtophoneContextSendFile.label "Send files...">
|
<!ENTITY sendtophoneContextSendFile.label "Отправить файл(ы)…">
|
||||||
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
||||||
<!ENTITY sendtophoneContextSendFolder.label "Send folder...">
|
<!ENTITY sendtophoneContextSendFolder.label "Отправить папку…">
|
||||||
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
||||||
<!ENTITY sendtophoneContextQrImage.label "Send decoded QR Link to Android">
|
<!ENTITY sendtophoneContextQrImage.label "Отправить QR-ссылку в телефон">
|
||||||
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.label "Send Clipboard">
|
<!ENTITY sendtophoneContextSendClipboard.label "Отправить содержимое буфера обмена в телефон">
|
||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Отправить видео в телефон">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -1,22 +1,23 @@
|
|||||||
extensions.sendtophone@martinezdelizarrondo.com.description=Отправляет текущую страницу в ваш телефон
|
extensions.sendtophone@martinezdelizarrondo.com.description=Отправляет страницу в телефон
|
||||||
SendToPhoneTitle=Отправить на телефон
|
SendToPhoneTitle=Отправить в телефон
|
||||||
InvalidScheme=Неверный схеме, пожалуйста, только отправить http:// или https: / / ссылки.
|
InvalidScheme=Неверная ссылка. Отправлять можно только http и https ссылки
|
||||||
InfoSent=Ссылку был отправлен на телефон.
|
InfoSent=Ссылка была отправлен в телефон
|
||||||
ErrorOnSend=Существовал ошибка отправки:
|
ErrorOnSend=Ошибка отправки:
|
||||||
LoginRequired=Войти необходимо отправить ссылку.
|
LoginRequired=Необходимо войти на сайт Google для отправки ссылки
|
||||||
LoginSuccessful=Вы прошли идентификацию
|
LoginSuccessful=Вы вошли на сайт Google
|
||||||
DeviceNotRegistered=Вы должны установить chrometophone.apk телефона зарегистрирован на этот счет GMail
|
DeviceNotRegistered=Установите chrometophone.apk на Ваш телефон и зарегистрируйте в нем ваш Google-аккаунт
|
||||||
LogoutSuccessful=Вы вышли из системы
|
LogoutSuccessful=Вы вышли из системы
|
||||||
marketLink=Рынок Ссылка
|
marketLink=Ссылка на Market
|
||||||
smsLink=Количество SMS
|
smsLink=Телефон для отправки SMS
|
||||||
smstoLink=Количество SMS
|
smstoLink=Телефон для отправки SMS
|
||||||
telLink=номер телефона
|
telLink=Номер телефона
|
||||||
InvalidFile=Not a valid file
|
InvalidFile=Неправильный файл
|
||||||
SendFileToPhone=Send files to your phone.
|
SendFileToPhone=Отправить файл(ы) в телефон
|
||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=Отправить папку в телефон
|
||||||
qrTitle=QR Image Link
|
qrTitle=QR-ссылка
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=Обнаружена картинка с QR-ссылкой.\n"%s"\nВы хотите отправить ссылку вместо страницы?
|
||||||
qrContextMenu=Send "%s" to Android
|
RememberMyDecision=Запомнить выбор
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
qrContextMenu=Отправить "%s" в телефон
|
||||||
FileTooBig=The file is too big.
|
FileUploadsDisabled=Невозможно загрузить файл(ы) на телефон
|
||||||
videoTitle=Video Link
|
FileTooBig=Файл слишком большой
|
||||||
|
videoTitle=Ссылка на видео
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<!ENTITY compressing.label "Compressing folder">
|
<!ENTITY compressing.label "Сжатие папки">
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "Т">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "Т">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Пошаљи видео на Андроид">
|
<!ENTITY sendtophoneContextVideo.label "Пошаљи видео на Андроид">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "Д">
|
<!ENTITY sendtophoneContextVideo.accesskey "Д">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<!ENTITY compressing.label "Compressing folder">
|
<!ENTITY compressing.label "Сажимање фасцикле">
|
||||||
|
|||||||
@@ -22,5 +22,3 @@
|
|||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ SendFileToPhone=Send files to your phone.
|
|||||||
SendFolderToPhone=Send a folder to your phone.
|
SendFolderToPhone=Send a folder to your phone.
|
||||||
qrTitle=QR Image Link
|
qrTitle=QR Image Link
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
||||||
|
RememberMyDecision=Remember my decision
|
||||||
qrContextMenu=Send "%s" to Android
|
qrContextMenu=Send "%s" to Android
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
FileUploadsDisabled=It's not possible to upload files to the phone.
|
||||||
FileTooBig=The file is too big.
|
FileTooBig=The file is too big.
|
||||||
|
|||||||
24
third_party/firefox_sendtophone/chrome/locale/zh-CN/overlay.dtd
vendored
Normal file
24
third_party/firefox_sendtophone/chrome/locale/zh-CN/overlay.dtd
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<!ENTITY sendtophoneToolbarButton.label "Fox To Phone<6E><65><EFBFBD><EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneToolbarButton.tooltip "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD>浽<EFBFBD><E6B5BD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContext.label "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӵ<EFBFBD><D3B5><EFBFBD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContext.accesskey "A">
|
||||||
|
<!ENTITY sendtophoneContextImage.label "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼƬ<CDBC><C6AC><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextImage.accesskey "A">
|
||||||
|
<!ENTITY sendtophoneContextText.label "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ı<EFBFBD><C4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextText.accesskey "A">
|
||||||
|
<!ENTITY sendtophoneContextPage.label "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD>浽<EFBFBD><E6B5BD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextPage.accesskey "A">
|
||||||
|
<!ENTITY sendtophoneContextLogout.label "<22>˳<EFBFBD><CBB3><EFBFBD>¼">
|
||||||
|
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
||||||
|
<!ENTITY sendtophoneOptions.title "Fox To Phone <20><><EFBFBD><EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneProtocols.label "Э<><D0AD>">
|
||||||
|
<!ENTITY sendtophoneContextSendFile.label "<22><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>...">
|
||||||
|
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
||||||
|
<!ENTITY sendtophoneContextSendFolder.label "<22><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>...">
|
||||||
|
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
||||||
|
<!ENTITY sendtophoneContextQrImage.label "<22>ѽ<EFBFBD><D1BD><EFBFBD><EFBFBD><EFBFBD>QR<51><52><EFBFBD>ӷ<EFBFBD><D3B7>͵<EFBFBD><CDB5><EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
||||||
|
<!ENTITY sendtophoneContextSendClipboard.label "<22><><EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
||||||
|
<!ENTITY sendtophoneContextVideo.label "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD><EFBFBD>İ<EFBFBD><EFBFBD>ֻ<EFBFBD>">
|
||||||
|
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
||||||
23
third_party/firefox_sendtophone/chrome/locale/zh-CN/overlay.properties
vendored
Normal file
23
third_party/firefox_sendtophone/chrome/locale/zh-CN/overlay.properties
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
extensions.sendtophone@martinezdelizarrondo.com.description=发送当前页面到您的Android手机
|
||||||
|
SendToPhoneTitle=Fox To Phone
|
||||||
|
InvalidScheme=无效的计划,请只发送http://或https:/ /链接。
|
||||||
|
InfoSent=该链接已发送到您的手机。
|
||||||
|
ErrorOnSend=发生一个错误发送:
|
||||||
|
LoginRequired=登录后才可发送链接。
|
||||||
|
LoginSuccessful=您已登录
|
||||||
|
DeviceNotRegistered=您必须安装chrometophone.apk在您的手机从而注册此Gmail帐户
|
||||||
|
LogoutSuccessful=您已经登出
|
||||||
|
marketLink=市场链接
|
||||||
|
smsLink=SMS号码
|
||||||
|
smstoLink=SMS号码
|
||||||
|
telLink=电话号码
|
||||||
|
InvalidFile=不是一个有效的文件
|
||||||
|
SendFileToPhone=发送文件到您的手机。
|
||||||
|
SendFolderToPhone=发送到您的手机文件夹。
|
||||||
|
qrTitle=QR图像链接
|
||||||
|
ConfirmQR=一个QR图像被检测到了\n"%s"\n发送QR图像代替此页?
|
||||||
|
RememberMyDecision=记住我的决定
|
||||||
|
qrContextMenu=发送“%s”给Android
|
||||||
|
FileUploadsDisabled=不能上传文件到手机上。
|
||||||
|
FileTooBig=该文件太大了。
|
||||||
|
videoTitle=视频链接
|
||||||
1
third_party/firefox_sendtophone/chrome/locale/zh-CN/uploads.dtd
vendored
Normal file
1
third_party/firefox_sendtophone/chrome/locale/zh-CN/uploads.dtd
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!ENTITY compressing.label "ѹ<><D1B9><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>">
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
<!ENTITY sendtophoneToolbarButton.label "发送到手机">
|
|
||||||
<!ENTITY sendtophoneToolbarButton.tooltip "发送给你的Android手机页面">
|
|
||||||
<!ENTITY sendtophoneContext.label "此链接发送到Android">
|
|
||||||
<!ENTITY sendtophoneContext.accesskey "A">
|
|
||||||
<!ENTITY sendtophoneContextImage.label "Send this image to Android">
|
|
||||||
<!ENTITY sendtophoneContextImage.accesskey "A">
|
|
||||||
<!ENTITY sendtophoneContextText.label "Send this text to Android">
|
|
||||||
<!ENTITY sendtophoneContextText.accesskey "A">
|
|
||||||
<!ENTITY sendtophoneContextPage.label "Send this page to Android">
|
|
||||||
<!ENTITY sendtophoneContextPage.accesskey "A">
|
|
||||||
<!ENTITY sendtophoneContextLogout.label "Logout">
|
|
||||||
<!ENTITY sendtophoneContextLogout.accesskey "L">
|
|
||||||
<!ENTITY sendtophoneOptions.title "Fox To Phone Preferences">
|
|
||||||
<!ENTITY sendtophoneProtocols.label "Protocols">
|
|
||||||
<!ENTITY sendtophoneContextSendFile.label "Send files...">
|
|
||||||
<!ENTITY sendtophoneContextSendFile.accesskey "S">
|
|
||||||
<!ENTITY sendtophoneContextSendFolder.label "Send folder...">
|
|
||||||
<!ENTITY sendtophoneContextSendFolder.accesskey "F">
|
|
||||||
<!ENTITY sendtophoneContextQrImage.label "Send decoded QR Link to Android">
|
|
||||||
<!ENTITY sendtophoneContextQrImage.accesskey "Q">
|
|
||||||
<!ENTITY sendtophoneContextSendClipboard.label "Send Clipboard">
|
|
||||||
<!ENTITY sendtophoneContextSendClipboard.accesskey "C">
|
|
||||||
<!ENTITY sendtophoneContextVideo.label "Send Video to Android">
|
|
||||||
<!ENTITY sendtophoneContextVideo.accesskey "V">
|
|
||||||
<!ENTITY sendtophoneContextEmail.label "Send this email to Android">
|
|
||||||
<!ENTITY sendtophoneContextEmail.accesskey "E">
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
extensions.sendtophone@martinezdelizarrondo.com.description=发送当前页面到您的手机机器人
|
|
||||||
SendToPhoneTitle=发送到手机
|
|
||||||
InvalidScheme=无效的计划,请你只发送http://或https://联系。
|
|
||||||
InfoSent=该链接已发送到您的手机。
|
|
||||||
ErrorOnSend=它没有发送:
|
|
||||||
LoginRequired=登录后才可发送的链接。
|
|
||||||
LoginSuccessful=你登录
|
|
||||||
DeviceNotRegistered=您必须安装到手机上的chrometophone.apk注册此Gmail帐户
|
|
||||||
LogoutSuccessful=你是登出
|
|
||||||
marketLink=市场链接
|
|
||||||
smsLink=短信号码
|
|
||||||
smstoLink=短信号码
|
|
||||||
telLink=电话号码
|
|
||||||
InvalidFile=Not a valid file
|
|
||||||
SendFileToPhone=Send files to your phone.
|
|
||||||
SendFolderToPhone=Send a folder to your phone.
|
|
||||||
qrTitle=QR Image Link
|
|
||||||
ConfirmQR=A QR image has been detected\n"%s"\nDo you want to send that instead of the page?
|
|
||||||
qrContextMenu=Send "%s" to Android
|
|
||||||
FileUploadsDisabled=It's not possible to upload files to the phone.
|
|
||||||
FileTooBig=The file is too big.
|
|
||||||
videoTitle=Video Link
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<!ENTITY compressing.label "Compressing folder">
|
|
||||||
6
third_party/firefox_sendtophone/install.rdf
vendored
6
third_party/firefox_sendtophone/install.rdf
vendored
@@ -4,7 +4,7 @@
|
|||||||
<em:id>sendtophone@martinezdelizarrondo.com</em:id>
|
<em:id>sendtophone@martinezdelizarrondo.com</em:id>
|
||||||
<em:type>2</em:type>
|
<em:type>2</em:type>
|
||||||
<em:name>Fox To Phone</em:name>
|
<em:name>Fox To Phone</em:name>
|
||||||
<em:version>1.2</em:version>
|
<em:version>1.1.2</em:version>
|
||||||
<em:creator>Alfonso & Patrick</em:creator>
|
<em:creator>Alfonso & Patrick</em:creator>
|
||||||
<em:description>Send links to your Android 2.2 phone using the new C2DM service. Based on the ChromeToPhone extension.</em:description>
|
<em:description>Send links to your Android 2.2 phone using the new C2DM service. Based on the ChromeToPhone extension.</em:description>
|
||||||
|
|
||||||
@@ -17,6 +17,10 @@
|
|||||||
<em:contributor>Emanuel S. (German)</em:contributor>
|
<em:contributor>Emanuel S. (German)</em:contributor>
|
||||||
<em:contributor>ДакСРБИЈА (Serbian)</em:contributor>
|
<em:contributor>ДакСРБИЈА (Serbian)</em:contributor>
|
||||||
<em:contributor>Martin Zubek (Czech)</em:contributor>
|
<em:contributor>Martin Zubek (Czech)</em:contributor>
|
||||||
|
<em:contributor>mjy (Japanese)</em:contributor>
|
||||||
|
<em:contributor>Marcelo Ghelman (ghelman.net) (Portuguese (Brazilian))</em:contributor>
|
||||||
|
<em:contributor>LA (Russian)</em:contributor>
|
||||||
|
<em:contributor>yongdong7 (Chinese simplified)</em:contributor>
|
||||||
|
|
||||||
<em:targetApplication>
|
<em:targetApplication>
|
||||||
<Description>
|
<Description>
|
||||||
|
|||||||
Reference in New Issue
Block a user