Welcome Guest ( Log In | Register )


Recommended Addon
sponsored link
Sponsored link

 
Reply to this topicStart new topic
> Suggest-Me - Ver. 0.2.7, Updated: 09/02/2012
i01000001
post Feb 22 2012, 07:55
Post #1


Newbie
*

Group: Members
Posts: 0
Joined: 9-February 12
Member No.: 18.208


Extension Developer: Yes
Translator for [No translator]
My OS Gnu/Linux



Maintainer: i01000001
Creator: i01000001

Ext. Version: 0.2.7
Release date: 0000-00-00
Description: Don't Repeat Yourself (DRY) when you type same words, sentences or paragraphs again on Facebook, Way2sms and other such websites; just get them as suggestions in a neat dropdown below the box you are typing! Typed on one website works on many !!!
Extension is compatible to: ( 6.0 -10.*)

Included locales: en-US

View on WTS -- Download the extension
Go to the top of the page
 
+Quote Post
markh
post Feb 22 2012, 08:11
Post #2


BZ Jungle Guide
Group Icon

Group: Admin
Posts: 3.897
Joined: 24-April 06
From: the culinary and touristically unchallenged parts of the Netherlands
Member No.: 1.264


Extension Developer: No
Translator for Dutch (nl)
My OS Windows
Translation Credits to markh van BabelZilla.org



A belated welcome! welcomeani.gif

Just a bit of information for you: in case you have some queries about the WTS, you can find our Wiki here!

In case you're looking for a specific translator, please see the list of available translators on BabelZilla.
When you select the desired one, you can send him/her a P.M. or an e-mail (if and when public).

You may also insert a new Topic in the Help Section, in order to ask for specific translations, to write a general request about missing translations, etc.


--------------------
Don’t have to be beautiful but it helps

Go to the top of the page
 
+Quote Post
Goofy
post Feb 22 2012, 13:11
Post #3


Advanced Member
Group Icon

Group: Super Mod
Posts: 8.357
Joined: 30-July 05
From: GoofyLand
Member No.: 13


Extension Developer: Yes
Extensions: BabelZillaMenu-BabelZilla Glossary-OpenTran...
Translator for French (fr)
My OS Gnu/Linux
Translation Credits to Goofy



smile.gif This is a nice extension which could be very useful.
When testing the French version I noticed you should localize the Help line as well (browserOverlay.xul line 96)


--------------------
Think Global, Make Locales!



You like languages? You should contribute to Tatoeba project!

Sometimes I am on irc://moznet/BabelZilla
but you can also drop a word in the shoutbox
Go to the top of the page
 
+Quote Post
markh
post Feb 22 2012, 16:02
Post #4


BZ Jungle Guide
Group Icon

Group: Admin
Posts: 3.897
Joined: 24-April 06
From: the culinary and touristically unchallenged parts of the Netherlands
Member No.: 1.264


Extension Developer: No
Translator for Dutch (nl)
My OS Windows
Translation Credits to markh van BabelZilla.org



QUOTE (Goofy @ Feb 22 2012, 13:11) *
smile.gif This is a nice extension which could be very useful.
When testing the French version I noticed you should localize the Help line as well (browserOverlay.xul line 96)

The same goes for several lines for alert windows in browserOverlay.js:
CODE
window.alert("Changing filename failed: " + e.name + ": " + e.message);

CODE
window.alert("Cannot get DB Connection: " + e.name + ": " + e.message);

CODE
window.alert("Failed to create tables " + e.name + ": " + e.message);

CODE
window.alert("Failed to add drop down box " + e.name + ": " + e.message)

CODE
window.alert("Failed to add listeners " + e.name + ": " + e.message);

CODE
gBrowser.addTab("https://addons.mozilla.org/en-US/firefox/addon/suggest-me/");
(either localized or without locale indication)
CODE
window.alert("Failed to get firstrun " + e.name + ": " + e.message);

CODE
window.alert("Failed to set input for checking if whitelist exists: " + e.name + ": " + e.message);

CODE
window.alert("Failed to set input for fetching results: " + e.name + ": " + e.message);

CODE
window.alert("Failed to add options at " + loop + ": " + e.name + ": " + e.message);

CODE
window.alert("Failed to hide options at " + loop + ": " + e.name + ": " + e.message);

CODE
window.alert("Error while selecting suggestions: " + Error.message);

CODE
window.alert("Query canceled or aborted while selecting suggestions!");

CODE
window.alert("Failed to get matches: " + e.name + ": " + e.message);

CODE
window.alert("Error while selecting suggestions: " + Error.message);

CODE
window.alert("Query canceled or aborted while selecting suggestions!");

CODE
window.alert("Unable to delete particular cached entry: " + e.name + ": " + e.message);

CODE
window.alert("Failed to set input for checking if whitelist exists: " + e.name + ": " + e.message);

CODE
window.alert("Error while selecting suggestions: " + Error.message);

CODE
window.alert("Query canceled or aborted while selecting suggestions!");

CODE
window.alert("Failed to set input for checking if whitelist exists: " + e.name + ": " + e.message);

CODE
window.alert("Failed to whitelist the box: " + e.name + ": " + e.message);

CODE
window.alert("Failed to remove box from whitelist: " + e.name + ": " + e.message);

CODE
window.alert("Error while selecting suggestions: " + Error.message);

CODE
window.alert("Query canceled or aborted while selecting suggestions!");

CODE
window.alert("Failed to add option to textarea: " + e.name + ": " + e.message);

CODE
window.alert("Failed to change selection: " + e.name + ": " + e.message);

CODE
window.alert("Failed to update count and modified: " + e.name + ": " + e.message);

CODE
window.alert("Failed to set input for checking if text exists: " + e.name + ": " + e.message);

CODE
window.alert("Failed to save text while manual typing: " + e.name + ": " + e.message);

CODE
window.alert("Failed to update count and modified " +
                           "of the text while manual typing: " + e.name + ": " + e.message);

CODE
window.alert("Error while checking if text exists: " + Error.message);

CODE
window.alert("Query canceled or aborted while checking if text exists");

CODE
window.alert("Failed to save/ update the text: " + e.name + ": " + e.message);

CODE
window.alert("Unable to delete old cached data: " + e.name + ": " + e.message);

CODE
window.alert("Unable to unfrequent cached data: " + e.name + ": " + e.message);

CODE
window.alert("Unable to clean current element: " + e.name + ": " + e.message);

CODE
window.alert("Unable to create temp conn to DB: " + e.name + ": " + e.message);

CODE
window.alert("Unable to clear cached data: " + e.name + ": " + e.message);

CODE
window.alert("Unable to start observing for private browsing mode");

These can all be localized into a .properties file. wink.gif


--------------------
Don’t have to be beautiful but it helps

Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



RSS Lo-Fi Version Time is now: 20th June 2013 - 09:31
Bridged By IpbWiki: Integration Of Invision Power Board and MediaWiki © GlobalSoft