Skip to content

Commit

Permalink
Pull new translations from transifex
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@14986 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
Sandro Santilli committed Jul 4, 2016
1 parent 4e5c99a commit 60daef9
Show file tree
Hide file tree
Showing 226 changed files with 84,964 additions and 52,469 deletions.
18 changes: 9 additions & 9 deletions doc/po/de_DE/extras_address_standardizer.xml.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PostGIS\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2016-02-16 08:54+0000\n"
"POT-Creation-Date: 2016-07-04 13:02+0000\n"
"PO-Revision-Date: 2015-09-29 12:22+0000\n"
"Last-Translator: Sandro Santilli <strk.io>\n"
"Language-Team: German (Germany) (http://www.transifex.com/postgis/postgis/"
Expand Down Expand Up @@ -1318,7 +1318,7 @@ msgstr ""
#: extras_address_standardizer.xml:601
#, no-c-format
msgid ""
"SELECT num, street, city, zip, zipplus \n"
"SELECT num, street, city, zip, zipplus\n"
" FROM parse_address('1 Devonshire Place, Boston, MA 02109-1234') AS a;"
msgstr ""

Expand Down Expand Up @@ -1352,7 +1352,7 @@ msgid ""
" ('124 Mount Auburn St, Cambridge, Massachusetts 02138'),\n"
" ('950 Main Street, Worcester, MA 01610');\n"
"\n"
" -- parse the addresses \n"
" -- parse the addresses\n"
" -- if you want all fields you can use (a).*\n"
"SELECT addid, (a).num, (a).street, (a).city, (a).state, (a).zip, (a)."
"zipplus\n"
Expand Down Expand Up @@ -1463,7 +1463,7 @@ msgstr ""
#, no-c-format
msgid ""
"SELECT house_num, name, suftype, city, country, state, unit FROM "
"standardize_address('us_lex', \n"
"standardize_address('us_lex',\n"
" 'us_gaz', 'us_rules', 'One Devonshire Place, PH "
"301, Boston, MA 02109');"
msgstr ""
Expand Down Expand Up @@ -1492,7 +1492,7 @@ msgstr ""
#: extras_address_standardizer.xml:668
#, no-c-format
msgid ""
"SELECT * FROM standardize_address('tiger.pagc_lex', \n"
"SELECT * FROM standardize_address('tiger.pagc_lex',\n"
" 'tiger.pagc_gaz', 'tiger.pagc_rules', 'One Devonshire Place, PH "
"301, Boston, MA 02109-1234');"
msgstr ""
Expand All @@ -1509,8 +1509,8 @@ msgstr ""
#: extras_address_standardizer.xml:671
#, no-c-format
msgid ""
"SELECT (each(hstore(p))).* \n"
" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz', \n"
"SELECT (each(hstore(p))).*\n"
" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz',\n"
" 'tiger.pagc_rules', 'One Devonshire Place, PH 301, Boston, MA 02109') As "
"p;"
msgstr ""
Expand Down Expand Up @@ -1550,8 +1550,8 @@ msgstr ""
#: extras_address_standardizer.xml:675
#, no-c-format
msgid ""
"SELECT (each(hstore(p))).* \n"
" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz', \n"
"SELECT (each(hstore(p))).*\n"
" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz',\n"
" 'tiger.pagc_rules', 'One Devonshire Place, PH 301', 'Boston, MA 02109, "
"US') As p;"
msgstr ""
Expand Down
24 changes: 12 additions & 12 deletions doc/po/de_DE/extras_historytable.xml.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PostGIS\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2012-09-14 17:50+0000\n"
"POT-Creation-Date: 2016-07-04 13:02+0000\n"
"PO-Revision-Date: 2015-09-29 11:54+0000\n"
"Last-Translator: Sandro Santilli <strk.io>\n"
"Language-Team: German (Germany) (http://www.transifex.com/postgis/postgis/"
Expand Down Expand Up @@ -82,11 +82,11 @@ msgstr ""

#. Tag: programlisting
#: extras_historytable.xml:16
#, no-c-format
#, fuzzy, no-c-format
msgid ""
"history_id | integer | not null default \n"
"history_id | integer | not null default\n"
" date_added | timestamp without time zone | not null default now()\n"
" date_deleted | timestamp without time zone | \n"
" date_deleted | timestamp without time zone |\n"
" last_operation | character varying(30) | not null\n"
" active_user | character varying(90) | not null default "
"\"current_user\"()\n"
Expand Down Expand Up @@ -164,10 +164,10 @@ msgstr ""

#. Tag: programlisting
#: extras_historytable.xml:34
#, no-c-format
#, fuzzy, no-c-format
msgid ""
"SELECT * FROM roads_history \n"
" WHERE date_added &lt; 'January 1, 2001' AND \n"
"SELECT * FROM roads_history\n"
" WHERE date_added &lt; 'January 1, 2001' AND\n"
" ( date_deleted &gt;= 'January 1, 2001' OR date_deleted IS NULL );"
msgstr ""
"SELECT * FROM roads_history \n"
Expand Down Expand Up @@ -302,23 +302,23 @@ msgstr ""

#. Tag: programlisting
#: extras_historytable.xml:107
#, no-c-format
#, fuzzy, no-c-format
msgid ""
"CREATE TABLE roads(gid SERIAL PRIMARY KEY, road_name varchar(150));\n"
"SELECT AddGeometryColumn('roads', 'geom', 26986, 'LINESTRING', 2);\n"
" \n"
"\n"
"SELECT postgis_enable_history('public', 'roads', 'geom') As register_table;\n"
"register_table\n"
"--------------\n"
"t\n"
"\n"
"INSERT INTO roads(road_name, geom) \n"
"INSERT INTO roads(road_name, geom)\n"
" VALUES('Test Street', ST_GeomFromText('LINESTRING(231660.5 832170,231647 "
"832202,231627.5 832250.5)',26986));\n"
"\n"
"-- check transaction detail --\n"
"SELECT date_added, last_operation, current_version \n"
"FROM roads_history \n"
"SELECT date_added, last_operation, current_version\n"
"FROM roads_history\n"
"WHERE road_name = 'Test Street' ORDER BY date_added DESC;\n"
"\n"
" date_added | last_operation | current_version\n"
Expand Down
Loading

0 comments on commit 60daef9

Please sign in to comment.