umap-project 1.14.0a5__py3-none-any.whl → 2.0.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (216) hide show
  1. umap/__init__.py +1 -1
  2. umap/decorators.py +0 -14
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +137 -85
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +136 -84
  7. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/el/LC_MESSAGES/django.po +136 -84
  9. umap/locale/en/LC_MESSAGES/django.po +128 -88
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +136 -84
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +131 -91
  14. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/hu/LC_MESSAGES/django.po +137 -85
  16. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  17. umap/locale/it/LC_MESSAGES/django.po +136 -84
  18. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  19. umap/locale/ms/LC_MESSAGES/django.po +136 -84
  20. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  21. umap/locale/pl/LC_MESSAGES/django.po +136 -84
  22. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  23. umap/locale/sv/LC_MESSAGES/django.po +135 -83
  24. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  25. umap/locale/zh_TW/LC_MESSAGES/django.po +143 -91
  26. umap/models.py +23 -1
  27. umap/settings/__init__.py +1 -4
  28. umap/settings/base.py +1 -0
  29. umap/static/umap/base.css +5 -0
  30. umap/static/umap/content.css +185 -13
  31. umap/static/umap/favicons/icon.svg +2 -2
  32. umap/static/umap/img/edit.svg +3 -3
  33. umap/static/umap/img/icon-delete.svg +4 -0
  34. umap/static/umap/img/icon-download.svg +13 -0
  35. umap/static/umap/img/icon-duplicate.svg +5 -0
  36. umap/static/umap/img/icon-edit.svg +12 -0
  37. umap/static/umap/img/icon-share.svg +11 -0
  38. umap/static/umap/img/icon-view.svg +12 -0
  39. umap/static/umap/img/logo.svg +2 -2
  40. umap/static/umap/img/logo_small.svg +2 -2
  41. umap/static/umap/img/marker.svg +4 -0
  42. umap/static/umap/img/opensource.svg +2 -2
  43. umap/static/umap/img/osm.svg +2 -2
  44. umap/static/umap/js/components/fragment.js +1 -1
  45. umap/static/umap/js/modules/browser.js +159 -0
  46. umap/static/umap/js/modules/global.js +3 -1
  47. umap/static/umap/js/modules/request.js +155 -0
  48. umap/static/umap/js/umap.autocomplete.js +28 -38
  49. umap/static/umap/js/umap.controls.js +73 -58
  50. umap/static/umap/js/umap.core.js +4 -9
  51. umap/static/umap/js/umap.datalayer.permissions.js +13 -12
  52. umap/static/umap/js/umap.features.js +51 -49
  53. umap/static/umap/js/umap.forms.js +19 -19
  54. umap/static/umap/js/umap.icon.js +17 -17
  55. umap/static/umap/js/umap.importer.js +2 -1
  56. umap/static/umap/js/umap.js +242 -291
  57. umap/static/umap/js/umap.layer.js +173 -141
  58. umap/static/umap/js/umap.permissions.js +24 -25
  59. umap/static/umap/js/umap.popup.js +14 -14
  60. umap/static/umap/js/umap.share.js +4 -4
  61. umap/static/umap/js/umap.slideshow.js +4 -4
  62. umap/static/umap/js/umap.tableeditor.js +2 -2
  63. umap/static/umap/js/umap.ui.js +1 -1
  64. umap/static/umap/locale/am_ET.js +1 -11
  65. umap/static/umap/locale/am_ET.json +1 -11
  66. umap/static/umap/locale/ar.js +1 -11
  67. umap/static/umap/locale/ar.json +1 -11
  68. umap/static/umap/locale/ast.js +1 -11
  69. umap/static/umap/locale/ast.json +1 -11
  70. umap/static/umap/locale/bg.js +1 -11
  71. umap/static/umap/locale/bg.json +1 -11
  72. umap/static/umap/locale/br.js +1 -11
  73. umap/static/umap/locale/br.json +1 -11
  74. umap/static/umap/locale/ca.js +1 -11
  75. umap/static/umap/locale/ca.json +1 -11
  76. umap/static/umap/locale/cs_CZ.js +1 -11
  77. umap/static/umap/locale/cs_CZ.json +1 -11
  78. umap/static/umap/locale/da.js +1 -11
  79. umap/static/umap/locale/da.json +1 -11
  80. umap/static/umap/locale/de.js +1 -11
  81. umap/static/umap/locale/de.json +1 -11
  82. umap/static/umap/locale/el.js +1 -11
  83. umap/static/umap/locale/el.json +1 -11
  84. umap/static/umap/locale/en.js +1 -11
  85. umap/static/umap/locale/en.json +1 -11
  86. umap/static/umap/locale/en_US.json +1 -11
  87. umap/static/umap/locale/es.js +1 -11
  88. umap/static/umap/locale/es.json +1 -11
  89. umap/static/umap/locale/et.js +1 -11
  90. umap/static/umap/locale/et.json +1 -11
  91. umap/static/umap/locale/fa_IR.js +6 -16
  92. umap/static/umap/locale/fa_IR.json +6 -16
  93. umap/static/umap/locale/fi.js +1 -11
  94. umap/static/umap/locale/fi.json +1 -11
  95. umap/static/umap/locale/fr.js +1 -11
  96. umap/static/umap/locale/fr.json +1 -11
  97. umap/static/umap/locale/gl.js +1 -11
  98. umap/static/umap/locale/gl.json +1 -11
  99. umap/static/umap/locale/he.js +1 -11
  100. umap/static/umap/locale/he.json +1 -11
  101. umap/static/umap/locale/hr.js +1 -11
  102. umap/static/umap/locale/hr.json +1 -11
  103. umap/static/umap/locale/hu.js +1 -11
  104. umap/static/umap/locale/hu.json +1 -11
  105. umap/static/umap/locale/id.js +1 -11
  106. umap/static/umap/locale/id.json +1 -11
  107. umap/static/umap/locale/is.js +1 -11
  108. umap/static/umap/locale/is.json +1 -11
  109. umap/static/umap/locale/it.js +1 -11
  110. umap/static/umap/locale/it.json +1 -11
  111. umap/static/umap/locale/ja.js +1 -11
  112. umap/static/umap/locale/ja.json +1 -11
  113. umap/static/umap/locale/ko.js +1 -11
  114. umap/static/umap/locale/ko.json +1 -11
  115. umap/static/umap/locale/lt.js +1 -11
  116. umap/static/umap/locale/lt.json +1 -11
  117. umap/static/umap/locale/ms.js +1 -11
  118. umap/static/umap/locale/ms.json +1 -11
  119. umap/static/umap/locale/nl.js +1 -11
  120. umap/static/umap/locale/nl.json +1 -11
  121. umap/static/umap/locale/no.js +1 -11
  122. umap/static/umap/locale/no.json +1 -11
  123. umap/static/umap/locale/pl.js +1 -11
  124. umap/static/umap/locale/pl.json +1 -11
  125. umap/static/umap/locale/pl_PL.json +1 -11
  126. umap/static/umap/locale/pt.js +1 -11
  127. umap/static/umap/locale/pt.json +1 -11
  128. umap/static/umap/locale/pt_BR.js +1 -11
  129. umap/static/umap/locale/pt_BR.json +1 -11
  130. umap/static/umap/locale/pt_PT.js +1 -11
  131. umap/static/umap/locale/pt_PT.json +1 -11
  132. umap/static/umap/locale/ro.js +1 -11
  133. umap/static/umap/locale/ro.json +1 -11
  134. umap/static/umap/locale/ru.js +1 -11
  135. umap/static/umap/locale/ru.json +1 -11
  136. umap/static/umap/locale/sk_SK.js +1 -11
  137. umap/static/umap/locale/sk_SK.json +1 -11
  138. umap/static/umap/locale/sl.js +1 -11
  139. umap/static/umap/locale/sl.json +1 -11
  140. umap/static/umap/locale/sr.js +1 -11
  141. umap/static/umap/locale/sr.json +1 -11
  142. umap/static/umap/locale/sv.js +1 -11
  143. umap/static/umap/locale/sv.json +1 -11
  144. umap/static/umap/locale/th_TH.js +1 -11
  145. umap/static/umap/locale/th_TH.json +1 -11
  146. umap/static/umap/locale/tr.js +1 -11
  147. umap/static/umap/locale/tr.json +1 -11
  148. umap/static/umap/locale/uk_UA.js +1 -11
  149. umap/static/umap/locale/uk_UA.json +1 -11
  150. umap/static/umap/locale/vi.js +1 -11
  151. umap/static/umap/locale/vi.json +1 -11
  152. umap/static/umap/locale/vi_VN.json +1 -11
  153. umap/static/umap/locale/zh.js +1 -11
  154. umap/static/umap/locale/zh.json +1 -11
  155. umap/static/umap/locale/zh_CN.json +1 -11
  156. umap/static/umap/locale/zh_TW.Big5.json +1 -11
  157. umap/static/umap/locale/zh_TW.js +17 -27
  158. umap/static/umap/locale/zh_TW.json +17 -27
  159. umap/static/umap/map.css +2 -2
  160. umap/static/umap/nav.css +2 -1
  161. umap/static/umap/test/.eslintrc +0 -1
  162. umap/static/umap/test/Choropleth.js +29 -27
  163. umap/static/umap/test/DataLayer.js +207 -239
  164. umap/static/umap/test/Feature.js +33 -58
  165. umap/static/umap/test/Map.Export.js +11 -11
  166. umap/static/umap/test/Map.js +66 -67
  167. umap/static/umap/test/Marker.js +36 -32
  168. umap/static/umap/test/Polygon.js +95 -95
  169. umap/static/umap/test/Polyline.js +31 -31
  170. umap/static/umap/test/TableEditor.js +29 -25
  171. umap/static/umap/test/_pre.js +2 -7
  172. umap/static/umap/test/index.html +4 -4
  173. umap/storage.py +2 -0
  174. umap/templates/auth/user_form.html +3 -2
  175. umap/templates/base.html +1 -0
  176. umap/templates/registration/login.html +51 -36
  177. umap/templates/umap/about_summary.html +1 -1
  178. umap/templates/umap/branding.html +3 -0
  179. umap/templates/umap/content.html +15 -39
  180. umap/templates/umap/header.html +0 -0
  181. umap/templates/umap/home.html +4 -2
  182. umap/templates/umap/js.html +0 -2
  183. umap/templates/umap/map_detail.html +9 -0
  184. umap/templates/umap/map_init.html +1 -1
  185. umap/templates/umap/map_messages.html +4 -2
  186. umap/templates/umap/map_table.html +130 -69
  187. umap/templates/umap/navigation.html +2 -4
  188. umap/templates/umap/user_dashboard.html +29 -6
  189. umap/tests/base.py +1 -1
  190. umap/tests/integration/conftest.py +18 -0
  191. umap/tests/integration/test_anonymous_owned_map.py +6 -3
  192. umap/tests/integration/test_browser.py +166 -6
  193. umap/tests/integration/test_collaborative_editing.py +23 -5
  194. umap/tests/integration/test_dashboard.py +17 -0
  195. umap/tests/integration/test_edit_datalayer.py +4 -3
  196. umap/tests/integration/test_export_map.py +1 -1
  197. umap/tests/integration/test_import.py +9 -4
  198. umap/tests/integration/test_map.py +64 -0
  199. umap/tests/integration/test_map_preview.py +75 -0
  200. umap/tests/integration/test_owned_map.py +11 -25
  201. umap/tests/integration/test_picto.py +3 -3
  202. umap/tests/integration/test_querystring.py +52 -0
  203. umap/tests/integration/test_share.py +22 -0
  204. umap/tests/test_map_views.py +157 -14
  205. umap/tests/test_views.py +50 -11
  206. umap/urls.py +6 -12
  207. umap/views.py +170 -47
  208. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/METADATA +13 -15
  209. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/RECORD +212 -200
  210. umap/static/umap/js/umap.browser.js +0 -148
  211. umap/static/umap/js/umap.xhr.js +0 -304
  212. umap/static/umap/test/Controls.js +0 -100
  213. umap/static/umap/test/Map.Init.js +0 -46
  214. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/WHEEL +0 -0
  215. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/entry_points.txt +0 -0
  216. {umap_project-1.14.0a5.dist-info → umap_project-2.0.0a1.dist-info}/licenses/LICENSE +0 -0
