forked from I2P_Developers/i2p.www
extract-messages
This commit is contained in:
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: I2P website\n"
|
||||
"Report-Msgid-Bugs-To: http://trac.i2p2.de\n"
|
||||
"POT-Creation-Date: 2019-08-24 16:39+0000\n"
|
||||
"POT-Creation-Date: 2019-11-24 14:26+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -396,7 +396,7 @@ msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/roadmap-2016.html:190
|
||||
#: i2p2www/pages/site/get-involved/roadmap-2017.html:303
|
||||
#: i2p2www/pages/site/get-involved/roadmap.html:294
|
||||
#: i2p2www/pages/site/get-involved/roadmap.html:323
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please see the <a href=\"%(todo)s\">TODO</a> list for more detailed info "
|
||||
@@ -407,10 +407,6 @@ msgstr ""
|
||||
msgid "January 2017"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/roadmap.html:3
|
||||
msgid "July 2019"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/todo.html:2
|
||||
msgid "I2P Project Targets"
|
||||
msgstr ""
|
||||
@@ -1748,10 +1744,6 @@ msgstr ""
|
||||
msgid "Developer Guidelines and Coding Style"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:3
|
||||
msgid "April 2019"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:5
|
||||
#, python-format
|
||||
msgid "Read the <a href=\"%(newdevs)s\">new developers guide</a> first."
|
||||
@@ -1997,50 +1989,50 @@ msgid ""
|
||||
"of the Android SDK and they compile to Java 6-compatible code."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:175
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:179
|
||||
msgid ""
|
||||
"Explicitly convert between primitive types and classes;\n"
|
||||
"don't rely on autoboxing/unboxing."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:179
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:183
|
||||
msgid "Don't use URL. Use URI."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:182
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:186
|
||||
msgid ""
|
||||
"Don't catch Exception. Catch RuntimeException and checked exceptions "
|
||||
"individually."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:185
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:189
|
||||
msgid ""
|
||||
"Don't use String.getBytes() without a UTF-8 charset argument. You may "
|
||||
"also use DataHelper.getUTF8() or DataHelper.getASCII()."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:188
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:192
|
||||
msgid ""
|
||||
"Always specify a UTF-8 charset when reading or writing files. The "
|
||||
"DataHelper utilities may be helpful."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:191
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:195
|
||||
msgid ""
|
||||
"Always specify a locale (for example Locale.US) when using "
|
||||
"String.toLowerCase() or String.toUpperCase().\n"
|
||||
"Do not use String.equalsIgnoreCase(), as a locale cannot be specified."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:195
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:199
|
||||
msgid "Don't use String.split(). Use DataHelper.split()."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:198
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:205
|
||||
msgid "Ensure that InputStreams and OutputStreams are closed in finally blocks."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:201
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:208
|
||||
msgid ""
|
||||
"Use {} for all for and while blocks, even if only one line.\n"
|
||||
"If you use {} for either the if, else, or if-else block, use it for all "
|
||||
@@ -2048,25 +2040,25 @@ msgid ""
|
||||
"Put \"} else {\" on a single line."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:206
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:213
|
||||
msgid "Specify fields as final wherever possible."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:209
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:216
|
||||
msgid ""
|
||||
"Don't store I2PAppContext, RouterContext, Log, or any other references to"
|
||||
" router or context items in static fields."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:212
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:219
|
||||
msgid "Don't start threads in constructors. Use I2PAppThread instead of Thread."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:217
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:224
|
||||
msgid "Licenses"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:219
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:226
|
||||
msgid ""
|
||||
"Only check in code that you wrote yourself.\n"
|
||||
"Before checking in any code or library jars from other sources,\n"
|
||||
@@ -2075,7 +2067,7 @@ msgid ""
|
||||
"and obtain approval from the lead developer."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:226
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:233
|
||||
msgid ""
|
||||
"If you do obtain approval to add external code or jars,\n"
|
||||
"and binaries are available in any Debian or Ubuntu package,\n"
|
||||
@@ -2084,18 +2076,18 @@ msgid ""
|
||||
"Checklist of files to modify:"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:234
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:241
|
||||
msgid ""
|
||||
"For any images checked in from external sources,\n"
|
||||
"it is your responsibility to first verify the license is compatible.\n"
|
||||
"Include the license and source information in the checkin comment."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:241
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:248
|
||||
msgid "Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:243
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:250
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Managing Trac tickets is everybody's job, please help.\n"
|
||||
@@ -2103,7 +2095,7 @@ msgid ""
|
||||
"Assign, categorize, comment on, fix, or close tickets if you can."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:248
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:255
|
||||
msgid ""
|
||||
"New developers should start by fixing a bug.\n"
|
||||
"Search for bugs with the 'easy' keyword on trac.\n"
|
||||
@@ -2115,7 +2107,7 @@ msgid ""
|
||||
"the normal procedure below."
|
||||
msgstr ""
|
||||
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:255
|
||||
#: i2p2www/pages/site/get-involved/guides/dev-guidelines.html:262
|
||||
msgid ""
|
||||
"Close a ticket when you think you've fixed it.\n"
|
||||
"We don't have a test department to verify and close tickets.\n"
|
||||
|
Reference in New Issue
Block a user