Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
extras
|
0% | 3 | 45 | 318 | 3 | 0 | 3 | 0 | |
|
|||||||||
reference_troubleshooting
|
0% | 26 | 407 | 3,121 | 26 | 2 | 26 | 0 | |
|
|||||||||
reference_bbox
|
0% | 117 | 1,991 | 19,058 | 117 | 3 | 116 | 0 | |
|
|||||||||
reference_overlay
|
0% | 143 | 2,782 | 24,240 | 143 | 2 | 8 | 0 | |
|
|||||||||
reference_version
|
0% | 88 | 709 | 8,318 | 88 | 1 | 88 | 0 | |
|
|||||||||
database_tuning
|
0% | 33 | 543 | 3,893 | 33 | 0 | 33 | 0 | |
|
|||||||||
reference_cluster
|
0% | 55 | 1,131 | 9,962 | 55 | 1 | 47 | 0 | |
|
|||||||||
using_postgis_query
|
0% | 109 | 2,146 | 16,760 | 109 | 0 | 92 | 0 | |
|
|||||||||
reference_relationship
|
0% | 273 | 5,065 | 46,644 | 273 | 2 | 213 | 0 | |
|
|||||||||
reference_srs
|
0% | 54 | 978 | 8,949 | 54 | 3 | 50 | 0 | |
|
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 |
Translation file |
Download
doc/po/fr/using_raster_dataman.xml.po
|
Last change | None |
Last author | None |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 179 | 4,141 | 32,259 | |||
Translated | 16% | 30 | 2% | 108 | 2% | 885 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 0% | 0 | 0% | 0 | 0% | 0 |
Failing checks | 5% | 9 | 1% | 31 | 1% | 274 |
Strings with suggestions | 82% | 147 | 97% | 4,018 | 96% | 31,279 |
Untranslated strings | 83% | 149 | 97% | 4,033 | 97% | 31,374 |
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
![]() Suggestion added |
|
179 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
179 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
149 | Unfinished strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
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);