umap/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION = "1.14.0a5"
1
+ VERSION = "2.0.0a1"
umap/decorators.py CHANGED
@@ -60,17 +60,3 @@ def can_view_map(view_func):
60
60
  return view_func(request, *args, **kwargs)
61
61
 
62
62
  return wrapper
63
-
64
-
65
- def jsonize_view(view_func):
66
- @wraps(view_func)
67
- def wrapper(request, *args, **kwargs):
68
- response = view_func(request, *args, **kwargs)
69
- response_kwargs = {}
70
- if hasattr(response, "rendered_content"):
71
- response_kwargs["html"] = response.rendered_content
72
- if response.has_header("location"):
73
- response_kwargs["redirect"] = response["location"]
74
- return simple_json_response(**response_kwargs)
75
-
76
- return wrapper
Binary file
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2024-01-08 12:33+0000\n"
13
+ "POT-Creation-Date: 2024-02-09 10:52+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
15
  "Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2024\n"
16
16
  "Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
@@ -28,7 +28,7 @@ msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
28
28
  msgid "Everyone can edit"
29
29
  msgstr "An holl a c'hall kemmañ"
30
30
 
31
- #: forms.py:69 models.py:349
31
+ #: forms.py:69 models.py:371
32
32
  msgid "Inherit"
