Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Update UX strings #163

Merged
merged 6 commits into from
Oct 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions src/webextension/locales/en-US/manage.ftl
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
toolbar-item-count = { $count ->
[one] 1 item
*[other] { $count } items
[one] 1 Entry
*[other] { $count } Entries
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should also be sentence case, since it's not really a title (though this one is less clear, since button labels are title case in Firefox).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was basing the decision for title case off of the photon design guidelines, here: http://design.firefox.com/photon/copy/capitalization.html

}

toolbar-add-item = Add Item
toolbar-add-item = New Entry
toolbar-go-home = Home
toolbar-send-feedback = Feedback

item-filter.placeholder = Filter…
item-filter.placeholder = Search for an entry

item-summary-new-item = (new item)
item-summary-no-title = (no title)
item-summary-no-username = (no username)
item-summary-new-item = New Entry
item-summary-no-title = (No Entry Name)
item-summary-no-username = (No Username)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure about title case here... Maybe we really just need some CSS to style these specially, like as italic or something?

Copy link
Contributor

@linuxwolf linuxwolf Oct 16, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've dealt with too much internationalization concerns elsewhere to not feel confident with CSS directives here (e.g., Turkish dotless i). Maybe I shouldn't be so concerned, but I'd rather start with the strings matching the mockups directly.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's fine; I was just thinking about greying them out a bit or something to indicate that they're not human-entered.

Copy link
Contributor

@linuxwolf linuxwolf Oct 16, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The italics or color change seems like something we can follow up on ... this text matches the invision mockup + how @changecourse (and I) interpret the Photon guidelines.


homepage-no-passwords =
Welcome to Lockbox! I'm Lockie, and I'm here to help you lock
up your passwords!

To get started, click { add-item } above.
To get started, click { toolbar-add-item } above.

homepage-under-10-passwords = { $count ->
[1] Hi there! It's your friend, Lockie!

You've added { $count } password. That's a great start!
You've added { $count } entry. That's a great start!
*[other] Hi there! It's your friend, Lockie!

You've added { $count } passwords. That's a great start!
You've added { $count } entries. That's a great start!
}

homepage-under-50-passwords =
Hey again! Just your pal Lockie checking in!

You've added { $count } passwords. Great job, keep it up!
You've added { $count } entries. Great job, keep it up!

homepage-over-50-passwords =
Welcome back! I hope you're having a great day!

You've added { $count } passwords. Wow, I'm really impressed!
You've added { $count } entries. Wow, I'm really impressed!

item-details-title = Title
item-details-origin = Origin
item-details-title = Entry Name
item-details-origin = Website Address
item-details-username = Username
item-details-copy-username = Copy
.title = Copy the username to the clipboard
Expand All @@ -48,21 +48,21 @@ item-details-copy-password = Copy
.title = Copy the password to the clipboard
item-details-notes = Notes

item-details-edit = Edit
item-details-delete = Delete
item-details-edit = Edit Entry
item-details-delete = Delete Entry

item-details-save = Save
item-details-save = Save Entry
item-details-cancel = Cancel

[[dialogs]]

modal-root-title = Modal dialog

modal-cancel
.text = This item has unsaved changes? Are you sure you want to discard them?
.primaryButtonLabel = Discard
.secondaryButtonLabel = Go back
.text = This entry has unsaved changes. Are you sure you want to discard them?
.primaryButtonLabel = Discard Changes
.secondaryButtonLabel = Go Back
modal-delete
.text = Are you sure you want to delete this item?
.primaryButtonLabel = Delete
.text = Are you sure you want to delete this entry?
.primaryButtonLabel = Delete Entry
.secondaryButtonLabel = Cancel
4 changes: 2 additions & 2 deletions src/webextension/locales/en-US/popup.ftl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
unlock-prompt-title = Unlock your Lockbox
unlock-prompt-desc = Enter your master password to unlock:
unlock-prompt-title = Lockbox
unlock-prompt-desc = Enter your password

unlock-prompt-err-invalid-pwd = Wrong password

Expand Down