about:weave polish: add localized help drawer & other small fixes

--HG--
extra : rebase_source : e82da40950dd20d6f418c90cb9b02ba896cd5693
This commit is contained in:
Dan Mills 2009-08-26 18:48:22 -07:00
Родитель f03e1375ea
Коммит 3777541de2
3 изменённых файлов: 52 добавлений и 14 удалений

Просмотреть файл

@ -1,3 +1,5 @@
# Status messages (below the arrow in the center)
status-offline = signed out status-offline = signed out
status-offline-2 = (offline) status-offline-2 = (offline)
status-signing-in = status-signing-in =
@ -7,36 +9,70 @@ status-idle-2 = (idle)
status-sync = signed in as %S status-sync = signed in as %S
status-sync-2 = (syncing) status-sync-2 = (syncing)
welcome = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam id neque lectus. Donec cursus pulvinar nibh at pretium. Vivamus ante tellus, accumsan vel placerat vestibulum, tristique ac augue. 'Cause that's how I roll. # Bubbles
#prev = « prev
#next = next »
prev = prev prev = prev
next = next next = next
signedin-title = Signed In
signedin-text = You are currently logged in as %S
signedin-signout = sign out signedin-signout = sign out
signedin-change-password = change password
signedin-change-passphrase = change passphrase
signin-title = Sign Into Weave signin-title = Sign Into Weave
signin-newacct = new account signin-newacct = new user
signin-username = username signin-username = username
signin-password = password signin-password = password
signin-passphrase = passphrase signin-passphrase = passphrase
signin-help = help signin-next = sign in
signin-help-url = https://services.mozilla.com/help/login/
newacct-title = New Weave Account newacct-title = New Weave Account
newacct-username = username newacct-username = username
newacct-password = password newacct-password = password
newacct-passphrase = passphrase newacct-passphrase = passphrase
newacct-email = email address newacct-email = email address
newacct-tos-label = I agree to the newacct-tos-label = I agree to the %S
newacct-tos-label2 = newacct-tos = Terms of Service
newacct-tos-link = Terms of Service
newacct-tos-url = http://labs.mozilla.com/projects/weave/tos/
captcha-response = Type in the words above captcha-response = Type in the words above
user-taken-password = My username won't work
willsync-title = Account Created! willsync-title = Account Created!
willsync-text = Sync will begin in %S seconds... willsync-1 = Sync will begin in %S seconds...
willsync-config = choose what to sync willsync-config = choose what to sync
setup-title = Sync Settings
setup-1 = Check the things you'd like to sync:
setup-sync = sync now
clientinfo-type-desktop = desktop
clientinfo-type-laptop = laptop
clientinfo-type-mobile = mobile
clientinfo-prefs = choose what to sync
cloudinfo-title = What's In The Cloud?
# Help items
help-forgot-password = I forgot my password
forgot-password-1 = Type in your username and we'll send you an email so you can reset it:
forgot-password-box = username
forgot-password-ok = send email
help-forgot-passphrase = I forgot my passphrase
forgot-passphrase-1 = You can pick a new passphrase, but all your server data will need to be deleted (it cannot be recovered).
forgot-passphrase-2 = To go ahead, click the button below:
forgot-passphrase-ok = reset passphrase
help-helpme = I'm stuck! What do I do?
help-helpme-1 = If you're stuck, you might want to try the %S or the %S for help.
help-helpme-faq = FAQ
help-helpme-forum = Weave discussion forum
help-user-taken = My username won't work
help-user-taken-1 = Your username might be taken, try adding numbers or additional words to it.
help-user-taken-2 = Additionally, you can't use special symbols or spaces inside usernames.
help-newacct-pass = Weave won't accept my password or passphrase
help-newacct-pass-1 = The password and passphrase must be different from each other.
help-no-captcha = I can't see the verification image
help-no-captcha-1 = Some add-ons can interfere with the verification image. Try disabling NoScript or similar add-ons.

Просмотреть файл

@ -792,6 +792,7 @@ Utils.EventListener.prototype = {
let Svc = {}; let Svc = {};
Svc.Prefs = new Preferences(PREFS_BRANCH); Svc.Prefs = new Preferences(PREFS_BRANCH);
Svc.GPrefs = new Preferences();
[["Annos", "@mozilla.org/browser/annotation-service;1", "nsIAnnotationService"], [["Annos", "@mozilla.org/browser/annotation-service;1", "nsIAnnotationService"],
["AppInfo", "@mozilla.org/xre/app-info;1", "nsIXULAppInfo"], ["AppInfo", "@mozilla.org/xre/app-info;1", "nsIXULAppInfo"],
["Bookmark", "@mozilla.org/browser/nav-bookmarks-service;1", "nsINavBookmarksService"], ["Bookmark", "@mozilla.org/browser/nav-bookmarks-service;1", "nsINavBookmarksService"],

Просмотреть файл

@ -1,5 +1,6 @@
pref("extensions.weave.serverURL", "https://auth.services.mozilla.com/user/"); pref("extensions.weave.serverURL", "https://auth.services.mozilla.com/user/");
pref("extensions.weave.miscURL", "https://auth.services.mozilla.com/misc/"); pref("extensions.weave.miscURL", "https://auth.services.mozilla.com/misc/");
pref("extensions.weave.termsURL", "https://labs.mozilla.com/projects/weave/tos/");
pref("extensions.weave.encryption", "aes-256-cbc"); pref("extensions.weave.encryption", "aes-256-cbc");