33
33
  msgstr "Dre ziouer"
34
34
 
@@ -36,107 +36,107 @@ msgstr "Dre ziouer"
36
36
  msgid "Site is readonly for maintenance"
37
37
  msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
38
38
 
39
- #: models.py:49
39
+ #: models.py:50
40
40
  msgid "name"
41
41
  msgstr "anv"
42
42
 
43
- #: models.py:80
43
+ #: models.py:81
44
44
  msgid "details"
45
45
  msgstr "munudoù"
46
46
 
47
- #: models.py:81
47
+ #: models.py:82
48
48
  msgid "Link to a page where the licence is detailed."
49
49
  msgstr "Liamm war-zu ur bajenn a zispleg an aotre-implijout."
50
50
 
51
- #: models.py:91
51
+ #: models.py:92
52
52
  msgid "URL template using OSM tile format"
53
53
  msgstr "Patrom URL a implij furmad teol OSM"
54
54
 
55
- #: models.py:97
55
+ #: models.py:98
56
56
  msgid "Order of the tilelayers in the edit box"
57
57
  msgstr ""
58
58
 
59
- #: models.py:143 models.py:350
59
+ #: models.py:144 models.py:372
60
60
  msgid "Everyone"
61
61
  msgstr "An holl"
62
62
 
