[VIVO-1290] Multi-language improvements
* fix hard coded label "more..." * fix hard coded label "pages" * fix hard coded labels "pages" and "to" * fix some hard coded page titles and messages * show class names in list views corresponding to preferred languages * translate page titles of search result page and login page
This commit is contained in:
commit
b97ee8dd26
14 changed files with 107 additions and 45 deletions
|
@ -246,6 +246,7 @@ verbose_turn_off = Turn off
|
|||
resource_uri = Resource URI
|
||||
|
||||
individual_not_found = Individual not found
|
||||
individual_not_found_msg = The individual was not found in the system.
|
||||
entity_to_query_for = This id is the id of the entity to query for. netid also works.
|
||||
|
||||
menu_ordering = Menu Ordering
|
||||
|
@ -435,6 +436,13 @@ run_sdb_setup = Run SDB Setup
|
|||
unrecognized_user = Unrecognized user
|
||||
no_individual_associated_with_id = For some reason, there is no individual in VIVO that is associated with your Net ID. Perhaps you should contact your VIVO administrator.
|
||||
|
||||
page_not_created = Page could not be created
|
||||
page_not_created_msg = There was an error while creating the page, please check the logs.
|
||||
page_not_found = Page Not Found
|
||||
page_not_found_msg = The page was not found in the system.
|
||||
page_uri_missing = No page URI specified
|
||||
page_uri_missing_msg = Could not generate page beacause it was unclear what page was being requested. A URL mapping may be missing.
|
||||
|
||||
#
|
||||
# site admin templates ( /templates/freemarker/body/siteAdmin )
|
||||
#
|
||||
|
@ -531,6 +539,8 @@ class_link = class link
|
|||
previous = Previous
|
||||
page_link = page link
|
||||
next_capitalized = Next
|
||||
download_results = Download Results
|
||||
to = to
|
||||
|
||||
#
|
||||
# shortview templates ( /templates/freemarker/body/partials/shortview )
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
var urlsBase = '${urls.base}';
|
||||
</script>
|
||||
|
||||
<img id="downloadIcon" src="images/download-icon.png" alt="Download Results" title="Download Results" />
|
||||
<img id="downloadIcon" src="images/download-icon.png" alt="${i18n().download_results}" title="${i18n().download_results}" />
|
||||
<#-- <span id="downloadResults" style="float:left"></span> -->
|
||||
</h2>
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
|||
<#if classLinks?has_content>
|
||||
<div class="searchTOC">
|
||||
<#if classGroupName?has_content>
|
||||
<h4>${i18n().limit} ${classGroupName} to</h4>
|
||||
<h4>${i18n().limit} ${classGroupName} ${i18n().to}</h4>
|
||||
<#else>
|
||||
<h4>${i18n().limit_to}</h4>
|
||||
</#if>
|
||||
|
@ -67,7 +67,7 @@
|
|||
<#-- Paging controls -->
|
||||
<#if (pagingLinks?size > 0)>
|
||||
<div class="searchpages">
|
||||
Pages:
|
||||
${i18n().pages}:
|
||||
<#if prevPage??><a class="prev" href="${prevPage}" title="${i18n().previous}">${i18n().previous}</a></#if>
|
||||
<#list pagingLinks as link>
|
||||
<#if link.url??>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue