Skip to content

Commit

Permalink
1.9b.rev121
Browse files Browse the repository at this point in the history
* Implemented localization fixes per @TonnesM discussion in #44
  • Loading branch information
Noitidart committed Aug 17, 2016
1 parent f538b12 commit ed267f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions locale/en-US/main.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ menuitem_opendashboard=Open Dashboard

osfileerror_writeatomic=Failed to write to disk. %S. System error code: %S.
osfileerror_writeatomic_nosuchfile=One of the parent directories does not exist in the path "%S"
osfileerror_unknownreason=Unnamed reason
osfileerror_unnamedreason=Unnamed reason

hold_error=Error Occurred - Retry
show_error_details=Show Error Details
Expand Down Expand Up @@ -102,7 +102,7 @@ denied=Denied
close_tab=Close Tab
reauth_button=Reauthorize
approved_msg=Paused actions have been automatically resumed
denied_msg=You have disallowed access, to fully enjoy the experience, please authorize again but with approval.
denied_msg=You have disallowed access. To fully enjoy the experience, please authorize again but with approval.

manual_auth_needed=Authorization token expired. Please reauthorize.

Expand Down Expand Up @@ -168,7 +168,7 @@ cancel=Cancel
okay=Okay

title_forget=Forget Entry
confirm_forget=This will remove this entry from the log of history. Do you want to continue?
confirm_forget=This will remove this entry from the history log. Do you want to continue?
processing_forget=Forgetting...
error_forget=Failed to forget entry, error: "%S".
reason1_forget=Failed to remove from log due to file system error
Expand Down Expand Up @@ -258,11 +258,11 @@ frm=French (Old)
ita_old=Italian (Old)
equ=Math
srp=Serbian (Latin)
slk=Slovakian
slk=Slovak
spa_old=Old Spanish

uninstall_title=Addon Uninstallation - NativeShot
uninstall_body=NativeShot is being uninstalled. Would you like to delete associated preferences and history\n\nIf you click "Keep" then if you install NativeShot in the future, all your preferences and logs will still be there.
uninstall_body=NativeShot is being uninstalled. Would you like to delete associated preferences and history?\n\nIf you click "Keep" then if you install NativeShot in the future, all your preferences and logs will still be there.
no=No
yes=Yes
keep=Keep
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/MainWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -4621,7 +4621,7 @@ function buildOSFileErrorString(aMethod, aOSFileError) { // rev3 - https://gist.
if (aOSFileError.becauseNoSuchFile) {
explain = formatStringFromName('osfileerror_writeatomic_nosuchfile', 'main');
} else {
explain = formatStringFromName('osfileerror_unknownreason', 'main');
explain = formatStringFromName('osfileerror_unnamedreason', 'main');
}
rez = formatStringFromName('osfileerror_' + aMethod, 'main', [explain, aOSFileError.winLastError || aOSFileError.unixErrno])
break;
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ function init(aArrBufAndCore) {
hotkey: 'cr',
sub: [
{
label: formatStringFromNameCore('all', 'main'),
label: formatStringFromNameCore('ocrall', 'main'),
icon: '\ue848'
},
{
Expand Down

0 comments on commit ed267f3

Please sign in to comment.