63
- #: models.py:144 models.py:150 models.py:351
63
+ #: models.py:145 models.py:151 models.py:373
64
64
  msgid "Editors only"
65
65
  msgstr "Aozerien nemetken"
66
66
 
67
- #: models.py:145 models.py:352
67
+ #: models.py:146 models.py:374
68
68
  msgid "Owner only"
69
69
  msgstr "Ar perc'henner hepken"
70
70
 
71
- #: models.py:148
71
+ #: models.py:149
72
72
  msgid "Everyone (public)"
73
73
  msgstr "An holl (publik)"
74
74
 
75
- #: models.py:149
75
+ #: models.py:150
76
76
  msgid "Anyone with link"
77
77
  msgstr "Piv bennak en deus ul liamm"
78
78
 
79
- #: models.py:151
79
+ #: models.py:152
80
80
  msgid "Blocked"
81
81
  msgstr "Stanket"
82
82
 
83
- #: models.py:154 models.py:356
83
+ #: models.py:155 models.py:378
84
84
  msgid "description"
85
85
  msgstr "deskrivadur"
86
86
 
87
- #: models.py:155
87
+ #: models.py:156
88
88
  msgid "center"
89
89
  msgstr "kreizañ"
90
90
 
91
- #: models.py:156
91
+ #: models.py:157
92
92
  msgid "zoom"
93
93
  msgstr "zoumañ"
94
94
 
