code
stringlengths
0
21.5M
repo_name
stringlengths
4
92
path
stringlengths
1
189
language
stringlengths
0
26
license
stringclasses
11 values
size
int64
0
21.5M
from ctypes import c_void_p from django.contrib.gis.gdal.base import GDALBase from django.contrib.gis.gdal.error import GDALException from django.contrib.gis.gdal.prototypes import ds as vcapi from django.contrib.gis.gdal.prototypes import raster as rcapi from django.utils.encoding import force_bytes, force_str clas...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/driver.py
Python
mit
3,351
""" The GDAL/OGR library uses an Envelope structure to hold the bounding box information for a geometry. The envelope (bounding box) contains two pairs of coordinates, one for the lower left coordinate and one for the upper right coordinate: +----------o Upper right; (max_x, max_y) ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/envelope.py
Python
mit
7,323
""" This module houses the GDAL & SRS Exception objects, and the check_err() routine which checks the status code returned by GDAL/OGR methods. """ # #### GDAL & SRS Exceptions #### class GDALException(Exception): pass class SRSException(Exception): pass # #### GDAL/OGR error checking codes and routine...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/error.py
Python
mit
1,578
from django.contrib.gis.gdal.base import GDALBase from django.contrib.gis.gdal.error import GDALException from django.contrib.gis.gdal.field import Field from django.contrib.gis.gdal.geometries import OGRGeometry, OGRGeomType from django.contrib.gis.gdal.prototypes import ds as capi from django.contrib.gis.gdal.prototy...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/feature.py
Python
mit
4,017
from ctypes import byref, c_int from datetime import date, datetime, time from django.contrib.gis.gdal.base import GDALBase from django.contrib.gis.gdal.error import GDALException from django.contrib.gis.gdal.prototypes import ds as capi from django.utils.encoding import force_str # For more information, see the OGR...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/field.py
Python
mit
6,886
""" The OGRGeometry is a wrapper for using the OGR Geometry class (see https://gdal.org/api/ogrgeometry_cpp.html#_CPPv411OGRGeometry). OGRGeometry may be instantiated when reading geometries from OGR Data Sources (e.g. SHP files), or when given OGC WKT (a string). While the 'full' API is not present yet, the API ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/geometries.py
Python
mit
24,346
from django.contrib.gis.gdal.error import GDALException class OGRGeomType: "Encapsulate OGR Geometry Types." wkb25bit = -2147483648 # Dictionary of acceptable OGRwkbGeometryType s and their string names. _types = { 0: "Unknown", 1: "Point", 2: "LineString", 3: "Polygo...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/geomtype.py
Python
mit
3,071
from ctypes import byref, c_double from django.contrib.gis.gdal.base import GDALBase from django.contrib.gis.gdal.envelope import Envelope, OGREnvelope from django.contrib.gis.gdal.error import GDALException, SRSException from django.contrib.gis.gdal.feature import Feature from django.contrib.gis.gdal.field import OGR...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/layer.py
Python
mit
8,825
import logging import os import re from ctypes import CDLL, CFUNCTYPE, c_char_p, c_int from ctypes.util import find_library from django.contrib.gis.gdal.error import GDALException from django.core.exceptions import ImproperlyConfigured logger = logging.getLogger("django.contrib.gis") # Custom library path set? try: ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/libgdal.py
Python
mit
3,618
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py
Python
mit
0
""" This module houses the ctypes function prototypes for OGR DataSource related data structures. OGR_Dr_*, OGR_DS_*, OGR_L_*, OGR_F_*, OGR_Fld_* routines are relevant here. """ from ctypes import POINTER, c_char_p, c_double, c_int, c_long, c_void_p from django.contrib.gis.gdal.envelope import OGREnvelope from djan...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py
Python
mit
4,525
""" This module houses the error-checking routines used by the GDAL ctypes prototypes. """ from ctypes import c_void_p, string_at from django.contrib.gis.gdal.error import GDALException, SRSException, check_err from django.contrib.gis.gdal.libgdal import lgdal # Helper routines for retrieving pointers and/or value...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py
Python
mit
4,173
""" This module contains functions that generate ctypes prototypes for the GDAL routines. """ from ctypes import POINTER, c_bool, c_char_p, c_double, c_int, c_int64, c_void_p from functools import partial from django.contrib.gis.gdal.prototypes.errcheck import ( check_arg_errcode, check_const_string, che...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py
Python
mit
4,889
from ctypes import POINTER, c_char_p, c_double, c_int, c_void_p from django.contrib.gis.gdal.envelope import OGREnvelope from django.contrib.gis.gdal.libgdal import lgdal from django.contrib.gis.gdal.prototypes.errcheck import check_envelope from django.contrib.gis.gdal.prototypes.generation import ( const_string_...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py
Python
mit
5,046
""" This module houses the ctypes function prototypes for GDAL DataSource (raster) related data structures. """ from ctypes import POINTER, c_bool, c_char_p, c_double, c_int, c_void_p from functools import partial from django.contrib.gis.gdal.libgdal import std_call from django.contrib.gis.gdal.prototypes.generation i...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py
Python
mit
5,994
from ctypes import POINTER, c_char_p, c_int, c_void_p from django.contrib.gis.gdal.libgdal import GDAL_VERSION, lgdal, std_call from django.contrib.gis.gdal.prototypes.generation import ( const_string_output, double_output, int_output, srs_output, string_output, void_output, ) # Shortcut gene...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py
Python
mit
3,731
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py
Python
mit
0
from ctypes import byref, c_double, c_int, c_void_p from django.contrib.gis.gdal.error import GDALException from django.contrib.gis.gdal.prototypes import raster as capi from django.contrib.gis.gdal.raster.base import GDALRasterBase from django.contrib.gis.shortcuts import numpy from django.utils.encoding import force...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/raster/band.py
Python
mit
8,343
from django.contrib.gis.gdal.base import GDALBase from django.contrib.gis.gdal.prototypes import raster as capi class GDALRasterBase(GDALBase): """ Attributes that exist on both GDALRaster and GDALBand. """ @property def metadata(self): """ Return the metadata for this raster or b...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/raster/base.py
Python
mit
2,882
""" GDAL - Constant definitions """ from ctypes import c_double, c_float, c_int16, c_int32, c_ubyte, c_uint16, c_uint32 # See https://gdal.org/api/raster_c_api.html#_CPPv412GDALDataType GDAL_PIXEL_TYPES = { 0: "GDT_Unknown", # Unknown or unspecified type 1: "GDT_Byte", # Eight bit unsigned integer 2: "GD...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/raster/const.py
Python
mit
2,981
import json import os import sys import uuid from ctypes import ( addressof, byref, c_buffer, c_char_p, c_double, c_int, c_void_p, string_at, ) from pathlib import Path from django.contrib.gis.gdal.driver import Driver from django.contrib.gis.gdal.error import GDALException from django....
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/raster/source.py
Python
mit
18,394
""" The Spatial Reference class, represents OGR Spatial Reference objects. Example: >>> from django.contrib.gis.gdal import SpatialReference >>> srs = SpatialReference('WGS84') >>> print(srs) GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY...
castiel248/Convert
Lib/site-packages/django/contrib/gis/gdal/srs.py
Python
mit
12,775
""" This module houses the GeoIP2 object, a wrapper for the MaxMind GeoIP2(R) Python API (https://geoip2.readthedocs.io/). This is an alternative to the Python GeoIP2 interface provided by MaxMind. GeoIP(R) is a registered trademark of MaxMind, Inc. For IP-based geolocation, this module requires the GeoLite2 Country ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geoip2/__init__.py
Python
mit
824
import socket import geoip2.database from django.conf import settings from django.core.exceptions import ValidationError from django.core.validators import validate_ipv46_address from django.utils._os import to_path from .resources import City, Country # Creating the settings dictionary with any settings, if needed...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geoip2/base.py
Python
mit
8,942
def City(response): return { "city": response.city.name, "continent_code": response.continent.code, "continent_name": response.continent.name, "country_code": response.country.iso_code, "country_name": response.country.name, "dma_code": response.location.metro_code, ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geoip2/resources.py
Python
mit
819
import re from django.utils.regex_helper import _lazy_re_compile # Regular expression for recognizing HEXEWKB and WKT. A prophylactic measure # to prevent potentially malicious input from reaching the underlying C # library. Not a substitute for good web security programming practices. hex_regex = _lazy_re_compile(r...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geometry.py
Python
mit
666
""" The GeoDjango GEOS module. Please consult the GeoDjango documentation for more details: https://docs.djangoproject.com/en/dev/ref/contrib/gis/geos/ """ from .collections import ( # NOQA GeometryCollection, MultiLineString, MultiPoint, MultiPolygon, ) from .error import GEOSException # NOQA from ....
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/__init__.py
Python
mit
660
from django.contrib.gis.geos.error import GEOSException from django.contrib.gis.ptr import CPointerBase class GEOSBase(CPointerBase): null_ptr_exception_class = GEOSException
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/base.py
Python
mit
181
""" This module houses the Geometry Collection objects: GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon """ from django.contrib.gis.geos import prototypes as capi from django.contrib.gis.geos.geometry import GEOSGeometry, LinearGeometryMixin from django.contrib.gis.geos.libgeos import GEOM_PTR from ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/collections.py
Python
mit
3,940
""" This module houses the GEOSCoordSeq object, which is used internally by GEOSGeometry to house the actual coordinates of the Point, LineString, and LinearRing geometries. """ from ctypes import byref, c_byte, c_double, c_uint from django.contrib.gis.geos import prototypes as capi from django.contrib.gis.geos.bas...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/coordseq.py
Python
mit
7,284
class GEOSException(Exception): "The base GEOS exception, indicates a GEOS-related error." pass
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/error.py
Python
mit
104
from django.contrib.gis.geos.geometry import GEOSGeometry, hex_regex, wkt_regex def fromfile(file_h): """ Given a string file name, returns a GEOSGeometry. The file may contain WKB, WKT, or HEX. """ # If given a file name, get a real handle. if isinstance(file_h, str): with open(file_h...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/factory.py
Python
mit
961
""" This module contains the 'base' GEOSGeometry object -- all GEOS Geometries inherit from this object. """ import re from ctypes import addressof, byref, c_double from django.contrib.gis import gdal from django.contrib.gis.geometry import hex_regex, json_regex, wkt_regex from django.contrib.gis.geos import prototy...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/geometry.py
Python
mit
26,418
""" Module that holds classes for performing I/O operations on GEOS geometry objects. Specifically, this has Python implementations of WKB/WKT reader and writer classes. """ from django.contrib.gis.geos.geometry import GEOSGeometry from django.contrib.gis.geos.prototypes.io import ( WKBWriter, WKTWriter, _...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/io.py
Python
mit
799
""" This module houses the ctypes initialization procedures, as well as the notice and error handler function callbacks (get called when an error occurs in GEOS). This module also houses GEOS Pointer utilities, including get_pointer_arr(), and GEOM_PTR. """ import logging import os from ctypes import CDLL, CFUNCT...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/libgeos.py
Python
mit
4,987
from django.contrib.gis.geos import prototypes as capi from django.contrib.gis.geos.coordseq import GEOSCoordSeq from django.contrib.gis.geos.error import GEOSException from django.contrib.gis.geos.geometry import GEOSGeometry, LinearGeometryMixin from django.contrib.gis.geos.point import Point from django.contrib.gis....
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/linestring.py
Python
mit
6,372
# Copyright (c) 2008-2009 Aryeh Leib Taurog, all rights reserved. # Released under the New BSD license. """ This module contains a base type which provides list-style mutations without specific data storage methods. See also http://static.aryehleib.com/oldsite/MutableLists.html Author: Aryeh Leib Taurog. """ from fun...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/mutable_list.py
Python
mit
10,121
from ctypes import c_uint from django.contrib.gis import gdal from django.contrib.gis.geos import prototypes as capi from django.contrib.gis.geos.error import GEOSException from django.contrib.gis.geos.geometry import GEOSGeometry class Point(GEOSGeometry): _minlength = 2 _maxlength = 3 has_cs = True ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/point.py
Python
mit
4,781
from django.contrib.gis.geos import prototypes as capi from django.contrib.gis.geos.geometry import GEOSGeometry from django.contrib.gis.geos.libgeos import GEOM_PTR from django.contrib.gis.geos.linestring import LinearRing class Polygon(GEOSGeometry): _minlength = 1 def __init__(self, *args, **kwargs): ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/polygon.py
Python
mit
6,710
from .base import GEOSBase from .prototypes import prepared as capi class PreparedGeometry(GEOSBase): """ A geometry that is prepared for performing certain operations. At the moment this includes the contains covers, and intersects operations. """ ptr_type = capi.PREPGEOM_PTR destructor ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prepared.py
Python
mit
1,577
""" This module contains all of the GEOS ctypes function prototypes. Each prototype handles the interaction between the GEOS library and Python via ctypes. """ from django.contrib.gis.geos.prototypes.coordseq import ( # NOQA create_cs, cs_clone, cs_getdims, cs_getordinate, cs_getsize, cs_ge...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py
Python
mit
1,412
from ctypes import POINTER, c_byte, c_double, c_int, c_uint from django.contrib.gis.geos.libgeos import CS_PTR, GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import GEOSException, last_arg_byref # ## Error-checking routines specific to coordinate sequences. ## def check_cs_op(result, fun...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py
Python
mit
3,122
""" Error checking functions for GEOS ctypes prototype functions. """ from ctypes import c_void_p, string_at from django.contrib.gis.geos.error import GEOSException from django.contrib.gis.geos.libgeos import GEOSFuncFactory # Getting the `free` routine used to free the memory allocated for # string pointers returne...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py
Python
mit
2,788
from ctypes import POINTER, c_char_p, c_int, c_ubyte, c_uint from django.contrib.gis.geos.libgeos import CS_PTR, GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import ( check_geom, check_minus_one, check_string, ) # This is the return type used by binary output (WKB, HEX) routi...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py
Python
mit
3,398
import threading from ctypes import POINTER, Structure, byref, c_byte, c_char_p, c_int, c_size_t from django.contrib.gis.geos.base import GEOSBase from django.contrib.gis.geos.libgeos import ( GEOM_PTR, GEOSFuncFactory, geos_version_tuple, ) from django.contrib.gis.geos.prototypes.errcheck import ( che...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/io.py
Python
mit
11,489
""" This module is for the miscellaneous GEOS routines, particularly the ones that return the area, distance, and length. """ from ctypes import POINTER, c_double, c_int from django.contrib.gis.geos.libgeos import GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import check_dbl, check_stri...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py
Python
mit
1,168
""" This module houses the GEOS ctypes prototype functions for the unary and binary predicate operations on geometries. """ from ctypes import c_byte, c_char_p, c_double from django.contrib.gis.geos.libgeos import GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import check_predicate # #...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py
Python
mit
1,599
from ctypes import c_byte from django.contrib.gis.geos.libgeos import GEOM_PTR, PREPGEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import check_predicate # Prepared geometry constructor and destructors. geos_prepare = GEOSFuncFactory("GEOSPrepare", argtypes=[GEOM_PTR], restype=PREPGEOM_PTR...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py
Python
mit
1,175
import threading from django.contrib.gis.geos.base import GEOSBase from django.contrib.gis.geos.libgeos import CONTEXT_PTR, error_h, lgeos, notice_h class GEOSContextHandle(GEOSBase): """Represent a GEOS context handle.""" ptr_type = CONTEXT_PTR destructor = lgeos.finishGEOS_r def __init__(self): ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py
Python
mit
2,302
""" This module houses the GEOS ctypes prototype functions for the topological operations on geometries. """ from ctypes import c_double, c_int from django.contrib.gis.geos.libgeos import GEOM_PTR, GEOSFuncFactory from django.contrib.gis.geos.prototypes.errcheck import ( check_geom, check_minus_one, chec...
castiel248/Convert
Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py
Python
mit
2,327
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-18 09:16+0100\n" "PO-Revision-Date: 2015-03-18 08:35+0000\n" "Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Languag...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po
po
mit
1,478
# This file is distributed under the same license as the Django package. # # Translators: # Bashar Al-Abdulhadi, 2015-2016 # Bashar Al-Abdulhadi, 2014 # Eyad Toma <d.eyad.t@gmail.com>, 2013 # Jannis Leidel <jannis@leidel.info>, 2011 # Muaaz Alsaied, 2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-B...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po
po
mit
2,569
# This file is distributed under the same license as the Django package. # # Translators: # Riterix <infosrabah@gmail.com>, 2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2019-12-14 22:46+0000\n" "Last-Translator: Riterix...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po
po
mit
2,555
# This file is distributed under the same license as the Django package. # # Translators: # Ḷḷumex03 <tornes@opmbx.org>, 2014 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-09-23 19:51+0000\n" "Last-Translator: Jannis Lei...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po
po
mit
1,684
# This file is distributed under the same license as the Django package. # # Translators: # Ali Ismayilov <ali@ismailov.info>, 2011 # Emin Mastizada <emin@linux.com>, 2018,2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 20...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po
po
mit
2,172
# This file is distributed under the same license as the Django package. # # Translators: # Viktar Palstsiuk <vipals@gmail.com>, 2014-2015 # znotdead <zhirafchik@gmail.com>, 2016,2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-D...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po
po
mit
2,654
# This file is distributed under the same license as the Django package. # # Translators: # Georgi Kostadinov <grgkostadinov@gmail.com>, 2012 # Todor Lubenov <tlubenov@gmail.com>, 2016,2020 # Todor Lubenov <tlubenov@gmail.com>, 2011,2015,2021 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" ...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po
po
mit
2,654
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Tahmid Rafi <rafi.tahmid@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 20...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po
po
mit
1,929
# This file is distributed under the same license as the Django package. # # Translators: # Fulup <fulup.jakez@gmail.com>, 2012 # Irriep Nala Novram <allannkorh@yahoo.fr>, 2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 20...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po
po
mit
2,220
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-09-19 16:40+0000\n" "Last-Translator: Jan...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po
po
mit
1,905
# This file is distributed under the same license as the Django package. # # Translators: # Antoni Aloy <aaloy@apsl.net>, 2012,2015 # Carles Barrobés <carles@barrobes.com>, 2012,2014 # duub qnnp, 2015 # Jannis Leidel <jannis@leidel.info>, 2011 # Manel Clos <manelclos@gmail.com>, 2020 # Roger Pons <rogerpons@gmail.com>,...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po
po
mit
2,359
# This file is distributed under the same license as the Django package. # # Translators: # kosar tofiq <kosar.belana@gmail.com>, 2020 # Swara <swara09@gmail.com>, 2022 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2023-04-24...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ckb/LC_MESSAGES/django.po
po
mit
2,528
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Vláďa Macek <macek@sandbox.cz>, 2012,2014 # Vláďa Macek <macek@sandbox.cz>, 2015,2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 20...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po
po
mit
2,321
# This file is distributed under the same license as the Django package. # # Translators: # Maredudd ap Gwyndaf <maredudd@maredudd.com>, 2014 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-09-23 19:51+0000\n" "Last-Transl...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po
po
mit
1,900
# This file is distributed under the same license as the Django package. # # Translators: # Erik Wognsen <r4mses@gmail.com>, 2012,2014-2015,2019 # Finn Gruwier Larsen, 2011 # Jannis Leidel <jannis@leidel.info>, 2011 # Kristian Øllegaard <kristian@oellegaard.com>, 2012 msgid "" msgstr "" "Project-Id-Version: django\n" "...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po
po
mit
2,179
# This file is distributed under the same license as the Django package. # # Translators: # André Hagenbruch, 2012 # Jannis Leidel <jannis@leidel.info>, 2011-2012,2014-2015,2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po
po
mit
2,163
# This file is distributed under the same license as the Django package. # # Translators: # Michael Wolf <milupo@sorbzilla.de>, 2016,2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2020-02-25 16:08+0000\n" "Last-Translator...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po
po
mit
2,234
# This file is distributed under the same license as the Django package. # # Translators: # Anastasiadis Stavros <anastasiadis.st00@gmail.com>, 2014 # Dimitris Glezos <glezos@transifex.com>, 2011 # Elena Andreou <helenaandreou.ha@gmail.com>, 2016 # Fotis Athineos <fotis@transifex.com>, 2021 # Kostas Papadimitriou <vini...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po
po
mit
2,937
# This file is distributed under the same license as the Django package. # msgid "" msgstr "" "Project-Id-Version: Django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2010-05-13 15:35+0200\n" "Last-Translator: Django team\n" "Language-Team: English <en@li.org>\n" "Langua...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po
po
mit
2,225
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-18 09:16+0100\n" "PO-Revision-Date: 2015-03-18 08:35+0000\n" "Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Languag...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po
po
mit
1,494
# This file is distributed under the same license as the Django package. # # Translators: # jon_atkinson <jon@jonatkinson.co.uk>, 2011 # Ross Poulton <ross@rossp.org>, 2012 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-0...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po
po
mit
1,910
# This file is distributed under the same license as the Django package. # # Translators: # Baptiste Darthenay <baptiste+transifex@darthenay.fr>, 2012 # Baptiste Darthenay <baptiste+transifex@darthenay.fr>, 2014-2015 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-0...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po
po
mit
2,155
# This file is distributed under the same license as the Django package. # # Translators: # Antoni Aloy <aaloy@apsl.net>, 2012,2015-2016,2019 # Ernesto Avilés, 2015 # Ernesto Avilés, 2020 # Igor Támara <igor@tamarapatino.org>, 2015 # Jannis Leidel <jannis@leidel.info>, 2011 # Josue Naaman Nistal Guerra <josuenistal@hot...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po
po
mit
2,476
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Ramiro Morales, 2012,2014-2015,2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2019-10-...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po
po
mit
2,208
# This file is distributed under the same license as the Django package. # # Translators: # Antoni Aloy <aaloy@apsl.net>, 2012,2015 # Ernesto Avilés Vázquez <whippiii@gmail.com>, 2015 # Igor Támara <igor@tamarapatino.org>, 2015 # Jannis Leidel <jannis@leidel.info>, 2011 # Josue Naaman Nistal Guerra <josuenistal@hotmail...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po
po
mit
2,347
# This file is distributed under the same license as the Django package. # # Translators: # Abraham Estrada, 2011-2012 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-09-19 16:40+0000\n" "Last-Translator: Jannis Leidel <ja...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po
po
mit
1,928
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-18 09:16+0100\n" "PO-Revision-Date: 2015-03-18 08:35+0000\n" "Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Languag...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po
po
mit
1,494
# This file is distributed under the same license as the Django package. # # Translators: # eallik <eallik@gmail.com>, 2011 # Jannis Leidel <jannis@leidel.info>, 2011 # Janno Liivak <jannolii@gmail.com>, 2013-2015 # madisvain <madisvain@gmail.com>, 2011 # Martin Pajuste <martinpajuste@gmail.com>, 2015 # Ragnar Rebase <...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po
po
mit
2,282
# This file is distributed under the same license as the Django package. # # Translators: # Aitzol Naberan <anaberan@codesyntax.com>, 2011-2012 # Eneko Illarramendi <eneko@illarra.com>, 2017 # Urtzi Odriozola <urtzi.odriozola@gmail.com>, 2017,2021 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To:...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po
po
mit
2,197
# This file is distributed under the same license as the Django package. # # Translators: # Ali Nikneshan <ali@nikneshan.com>, 2012-2013,2020 # Alireza Savand <alireza.savand@gmail.com>, 2013 # Ali Vakilzade <ali.vakilzade@gmail.com>, 2015 # Jannis Leidel <jannis@leidel.info>, 2011 # Pouya Abbassi, 2016 # Saeed <sd.jav...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po
po
mit
2,596
# This file is distributed under the same license as the Django package. # # Translators: # Aarni Koskela, 2015,2020 # Antti Kaihola <antti.15+transifex@kaihola.fi>, 2011 # Jannis Leidel <jannis@leidel.info>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-0...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po
po
mit
2,114
# This file is distributed under the same license as the Django package. # # Translators: # Claude Paroz <claude@2xlibre.net>, 2014-2015,2017,2019 # Claude Paroz <claude@2xlibre.net>, 2012 # Jannis Leidel <jannis@leidel.info>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creati...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po
po
mit
2,306
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-18 09:16+0100\n" "PO-Revision-Date: 2015-03-18 08:35+0000\n" "Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Languag...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po
po
mit
1,484
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Michael Thornhill <michael@maithu.com>, 2012 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date:...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po
po
mit
1,968
# This file is distributed under the same license as the Django package. # # Translators: # GunChleoc, 2015-2016 # GunChleoc, 2015 # GunChleoc, 2015 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2019-12-13 12:40+0000\n" "Last...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po
po
mit
2,259
# This file is distributed under the same license as the Django package. # # Translators: # fasouto <fsoutomoure@gmail.com>, 2011 # fonso <fonzzo@gmail.com>, 2013 # Leandro Regueiro <leandro.regueiro@gmail.com>, 2013 # X Bello <xbello@gmail.com>, 2023 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po
po
mit
2,298
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Meir Kriheli <mkriheli@gmail.com>, 2012,2014-2015,2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revi...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po
po
mit
2,393
# This file is distributed under the same license as the Django package. # # Translators: # Chandan kumar <chandankumar.093047@gmail.com>, 2012 # Sandeep Satavlekar <sandysat@gmail.com>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Re...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po
po
mit
2,372
# This file is distributed under the same license as the Django package. # # Translators: # berislavlopac <berislav.lopac@gmail.com>, 2012 # Davor Lučić <r.dav.lc@gmail.com>, 2012 # Filip Cuk <filipcuk2@gmail.com>, 2016 # Jannis Leidel <jannis@leidel.info>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po
po
mit
2,132
# This file is distributed under the same license as the Django package. # # Translators: # Michael Wolf <milupo@sorbzilla.de>, 2016,2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-08 17:27+0200\n" "PO-Revision-Date: 2019-09-21 19:30+0000\n" "Last-Translator...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po
po
mit
2,211
# This file is distributed under the same license as the Django package. # # Translators: # András Veres-Szentkirályi, 2016 # Istvan Farkas <istvan.farkas@gmail.com>, 2019 # Jannis Leidel <jannis@leidel.info>, 2011 # Kristóf Gruber <>, 2012 # Szilveszter Farkas <szilveszter.farkas@gmail.com>, 2011 msgid "" msgstr "" "P...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po
po
mit
2,261
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2018-11-01 20:36+0000\n" "Last-Translator: Ruben Harutyunov <rharutyunov@mail.ru>\n" "Lan...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po
po
mit
2,603
# This file is distributed under the same license as the Django package. # # Translators: # Martijn Dekker <mcdutchie@hotmail.com>, 2012,2016 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-09-19 16:40+0000\n" "Last-Transl...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po
po
mit
2,116
# This file is distributed under the same license as the Django package. # # Translators: # Fery Setiawan <gembelweb@gmail.com>, 2016 # Jannis Leidel <jannis@leidel.info>, 2011 # M Asep Indrayana <me@drayanaindra.com>, 2015 # rodin <romihardiyanto@gmail.com>, 2011-2012 # rodin <romihardiyanto@gmail.com>, 2015-2016 # sa...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po
po
mit
2,353
# This file is distributed under the same license as the Django package. # # Translators: msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-18 09:16+0100\n" "PO-Revision-Date: 2015-03-18 08:35+0000\n" "Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Languag...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po
po
mit
1,472
# This file is distributed under the same license as the Django package. # # Translators: # Hafsteinn Einarsson <haffi67@gmail.com>, 2011-2012 # Jannis Leidel <jannis@leidel.info>, 2011 # Thordur Sigurdsson <thordur@ja.is>, 2019 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po
po
mit
1,934
# This file is distributed under the same license as the Django package. # # Translators: # yakky <i.spalletti@nephila.it>, 2015 # Jannis Leidel <jannis@leidel.info>, 2011 # Marco Bonetti, 2014 # Mirco Grillo <mirco.grillomg@gmail.com>, 2020 # Nicola Larosa <transifex@teknico.net>, 2012 # palmux <palmux@gmail.com>, 201...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po
po
mit
2,365
# This file is distributed under the same license as the Django package. # # Translators: # Jannis Leidel <jannis@leidel.info>, 2011 # Shinya Okano <tokibito@gmail.com>, 2012,2014-2015 # Takuya N <takninnovationresearch@gmail.com>, 2020 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-C...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po
po
mit
2,352
# This file is distributed under the same license as the Django package. # # Translators: # André Bouatchidzé <a@anbz.net>, 2013,2015 # avsd05 <avsd05@gmail.com>, 2011 # Jannis Leidel <jannis@leidel.info>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 1...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po
po
mit
2,571
# This file is distributed under the same license as the Django package. # # Translators: # yun_man_ger <germanilyin@gmail.com>, 2011 # Zhazira <zhazira.mt@gmail.com>, 2011 msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 16:49+0100\n" "PO-Revision-Date: 2017-0...
castiel248/Convert
Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po
po
mit
1,979