Language | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
English
|
0 | 0 | 0 | 0 | 76 | 0 | 0 | ||
|
|||||||||
French
|
16% | 149 | 4,033 | 31,374 | 149 | 9 | 147 | 0 | |
|
|||||||||
German
|
91% | 15 | 511 | 3,855 | 15 | 21 | 2 | 0 | |
|
|||||||||
Italian
|
63% | 66 | 2,127 | 17,887 | 66 | 17 | 0 | 0 | |
|
|||||||||
Japanese
|
0 | 0 | 0 | 0 | 30 | 0 | 0 | ||
|
|||||||||
Korean
|
91% | 15 | 511 | 3,855 | 15 | 24 | 0 | 0 | |
|
|||||||||
Polish
|
31% | 122 | 3,627 | 28,597 | 122 | 7 | 0 | 0 | |
|
|||||||||
Portuguese (Brazil)
|
91% | 15 | 511 | 3,855 | 15 | 56 | 0 | 0 | |
|
|||||||||
Spanish
|
84% | 28 | 1,083 | 10,537 | 28 | 28 | 2 | 0 | |
|
Please sign in to see the alerts.
Overview
Project website | postgis.net |
---|---|
Translation process |
|
Source code repository |
https://git.osgeo.org/gitea/postgis/postgis.git
|
Repository branch | stable-3.2 |
Last remote commit |
Push to 3.2.6dev milestone
6e2c5206d
Regina Obe authored yesterday |
Weblate repository |
https://weblate.osgeo.org/git/postgis_branch_32/postgis/
|
File mask | doc/po/*/using_raster_dataman.xml.po |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 1,611 | 37,269 | 290,331 | |||
Source | 179 | 4,141 | 32,259 | |||
Translated | 74% | 1,201 | 66% | 24,866 | 65% | 190,371 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 11% | 179 | 11% | 4,141 | 11% | 32,259 |
Failing checks | 16% | 268 | 14% | 5,343 | 12% | 37,727 |
Strings with suggestions | 9% | 151 | 11% | 4,300 | 11% | 33,309 |
Untranslated strings | 25% | 410 | 33% | 12,403 | 34% | 99,960 |
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
FROM
( VALUES (lo_create(0),
ST_AsPNG( (SELECT rast FROM aerials.boston WHERE rid=1) )
) ) As v(oid,png);
-- you'll get an output something like --
oid | num_bytes
---------+-----------
2630819 | 74860
-- next note the oid and do this replacing the c:/test.png to file path location
-- on your local computer
\lo_export 2630819 'C:/temp/aerial_samp.png'
-- this deletes the file from large object storage on db
SELECT lo_unlink(2630819);
FROM
( VALUES (lo_create(0),
ST_AsPNG( (SELECT rast FROM aerials.boston WHERE rid=1) )
) ) As v(oid,png);
-- vous obtiendrez un résultat semblable à --
oid | num_bytes
---------+-----------
2630819 | 74860
-- noter ensuite l'oid et remplacer le c:/test.png par le chemin d'accès au fichier
-- sur votre ordinateur local
\lo_export 2630819 'C:/temp/aerial_samp.png'
-- cela supprime le fichier du stockage des gros objets sur la base de données
SELECT lo_unlink(2630819);