95
- #: models.py:158
95
+ #: models.py:159
96
96
  msgid "locate"
97
97
  msgstr "lec'hiañ"
98
98
 
99
- #: models.py:158
99
+ #: models.py:159
100
100
  msgid "Locate user on load?"
101
101
  msgstr "Lec'hiañ an implijer en ur gargañ?"
102
102
 
103
- #: models.py:162
103
+ #: models.py:163
104
104
  msgid "Choose the map licence."
105
105
  msgstr "Dibabit aotre-implijout ar gartenn."
106
106
 
107
- #: models.py:163
107
+ #: models.py:164
108
108
  msgid "licence"
109
109
  msgstr "aotre"
110
110
 
111
- #: models.py:174
111
+ #: models.py:175
112
112
  msgid "owner"
113
113
  msgstr "perc'henner"
114
114
 
115
- #: models.py:178
115
+ #: models.py:179
116
116
  msgid "editors"
117
117
  msgstr "aozerien"
118
118
 
119
- #: models.py:183 models.py:370
119
+ #: models.py:184 models.py:392
120
120
  msgid "edit status"
121
121
  msgstr "statud aozañ"
122
122
 
123
- #: models.py:188
123
+ #: models.py:189
124
124
  msgid "share status"
125
125
  msgstr "digor da biv?"
126
126
 
127
- #: models.py:191 models.py:365
127
+ #: models.py:192 models.py:387
128
128
  msgid "settings"
129
129
  msgstr "arventennoù"
130
130
 
131
- #: models.py:298
131
+ #: models.py:320
132
132
  msgid "Clone of"
133
133
  msgstr "Eilenn eus"
134
134
 
135
- #: models.py:360
135
+ #: models.py:382
136
136
  msgid "display on load"
137
137
  msgstr "diskwel pa vez karget"
138
138
 
139
- #: models.py:361
139
+ #: models.py:383
140
140
  msgid "Display this layer on load."
141
141
  msgstr "Diskwel ar gwiskad-mañ pa vez karget"
142
142
 
@@ -154,28 +154,27 @@ msgstr "Merdeiñ e kartennoù %(current_user)s"
154
154
  msgid "%(current_user)s has no maps."
155
155
  msgstr "%(current_user)s n'en/he deus kartenn ebet."
156
156
 
157
- #: templates/auth/user_form.html:6 templates/umap/navigation.html:12
158
- #: templates/umap/user_dashboard.html:4 templates/umap/user_dashboard.html:10
159
- msgid "My Dashboard"
160
- msgstr "Ma zaolenn-vourzh"
161
-
162
157
  #: templates/auth/user_form.html:6
158
+ msgid "My Maps"
159
+ msgstr ""
160
+
161
+ #: templates/auth/user_form.html:7
163
162
  msgid "My Profile"
164
163
  msgstr "Ma frofil"
165
164
 
166
- #: templates/auth/user_form.html:19
165
+ #: templates/auth/user_form.html:20
167
166
  msgid "Save"
168
167
  msgstr "Enrollañ"
169
168
 
170
- #: templates/auth/user_form.html:24
169
+ #: templates/auth/user_form.html:25
171
170
  msgid "Your current providers"
172
171
  msgstr "Ho pourchaserien a-vremañ"
173
172
 
174
- #: templates/auth/user_form.html:30
173
+ #: templates/auth/user_form.html:31
175
174
  msgid "Connect to another provider"
176
175
  msgstr "Kennaskañ ouzh ur pourchaser all"
177
176
 
178
- #: templates/auth/user_form.html:32
177
+ #: templates/auth/user_form.html:33
179
178
  msgid ""
180
179
  "It's a good habit to connect your account to more than one provider, in case"
181
180
  " one provider becomes unavailable, temporarily or even permanently."
@@ -197,23 +196,23 @@ msgid ""
197
196
  "them in your site."
198
197
  msgstr "uMap a ro tro deoc'h da grouiñ kartennoù en ur serr-lagad gant foñsoù OpenStreetMap ha d'o enframmañ e-barzh ho lec'hienn."
199
198
 
200
- #: templates/registration/login.html:3
199
+ #: templates/registration/login.html:16
201
200
  msgid "Please log in with your account"
