Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
fix: remove the words "from RIS file" from import tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
dsifford committed Dec 4, 2016
1 parent 5d21e69 commit dd2be97
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ exports.ABT_i18n = {
},
menu: {
tooltips: {
importRIS: 'Import references from RIS file',
importRIS: 'Import references from file',
refresh: 'Refresh reference list',
destroy: 'Delete all references',
help: 'Usage instructions',
Expand Down
2 changes: 1 addition & 1 deletion src/academic-bloggers-toolkit.pot
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ msgid "Usage instructions"
msgstr ""

#: lib/php/i18n.php:50
msgid "Import references from RIS file"
msgid "Import references from file"
msgstr ""

#: lib/php/i18n.php:51
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const ABT_i18n = {
tooltips: {
destroy: 'Delete all references',
help: 'View usage instructions',
import: 'Import references from RIS file',
import: 'Import references from file',
refresh: 'Refresh reference list',
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/lib/php/i18n.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function abt_generate_translations() {
'tooltips' => [
'destroy' => __('Delete all references', 'academic-bloggers-toolkit'),
'help' => __('Usage instructions', 'academic-bloggers-toolkit'),
'importRIS' => __('Import references from RIS file', 'academic-bloggers-toolkit'),
'importRIS' => __('Import references from file', 'academic-bloggers-toolkit'),
'refresh' => __('Refresh reference list', 'academic-bloggers-toolkit'),
'staticPubList' => __('Insert Static Publication List', 'academic-bloggers-toolkit'),
],
Expand Down
2 changes: 1 addition & 1 deletion types/globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ declare namespace BackendGlobals {
tooltips: {
readonly destroy: 'Delete all references';
readonly help: 'Usage instructions';
readonly importRIS: 'Import references from RIS file';
readonly importRIS: 'Import references from file';
readonly refresh: 'Refresh reference list';
readonly staticPubList: 'Insert Static Publication List';
};
Expand Down

0 comments on commit dd2be97

Please sign in to comment.