Skip to content

Commit

Permalink
[GeckoView] Fix string for download button
Browse files Browse the repository at this point in the history
  • Loading branch information
calixteman committed Jul 22, 2023
1 parent aed7f6e commit bd99520
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions l10n/en-US/viewer.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ print.title=Print
print_label=Print
save.title=Save
save_label=Save
# LOCALIZATION NOTE (download.title): This string is used in Firefox for Android.
download.title=Download
# LOCALIZATION NOTE (download_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate.
download_label=Download
bookmark1.title=Current Page (View URL from Current Page)
bookmark1_label=Current Page
# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android.
Expand Down
4 changes: 2 additions & 2 deletions web/viewer-geckoview.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
<div id="mainContainer">

<div id="floatingToolbar">
<button id="download" class="toolbarButton" title="Save" tabindex="31" data-l10n-id="save">
<span data-l10n-id="save_label">Save</span>
<button id="download" class="toolbarButton" title="Download" tabindex="31" data-l10n-id="download">
<span data-l10n-id="download_label">Download</span>
</button>
<button id="openInApp" class="toolbarButton" title="Open in app" tabindex="32" data-l10n-id="open_in_app">
<span data-l10n-id="open_in_app_label">Open in app</span>
Expand Down

0 comments on commit bd99520

Please sign in to comment.