202
201
  msgstr "Kevreit gant ho kont mar plij"
203
202
 
204
- #: templates/registration/login.html:15
203
+ #: templates/registration/login.html:28
205
204
  msgid "Username"
206
205
  msgstr "Anv implijer"
207
206
 
208
- #: templates/registration/login.html:18
207
+ #: templates/registration/login.html:31
209
208
  msgid "Password"
210
209
  msgstr "Ger-tremen"
211
210
 
212
- #: templates/registration/login.html:19
211
+ #: templates/registration/login.html:32
213
212
  msgid "Login"
214
213
  msgstr "Kevreañ"
215
214
 
216
- #: templates/registration/login.html:24
215
+ #: templates/registration/login.html:37
217
216
  msgid "Please choose a provider"
218
217
  msgstr "Dibabit ur pourchaser mar plij"
219
218
 
@@ -257,8 +256,8 @@ msgstr "Enframmañ ha rannañ ho kartenn"
257
256
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
258
257
  msgstr "Hag <a href=\"%(repo_url)s\">open source</a> eo!"
259
258
 
260
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:42
261
- #: templates/umap/user_dashboard.html:20
259
+ #: templates/umap/about_summary.html:48 templates/umap/navigation.html:40
260
+ #: templates/umap/user_dashboard.html:41
262
261
  msgid "Create a map"
263
262
  msgstr "Krouiñ ur gartenn"
264
263
 
@@ -266,13 +265,13 @@ msgstr "Krouiñ ur gartenn"
266
265
  msgid "Play with the demo"
267
266
  msgstr "Amprouiñ an tañva!"
268
267
 
269
- #: templates/umap/content.html:23
268
+ #: templates/umap/content.html:22
270
269
  msgid ""
271
270
  "This instance of uMap is currently in read only mode, no creation/edit is "
272
271
  "allowed."
273
272
  msgstr "uMap zo da lenn hepken evit ar mare, n'haller ket krouiñ/aozañ."
274
273
 
275
- #: templates/umap/content.html:31
274
+ #: templates/umap/content.html:30
276
275
  #, python-format
277
276
  msgid ""
278
277
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -285,7 +284,7 @@ msgstr ""
285
284
  msgid "Map of the uMaps"
286
285
  msgstr "Kartenn an uMapoù"
287
286
 
288
- #: templates/umap/home.html:13
287
+ #: templates/umap/home.html:14
289
288
  msgid "Get inspired, browse maps"
290
289
  msgstr "Bezit awenet en ur furchal kartennoù"
291
290
 
@@ -293,7 +292,7 @@ msgstr "Bezit awenet en ur furchal kartennoù"
293
292
  msgid "You are logged in. Continuing..."
294
293
  msgstr "Kevreet oc'h. Gortozit ur pennadig..."
295
294
 
296
- #: templates/umap/map_list.html:9 views.py:296
295
+ #: templates/umap/map_list.html:9 views.py:341
297
296
  msgid "by"
298
297
  msgstr "gant"
299
298
 
@@ -310,86 +309,118 @@ msgid "Preview"
310
309
  msgstr "Rakwel"
311
310
 
312
311
  #: templates/umap/map_table.html:7
313
- msgid "Who can see / edit"
314
- msgstr "Piv a c'hall gwelet / aozañ"
312
+ msgid "Who can see"
313
+ msgstr ""
315
314
 
316
315
  #: templates/umap/map_table.html:8
316
+ msgid "Who can edit"
317
+ msgstr ""
318
+
319
+ #: templates/umap/map_table.html:9
317
320
  msgid "Last save"
318
321
  msgstr "Enrollet da ziwezhañ"
319
322
 
320
- #: templates/umap/map_table.html:9
323
+ #: templates/umap/map_table.html:10
321
324
  msgid "Owner"
322
325
  msgstr "Perc'henner"
323
326
 
324
- #: templates/umap/map_table.html:10
327
+ #: templates/umap/map_table.html:11
325
328
  msgid "Actions"
326
329
  msgstr "Oberoù"
327
330
 
