Addresses #726, Localize remaining hard-coded strings
Adds a couple more strings in about.dtd (zotero.alumni and zotero.about.additionalSoftware) Adds "Alumni" and "Third-Party Software and Standards" sections Splits up new Quick Start Guide localized string into several parts (and removes "tell your friends" line).
This commit is contained in:
parent
a0063289bc
commit
74bc769a1e
|
@ -130,23 +130,31 @@
|
|||
<label class="subhead" value="&zotero.directors;"/>
|
||||
<vbox class="subcontent">
|
||||
<label value="Dan Cohen"/>
|
||||
<label value="Josh Greenberg"/>
|
||||
<label value="Sean Takats"/>
|
||||
</vbox>
|
||||
<label class="subhead" value="&zotero.developers;"/>
|
||||
<vbox class="subcontent">
|
||||
<label value="Dan Stillman"/>
|
||||
<label value="Simon Kornblith"/>
|
||||
<label value="David Norton"/>
|
||||
|
||||
</vbox>
|
||||
<label class="subhead" value="&zotero.alumni;"/>
|
||||
<vbox class="subcontent">
|
||||
<label value="Josh Greenberg (co-director)"/>
|
||||
<label value="David Norton (developer)"/>
|
||||
</vbox>
|
||||
<label class="subhead" value="&zotero.about.localizations;"/>
|
||||
<vbox class="subcontent">
|
||||
<vbox id="zotero-translators-list"/>
|
||||
</vbox>
|
||||
<label class="subhead" value="&zotero.about.icons;"/>
|
||||
<label class="subhead" value="&zotero.about.additionalSoftware;"/>
|
||||
<vbox class="subcontent">
|
||||
<label class="text-link" href="http://www.famfamfam.com/lab/icons/silk/" value="famfamfam (small icons)"/>
|
||||
<label class="text-link" href="http://simile.mit.edu/timeline/" value="SIMILE Project (Timeline)"/>
|
||||
<label class="text-link" href="http://tango.freedesktop.org/Tango_Desktop_Project" value="Tango Desktop Project (pref icons)"/>
|
||||
<label class="text-link" href="http://www.dbai.tuwien.ac.at/user/pollak/webpagedump/" value="WebPageDump (snapshot code)"/>
|
||||
<label class="text-link" href="http://xbiblio.sourceforge.net/" value="XBiblio (Citation Style Language)"/>
|
||||
<label class="text-link" href="http://www.foolabs.com/xpdf/" value="Xpdf (pdftotext)"/>
|
||||
</vbox>
|
||||
<label class="subhead" value="&zotero.executiveProducer;"/>
|
||||
<vbox class="subcontent">
|
||||
|
|
|
@ -462,7 +462,9 @@ Zotero.Schema = new function(){
|
|||
var sql = "INSERT INTO itemData VALUES(123456789, 27, 3)";
|
||||
Zotero.DB.query(sql);
|
||||
var sql = "INSERT INTO itemNotes (itemID, sourceItemID, note) VALUES(123456789, NULL, ?)";
|
||||
var msg = Zotero.getString('install.quickStartGuide.message');
|
||||
var msg = Zotero.getString('install.quickStartGuide.message.welcome')
|
||||
+ Zotero.getString('install.quickStartGuide.message.clickViewPage')
|
||||
+ "\n\n" + Zotero.getString('install.quickStartGuide.message.thanks');
|
||||
Zotero.DB.query(sql, msg);
|
||||
Zotero.DB.commitTransaction();
|
||||
}
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
<!ENTITY zotero.version "version">
|
||||
<!ENTITY zotero.createdby "Created by:">
|
||||
<!ENTITY zotero.createdby "Created By:">
|
||||
<!ENTITY zotero.directors "Directors:">
|
||||
<!ENTITY zotero.developers "Developers:">
|
||||
<!ENTITY zotero.alumni "Alumni:">
|
||||
<!ENTITY zotero.about.localizations "Localizations:">
|
||||
<!ENTITY zotero.about.icons "Icons:">
|
||||
<!ENTITY zotero.about.additionalSoftware "Third-Party Software and Standards:">
|
||||
<!ENTITY zotero.executiveProducer "Executive Producer:">
|
||||
<!ENTITY zotero.thanks "Special thanks:">
|
||||
<!ENTITY zotero.thanks "Special Thanks:">
|
||||
<!ENTITY zotero.about.close "Close">
|
|
@ -22,7 +22,9 @@ general.failed = Failed
|
|||
general.and = and
|
||||
|
||||
install.quickStartGuide = Quick Start Guide
|
||||
install.quickStartGuide.message = Welcome to Zotero! Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research.\n\nThanks for trying Zotero, and be sure to tell your friends about it.
|
||||
install.quickStartGuide.message.welcome = Welcome to Zotero!
|
||||
install.quickStartGuide.message.clickViewPage = Click the "View Page" button above to visit our Quick Start Guide and learn how to get started collecting, managing, and citing your research.
|
||||
install.quickStartGuide.message.thanks = Thanks for installing Zotero.
|
||||
|
||||
upgrade.failed = Upgrading of the Zotero database failed:
|
||||
upgrade.advanceMessage = Press %S to upgrade now.
|
||||
|
|
Loading…
Reference in New Issue
Block a user