328
- #: templates/umap/map_table.html:22
331
+ #: templates/umap/map_table.html:24 templates/umap/map_table.html:26
329
332
  msgid "Open preview"
330
333
  msgstr "Digeriñ ar rakwel"
331
334
 
332
- #: templates/umap/map_table.html:38
335
+ #: templates/umap/map_table.html:45 templates/umap/map_table.html:47
333
336
  msgid "Share"
334
337
  msgstr "Rannañ"
335
338
 
336
- #: templates/umap/map_table.html:39
339
+ #: templates/umap/map_table.html:50 templates/umap/map_table.html:52
337
340
  msgid "Edit"
338
341
  msgstr "Aozañ"
339
342
 
340
- #: templates/umap/map_table.html:40
343
+ #: templates/umap/map_table.html:55 templates/umap/map_table.html:57
341
344
  msgid "Download"
342
345
  msgstr "Pellgargañ"
343
346
 
344
- #: templates/umap/map_table.html:49
347
+ #: templates/umap/map_table.html:62 templates/umap/map_table.html:64
348
+ msgid "Clone"
349
+ msgstr ""
350
+
351
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
352
+ msgid "Delete"
353
+ msgstr ""
354
+
355
+ #: templates/umap/map_table.html:86
345
356
  msgid "first"
346
357
  msgstr "kentañ"
347
358
 
348
- #: templates/umap/map_table.html:50
359
+ #: templates/umap/map_table.html:87
349
360
  msgid "previous"
350
361
  msgstr "kent"
351
362
 
352
- #: templates/umap/map_table.html:59
363
+ #: templates/umap/map_table.html:96
353
364
  #, python-format
354
365
  msgid ""
355
366
  "\n"
356
- " Page %(maps_number)s of %(num_pages)s\n"
357
- " "
358
- msgstr "\n Pajenn %(maps_number)s diwar %(num_pages)s\n "
367
+ " Page %(maps_number)s of %(num_pages)s\n"
368
+ " "
369
+ msgstr ""
359
370
 
360
- #: templates/umap/map_table.html:65
371
+ #: templates/umap/map_table.html:102
361
372
  msgid "next"
362
373
  msgstr "war-lerc'h"
363
374
 
364
- #: templates/umap/map_table.html:66
375
+ #: templates/umap/map_table.html:103
365
376
  msgid "last"
366
377
  msgstr "diwezhañ"
367
378
 
368
- #: templates/umap/navigation.html:15
379
+ #: templates/umap/map_table.html:111
380
+ #, python-format
381
+ msgid ""
382
+ "\n"
383
+ " Lines per page: %(per_page)s\n"
384
+ " "
385
+ msgstr ""
386
+
387
+ #: templates/umap/map_table.html:116
388
+ #, python-format
389
+ msgid ""
390
+ "\n"
391
+ " %(count)s maps\n"
392
+ " "
393
+ msgstr ""
394
+
395
+ #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
396
+ msgid "My Dashboard"
397
+ msgstr "Ma zaolenn-vourzh"
398
+
399
+ #: templates/umap/navigation.html:13
369
400
  msgid "Starred maps"
370
401
  msgstr "Kartennoù spilhennet"
371
402
 
372
- #: templates/umap/navigation.html:19
403
+ #: templates/umap/navigation.html:17
373
404
  msgid "Log in"
374
405
  msgstr "Kevreañ"
375
406
 
376
- #: templates/umap/navigation.html:19
407
+ #: templates/umap/navigation.html:17
377
408
  msgid "Sign in"
378
409
  msgstr "Krouiñ ur gont"
379
410
 
380
- #: templates/umap/navigation.html:23
411
+ #: templates/umap/navigation.html:21
381
412
  msgid "About"
382
413
  msgstr "Diwar-benn"
383
414
 
384
- #: templates/umap/navigation.html:26
415
+ #: templates/umap/navigation.html:24
385
416
  msgid "Help"
386
417
  msgstr "Skoazell"
387
418
 
388
- #: templates/umap/navigation.html:31
419
+ #: templates/umap/navigation.html:29
389
420
  msgid "Change password"
390
421
  msgstr "Cheñch ar ger-tremen"
391
422
 
392
- #: templates/umap/navigation.html:35
423
+ #: templates/umap/navigation.html:33
393
424
  msgid "Log out"
394
425
  msgstr "Digevreañ"
395
426
 
@@ -449,7 +480,7 @@ msgstr "Kartennoù krouet da ziwezhañ"
449
480
  msgid "Search maps"
450
481
  msgstr "Klask kartennoù"
451
482
 
452
- #: templates/umap/search_bar.html:14
483
+ #: templates/umap/search_bar.html:14 templates/umap/user_dashboard.html:25
453
484
  msgid "Search"
454
485
  msgstr "Klask"
455
486
 
@@ -457,60 +488,81 @@ msgstr "Klask"
457
488
  msgid "Search my maps"
458
489
  msgstr "Klask e-touez ma c'hartennoù"
459
490
 
460
- #: templates/umap/user_dashboard.html:10
491
+ #: templates/umap/user_dashboard.html:11
492
+ #, python-format
493
+ msgid "My Maps (%(count)s)"
494
+ msgstr ""
495
+
496
+ #: templates/umap/user_dashboard.html:13
461
497
  msgid "My profile"
462
498
  msgstr "Ma frofil"
463
499
 
464
- #: templates/umap/user_dashboard.html:20
500
+ #: templates/umap/user_dashboard.html:21
501
+ msgid "Map’s title"
502
+ msgstr ""
503
+
504
+ #: templates/umap/user_dashboard.html:31
505
+ #, python-format
506
+ msgid ""
507
+ "\n"
508
+ " Download %(count)s maps\n"
509
+ " "
510
+ msgstr ""
511
+
512
+ #: templates/umap/user_dashboard.html:41
465
513
  msgid "You have no map yet."
466
514
  msgstr "N'ho peus kartenn ebet c'hoazh."
467
515
 
468
- #: views.py:301
516
+ #: views.py:346
469
517
  msgid "View the map"
470
518
  msgstr "Diskouez ar gartenn"
471
519
 
472
- #: views.py:660
520
+ #: views.py:704
521
+ msgid "See full screen"
522
+ msgstr ""
523
+
524
+ #: views.py:779
473
525
  msgid "Map has been updated!"
474
526
  msgstr "Hizivaet eo bet ar gartenn!"
475
527
 
476
- #: views.py:685
528
+ #: views.py:804
477
529
  msgid "Map editors updated with success!"
478
530
  msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
479
531
 
480
- #: views.py:723
532
+ #: views.py:842
481
533
  #, python-format
482
534
  msgid "The uMap edit link for your map: %(map_name)s"
483
535
  msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
484
536
 
485
- #: views.py:726
537
+ #: views.py:845
486
538
  #, python-format
487
539
  msgid "Here is your secret edit link: %(link)s"
488
540
  msgstr "Setu ho liamm aozañ kuzh: %(link)s"
489
541
 
490
- #: views.py:732
542
+ #: views.py:851
491
543
  #, python-format
492
544
  msgid "Email sent to %(email)s"
493
545
  msgstr "Postel kaset da %(email)s"
494
546
 
495
- #: views.py:743
547
+ #: views.py:862
496
548
  msgid "Only its owner can delete the map."
497
549
  msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
498
550
 
499
- #: views.py:766
551
+ #: views.py:890
500
552
  #, python-format
501
553
  msgid ""
502
554
  "Your map has been cloned! If you want to edit this map from another "
503
555
  "computer, please use this link: %(anonymous_url)s"
504
556
  msgstr "Eilet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
505
557
 
506
- #: views.py:771
558
+ #: views.py:895
507
559
  msgid "Congratulations, your map has been cloned!"
508
560
  msgstr "Eilet eo bet ho kartenn gant berzh!"
509
561
 
510
- #: views.py:1007
562
+ #: views.py:1131
511
563
  msgid "Layer successfully deleted."
512
564
  msgstr "Gwiskad dilamet gant berzh."
513
565
 
514
- #: views.py:1029
566
+ #: views.py:1153
515
567
  msgid "Permissions updated with success!"
516
568
  msgstr "Aotreoù hizivaet gant berzh!"
Binary file