umap-project 1.14.0a1__py3-none-any.whl → 1.14.0a2__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.
- umap/__init__.py +1 -1
- umap/static/.gitignore +0 -0
- umap/static/umap/base.css +994 -0
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/content.css +395 -0
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/font/FiraSans-Light.woff +0 -0
- umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- umap/static/umap/font.css +33 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/img/16-white.svg +190 -0
- umap/static/umap/img/16.svg +182 -0
- umap/static/umap/img/24-white.svg +62 -0
- umap/static/umap/img/24.svg +90 -0
- umap/static/umap/img/edit.svg +7 -0
- umap/static/umap/img/icon-bg.png +0 -0
- umap/static/umap/img/logo.svg +4 -0
- umap/static/umap/img/logo_filigree.png +0 -0
- umap/static/umap/img/logo_small.svg +14 -0
- umap/static/umap/img/marker.png +0 -0
- umap/static/umap/img/opensource.svg +7 -0
- umap/static/umap/img/osm.svg +7 -0
- umap/static/umap/img/search.gif +0 -0
- umap/static/umap/img/source/16-white.svg +980 -0
- umap/static/umap/img/source/16.svg +201 -0
- umap/static/umap/img/source/24-white.svg +83 -0
- umap/static/umap/img/source/24.svg +110 -0
- umap/static/umap/js/components/fragment.js +13 -0
- umap/static/umap/js/modules/global.js +8 -0
- umap/static/umap/js/modules/urls.js +29 -0
- umap/static/umap/js/umap.autocomplete.js +336 -0
- umap/static/umap/js/umap.browser.js +148 -0
- umap/static/umap/js/umap.controls.js +1542 -0
- umap/static/umap/js/umap.core.js +851 -0
- umap/static/umap/js/umap.datalayer.permissions.js +72 -0
- umap/static/umap/js/umap.features.js +1216 -0
- umap/static/umap/js/umap.forms.js +1267 -0
- umap/static/umap/js/umap.icon.js +234 -0
- umap/static/umap/js/umap.importer.js +166 -0
- umap/static/umap/js/umap.js +2010 -0
- umap/static/umap/js/umap.layer.js +1636 -0
- umap/static/umap/js/umap.permissions.js +212 -0
- umap/static/umap/js/umap.popup.js +340 -0
- umap/static/umap/js/umap.share.js +254 -0
- umap/static/umap/js/umap.slideshow.js +165 -0
- umap/static/umap/js/umap.tableeditor.js +120 -0
- umap/static/umap/js/umap.ui.js +240 -0
- umap/static/umap/js/umap.xhr.js +304 -0
- umap/static/umap/locale/am_ET.js +447 -0
- umap/static/umap/locale/am_ET.json +445 -0
- umap/static/umap/locale/ar.js +447 -0
- umap/static/umap/locale/ar.json +445 -0
- umap/static/umap/locale/ast.js +447 -0
- umap/static/umap/locale/ast.json +445 -0
- umap/static/umap/locale/bg.js +447 -0
- umap/static/umap/locale/bg.json +445 -0
- umap/static/umap/locale/br.js +447 -0
- umap/static/umap/locale/br.json +445 -0
- umap/static/umap/locale/ca.js +447 -0
- umap/static/umap/locale/ca.json +445 -0
- umap/static/umap/locale/cs_CZ.js +447 -0
- umap/static/umap/locale/cs_CZ.json +445 -0
- umap/static/umap/locale/da.js +447 -0
- umap/static/umap/locale/da.json +445 -0
- umap/static/umap/locale/de.js +447 -0
- umap/static/umap/locale/de.json +445 -0
- umap/static/umap/locale/el.js +447 -0
- umap/static/umap/locale/el.json +445 -0
- umap/static/umap/locale/en.js +447 -0
- umap/static/umap/locale/en.json +445 -0
- umap/static/umap/locale/en_US.json +445 -0
- umap/static/umap/locale/es.js +447 -0
- umap/static/umap/locale/es.json +445 -0
- umap/static/umap/locale/et.js +447 -0
- umap/static/umap/locale/et.json +445 -0
- umap/static/umap/locale/eu.js +413 -0
- umap/static/umap/locale/eu.json +411 -0
- umap/static/umap/locale/fa_IR.js +447 -0
- umap/static/umap/locale/fa_IR.json +445 -0
- umap/static/umap/locale/fi.js +447 -0
- umap/static/umap/locale/fi.json +445 -0
- umap/static/umap/locale/fr.js +447 -0
- umap/static/umap/locale/fr.json +445 -0
- umap/static/umap/locale/gl.js +447 -0
- umap/static/umap/locale/gl.json +445 -0
- umap/static/umap/locale/he.js +447 -0
- umap/static/umap/locale/he.json +445 -0
- umap/static/umap/locale/hr.js +447 -0
- umap/static/umap/locale/hr.json +445 -0
- umap/static/umap/locale/hu.js +447 -0
- umap/static/umap/locale/hu.json +445 -0
- umap/static/umap/locale/id.js +447 -0
- umap/static/umap/locale/id.json +445 -0
- umap/static/umap/locale/is.js +447 -0
- umap/static/umap/locale/is.json +445 -0
- umap/static/umap/locale/it.js +447 -0
- umap/static/umap/locale/it.json +445 -0
- umap/static/umap/locale/ja.js +447 -0
- umap/static/umap/locale/ja.json +445 -0
- umap/static/umap/locale/ko.js +447 -0
- umap/static/umap/locale/ko.json +445 -0
- umap/static/umap/locale/lt.js +447 -0
- umap/static/umap/locale/lt.json +445 -0
- umap/static/umap/locale/ms.js +447 -0
- umap/static/umap/locale/ms.json +445 -0
- umap/static/umap/locale/nl.js +447 -0
- umap/static/umap/locale/nl.json +445 -0
- umap/static/umap/locale/no.js +447 -0
- umap/static/umap/locale/no.json +445 -0
- umap/static/umap/locale/pl.js +447 -0
- umap/static/umap/locale/pl.json +445 -0
- umap/static/umap/locale/pl_PL.json +445 -0
- umap/static/umap/locale/pt.js +447 -0
- umap/static/umap/locale/pt.json +445 -0
- umap/static/umap/locale/pt_BR.js +447 -0
- umap/static/umap/locale/pt_BR.json +445 -0
- umap/static/umap/locale/pt_PT.js +447 -0
- umap/static/umap/locale/pt_PT.json +445 -0
- umap/static/umap/locale/ro.js +447 -0
- umap/static/umap/locale/ro.json +445 -0
- umap/static/umap/locale/ru.js +447 -0
- umap/static/umap/locale/ru.json +445 -0
- umap/static/umap/locale/si.js +439 -0
- umap/static/umap/locale/si.json +437 -0
- umap/static/umap/locale/sk_SK.js +447 -0
- umap/static/umap/locale/sk_SK.json +445 -0
- umap/static/umap/locale/sl.js +447 -0
- umap/static/umap/locale/sl.json +445 -0
- umap/static/umap/locale/sr.js +447 -0
- umap/static/umap/locale/sr.json +445 -0
- umap/static/umap/locale/sv.js +447 -0
- umap/static/umap/locale/sv.json +445 -0
- umap/static/umap/locale/th_TH.js +447 -0
- umap/static/umap/locale/th_TH.json +445 -0
- umap/static/umap/locale/tr.js +447 -0
- umap/static/umap/locale/tr.json +445 -0
- umap/static/umap/locale/uk_UA.js +447 -0
- umap/static/umap/locale/uk_UA.json +445 -0
- umap/static/umap/locale/vi.js +447 -0
- umap/static/umap/locale/vi.json +445 -0
- umap/static/umap/locale/vi_VN.json +445 -0
- umap/static/umap/locale/zh.js +447 -0
- umap/static/umap/locale/zh.json +445 -0
- umap/static/umap/locale/zh_CN.json +445 -0
- umap/static/umap/locale/zh_TW.Big5.json +445 -0
- umap/static/umap/locale/zh_TW.js +447 -0
- umap/static/umap/locale/zh_TW.json +445 -0
- umap/static/umap/map.css +1843 -0
- umap/static/umap/nav.css +81 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/test/.eslintrc +22 -0
- umap/static/umap/test/Choropleth.js +243 -0
- umap/static/umap/test/Controls.js +100 -0
- umap/static/umap/test/DataLayer.js +495 -0
- umap/static/umap/test/Feature.js +382 -0
- umap/static/umap/test/Map.Export.js +106 -0
- umap/static/umap/test/Map.Init.js +46 -0
- umap/static/umap/test/Map.js +342 -0
- umap/static/umap/test/Marker.js +122 -0
- umap/static/umap/test/Permissions.js +74 -0
- umap/static/umap/test/Polygon.js +367 -0
- umap/static/umap/test/Polyline.js +402 -0
- umap/static/umap/test/TableEditor.js +100 -0
- umap/static/umap/test/URLs.js +54 -0
- umap/static/umap/test/Util.js +549 -0
- umap/static/umap/test/_pre.js +460 -0
- umap/static/umap/test/index.html +135 -0
- umap/static/umap/theme.css +1 -0
- umap/static/umap/twitter.png +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/METADATA +1 -1
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/RECORD +182 -6
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/WHEEL +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/entry_points.txt +0 -0
- {umap_project-1.14.0a1.dist-info → umap_project-1.14.0a2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Allow scroll wheel zoom?": "マウスホイールでのスクロールを許可?",
|
|
3
|
+
"Automatic": "自動",
|
|
4
|
+
"Ball": "まち針",
|
|
5
|
+
"Cancel": "キャンセル",
|
|
6
|
+
"Caption": "表題",
|
|
7
|
+
"Choose the data format": "データ形式選択",
|
|
8
|
+
"Choose the layer of the feature": "地物のレイヤを選択",
|
|
9
|
+
"Circle": "円形",
|
|
10
|
+
"Clustered": "クラスタ化",
|
|
11
|
+
"Data browser": "データブラウザ",
|
|
12
|
+
"Default": "デフォルト",
|
|
13
|
+
"Default zoom level": "標準ズームレベル",
|
|
14
|
+
"Default: name": "デフォルト: 名称",
|
|
15
|
+
"Display label": "ラベルを表示",
|
|
16
|
+
"Display the control to open OpenStreetMap editor": "OpenStreetMapエディタを起動するパネルを表示",
|
|
17
|
+
"Display the data layers control": "データレイヤ操作パネルを表示",
|
|
18
|
+
"Display the embed control": "サイトへのマップ埋め込みパネルを表示",
|
|
19
|
+
"Display the fullscreen control": "フルスクリーンパネルを表示",
|
|
20
|
+
"Display the locate control": "現在地パネルを表示",
|
|
21
|
+
"Display the measure control": "縮尺パネルを表示",
|
|
22
|
+
"Display the search control": "検索パネルを表示",
|
|
23
|
+
"Display the tile layers control": "タイルレイヤパネルを表示",
|
|
24
|
+
"Display the zoom control": "ズーム変更パネルを表示",
|
|
25
|
+
"Do you want to display a caption bar?": "表題を表示しますか?",
|
|
26
|
+
"Do you want to display a minimap?": "ミニマップを表示しますか?",
|
|
27
|
+
"Do you want to display a panel on load?": "読み込み時にパネルを表示しますか?",
|
|
28
|
+
"Do you want to display popup footer?": "フッタをポップアップしますか?",
|
|
29
|
+
"Do you want to display the scale control?": "縮尺を表示しますか?",
|
|
30
|
+
"Do you want to display the «more» control?": "«more»操作パネルを表示しますか?",
|
|
31
|
+
"Drop": "しずく型",
|
|
32
|
+
"GeoRSS (only link)": "GeoRSS (リンクのみ)",
|
|
33
|
+
"GeoRSS (title + image)": "GeoRSS (タイトル+画像)",
|
|
34
|
+
"Heatmap": "ヒートマップ",
|
|
35
|
+
"Icon shape": "アイコン形状",
|
|
36
|
+
"Icon symbol": "アイコンシンボル",
|
|
37
|
+
"Inherit": "属性継承",
|
|
38
|
+
"Label direction": "ラベルの位置",
|
|
39
|
+
"Label key": "ラベル表示するキー",
|
|
40
|
+
"Labels are clickable": "ラベルをクリックしてポップアップを表示",
|
|
41
|
+
"None": "なし",
|
|
42
|
+
"On the bottom": "下寄せ",
|
|
43
|
+
"On the left": "左寄せ",
|
|
44
|
+
"On the right": "右寄せ",
|
|
45
|
+
"On the top": "上寄せ",
|
|
46
|
+
"Popup content template": "ポップアップコンテンツのテンプレート",
|
|
47
|
+
"Side panel": "サイドパネル",
|
|
48
|
+
"Simplify": "簡略化",
|
|
49
|
+
"Table": "テーブル",
|
|
50
|
+
"always": "常時",
|
|
51
|
+
"clear": "クリア",
|
|
52
|
+
"collapsed": "ボタン",
|
|
53
|
+
"color": "色",
|
|
54
|
+
"dash array": "破線表示",
|
|
55
|
+
"define": "指定",
|
|
56
|
+
"description": "概要",
|
|
57
|
+
"expanded": "リスト",
|
|
58
|
+
"fill": "塗りつぶし",
|
|
59
|
+
"fill color": "塗りつぶし色",
|
|
60
|
+
"fill opacity": "塗りつぶし透過度",
|
|
61
|
+
"hidden": "隠す",
|
|
62
|
+
"iframe": "iframe",
|
|
63
|
+
"inherit": "属性継承",
|
|
64
|
+
"name": "名称",
|
|
65
|
+
"never": "表示しない",
|
|
66
|
+
"new window": "新規ウィンドウ",
|
|
67
|
+
"no": "いいえ",
|
|
68
|
+
"on hover": "ホバー時",
|
|
69
|
+
"opacity": "透過度",
|
|
70
|
+
"parent window": "親ウィンドウ",
|
|
71
|
+
"stroke": "ストローク",
|
|
72
|
+
"weight": "線の太さ",
|
|
73
|
+
"yes": "はい",
|
|
74
|
+
"{delay} seconds": "{delay} seconds",
|
|
75
|
+
"# one hash for main heading": "# ハッシュ1つで主な見出し",
|
|
76
|
+
"## two hashes for second heading": "## ハッシュ2つで第二見出し",
|
|
77
|
+
"### three hashes for third heading": "### ハッシュ3つで第三見出し",
|
|
78
|
+
"**double star for bold**": "**アスタリスク2つで太字**",
|
|
79
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "カンマで数字を区切り、ストロークの破線パターンを指定。 例: \"5, 10, 15\"",
|
|
80
|
+
"About": "概要",
|
|
81
|
+
"Action not allowed :(": "そのアクションは禁止されています :(",
|
|
82
|
+
"Activate slideshow mode": "Activate slideshow mode",
|
|
83
|
+
"Add a layer": "レイヤ追加",
|
|
84
|
+
"Add a line to the current multi": "現在のマルチにラインを追加",
|
|
85
|
+
"Add a new property": "プロパティ追加",
|
|
86
|
+
"Add a polygon to the current multi": "現在のマルチにポリゴンを追加",
|
|
87
|
+
"Advanced actions": "拡張アクション",
|
|
88
|
+
"Advanced properties": "拡張プロパティ",
|
|
89
|
+
"All properties are imported.": "すべてのプロパティがインポートされました。",
|
|
90
|
+
"Allow interactions": "インタラクションを許可",
|
|
91
|
+
"An error occured": "エラーが発生しました",
|
|
92
|
+
"Are you sure you want to cancel your changes?": "本当に編集内容を破棄しますか?",
|
|
93
|
+
"Are you sure you want to clone this map and all its datalayers?": "すべてのデータレイヤを含むマップ全体を複製してよいですか?",
|
|
94
|
+
"Are you sure you want to delete the feature?": "地物を削除してよいですか?",
|
|
95
|
+
"Are you sure you want to delete this layer?": "本当にこのレイヤを削除してよいですか?",
|
|
96
|
+
"Are you sure you want to delete this map?": "本当にこのマップを削除してよいですか?",
|
|
97
|
+
"Are you sure you want to delete this property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
|
|
98
|
+
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
|
|
99
|
+
"Attach the map to my account": "マップを自分のアカウントに関連付ける",
|
|
100
|
+
"Auto": "自動",
|
|
101
|
+
"Autostart when map is loaded": "マップ読み込み時に自動で開始",
|
|
102
|
+
"Bring feature to center": "この地物を中心に表示",
|
|
103
|
+
"Browse data": "データ内容表示",
|
|
104
|
+
"Cancel edits": "編集を破棄",
|
|
105
|
+
"Center map on your location": "閲覧者の位置をマップの中心に設定",
|
|
106
|
+
"Change map background": "背景地図を変更",
|
|
107
|
+
"Change tilelayers": "タイルレイヤの変更",
|
|
108
|
+
"Choose a preset": "プリセット選択",
|
|
109
|
+
"Choose the format of the data to import": "インポートデータ形式を選択",
|
|
110
|
+
"Choose the layer to import in": "インポート対象レイヤ選択",
|
|
111
|
+
"Click last point to finish shape": "クリックでシェイプの作成を終了",
|
|
112
|
+
"Click to add a marker": "クリックでマーカー追加",
|
|
113
|
+
"Click to continue drawing": "クリックで描画を継続",
|
|
114
|
+
"Click to edit": "クリックで編集",
|
|
115
|
+
"Click to start drawing a line": "クリックでラインの描画開始",
|
|
116
|
+
"Click to start drawing a polygon": "クリックでポリゴンの描画開始",
|
|
117
|
+
"Clone": "複製",
|
|
118
|
+
"Clone of {name}": "{name}の複製",
|
|
119
|
+
"Clone this feature": "この地物を複製",
|
|
120
|
+
"Clone this map": "マップを複製",
|
|
121
|
+
"Close": "閉じる",
|
|
122
|
+
"Clustering radius": "クラスタ包括半径",
|
|
123
|
+
"Comma separated list of properties to use when filtering features": "地物をフィルタする際に利用する、カンマで区切ったプロパティのリスト",
|
|
124
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "カンマ、タブ、セミコロンなどで区切られた値。SRSはWGS84が適用されます。ポイントのジオメトリのみがインポート対象です。インポートを行なう際は、カラムの先頭行を対象に «lat» と «lon» という文字列が検索されます。検索は行の最初から順に行われ、大文字と小文字は区別されません。その他のすべてのカラムは、プロパティとしてインポートされます。",
|
|
125
|
+
"Continue line": "ラインを延長",
|
|
126
|
+
"Continue line (Ctrl+Click)": "ラインを延長(Ctrl+クリック)",
|
|
127
|
+
"Coordinates": "位置情報",
|
|
128
|
+
"Credits": "制作",
|
|
129
|
+
"Current view instead of default map view?": "デフォルトのマップ表示から現在の表示に切り替えますか?",
|
|
130
|
+
"Custom background": "独自背景",
|
|
131
|
+
"Data is browsable": "Data is browsable",
|
|
132
|
+
"Default interaction options": "標準のポップアップオプション",
|
|
133
|
+
"Default properties": "標準のプロパティ",
|
|
134
|
+
"Default shape properties": "標準のシェイプ表示プロパティ",
|
|
135
|
+
"Define link to open in a new window on polygon click.": "ポリゴンクリック時にリンクを新しいウィンドウで開く",
|
|
136
|
+
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
137
|
+
"Delete": "削除",
|
|
138
|
+
"Delete all layers": "すべてのレイヤを削除",
|
|
139
|
+
"Delete layer": "レイヤを削除",
|
|
140
|
+
"Delete this feature": "地物を削除",
|
|
141
|
+
"Delete this property on all the features": "すべての地物からこのプロパティを削除",
|
|
142
|
+
"Delete this shape": "このシェイプを削除",
|
|
143
|
+
"Delete this vertex (Alt+Click)": "このポイントを削除(Altを押しながらクリック)",
|
|
144
|
+
"Directions from here": "ここからの距離",
|
|
145
|
+
"Display measure": "Display measure",
|
|
146
|
+
"Display on load": "読み込み時に表示",
|
|
147
|
+
"Download": "ダンロード",
|
|
148
|
+
"Drag to reorder": "ドラッグして並べ替える",
|
|
149
|
+
"Draw a marker": "マーカーを配置",
|
|
150
|
+
"Draw a polygon": "ポリゴンを描く",
|
|
151
|
+
"Draw a polyline": "ポリゴンを描く",
|
|
152
|
+
"Dynamic": "ダイナミック",
|
|
153
|
+
"Dynamic properties": "動的なプロパティ",
|
|
154
|
+
"Edit": "編集",
|
|
155
|
+
"Edit feature's layer": "地物レイヤー編集",
|
|
156
|
+
"Edit map properties": "マッププロパティを編集",
|
|
157
|
+
"Edit properties in a table": "表形式でプロパティを編集",
|
|
158
|
+
"Edit this feature": "地物を編集",
|
|
159
|
+
"Embed the map": "マップ埋め込み",
|
|
160
|
+
"Empty": "内容なし",
|
|
161
|
+
"Error in the tilelayer URL": "タイルレイヤのURLに誤りがあります",
|
|
162
|
+
"Error while fetching {url}": "{url} の取得エラー",
|
|
163
|
+
"Exit Fullscreen": "フルスクリーン表示を解除",
|
|
164
|
+
"Extract shape to separate feature": "シェイプを複数の地物に変換",
|
|
165
|
+
"Fetch data each time map view changes.": "地図表示が変更されたらデータを再取得する",
|
|
166
|
+
"Filter keys": "フィルタに使うキー",
|
|
167
|
+
"Format": "フォーマット",
|
|
168
|
+
"From zoom": "表示開始するズームレベル",
|
|
169
|
+
"Go to «{feature}»": "«{feature}»を表示",
|
|
170
|
+
"Heatmap intensity property": "ヒートマップ強調設定",
|
|
171
|
+
"Heatmap radius": "ヒートマップ包括半径",
|
|
172
|
+
"Help": "ヘルプ",
|
|
173
|
+
"Hide controls": "操作パネルを非表示",
|
|
174
|
+
"Home": "ホーム",
|
|
175
|
+
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "各ズームレベルでのポリゴン簡略化 (more = パフォーマンスと滑らかさ重視, less = 正確さ重視)",
|
|
176
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframeの縦幅を指定(ピクセル): {{{http://iframe.url.com|height}}}",
|
|
177
|
+
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframeの縦幅および横幅を指定(ピクセル): {{{http://iframe.url.com|height*width}}}",
|
|
178
|
+
"Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
|
|
179
|
+
"Image with custom width (in px): {{http://image.url.com|width}}": "画像の横幅カスタム値 (px): {{http://image.url.com|width}}",
|
|
180
|
+
"Image: {{http://image.url.com}}": "画像: {{http://image.url.com}}",
|
|
181
|
+
"Import": "インポート",
|
|
182
|
+
"Import data": "データインポート",
|
|
183
|
+
"Import in a new layer": "新規レイヤをインポート",
|
|
184
|
+
"Imports all umap data, including layers and settings.": "umapのデータをすべてインポート(レイヤ、設定を含む)",
|
|
185
|
+
"Include full screen link?": "フルスクリーンのリンクを含める?",
|
|
186
|
+
"Interaction options": "ポップアップオプション",
|
|
187
|
+
"Invalid umap data": "不正なumapデータ",
|
|
188
|
+
"Invalid umap data in {filename}": "{filename} に不正なumapデータ",
|
|
189
|
+
"Keep current visible layers": "現在表示しているレイヤを保持",
|
|
190
|
+
"Latitude": "緯度",
|
|
191
|
+
"Layer": "レイヤ",
|
|
192
|
+
"Layer properties": "レイヤープロパティ",
|
|
193
|
+
"Licence": "ライセンス",
|
|
194
|
+
"Limit bounds": "表示範囲の制限",
|
|
195
|
+
"Link to…": "リンク",
|
|
196
|
+
"Link with text: [[http://example.com|text of the link]]": "テキストとリンク: [[http://example.com|リンクのテキスト]]",
|
|
197
|
+
"Long credits": "正式なクレジット",
|
|
198
|
+
"Longitude": "経度",
|
|
199
|
+
"Make main shape": "メインシェイプを作成",
|
|
200
|
+
"Manage layers": "レイヤ管理",
|
|
201
|
+
"Map background credits": "背景地図クレジット",
|
|
202
|
+
"Map has been attached to your account": "あなたのアカウントにマップが関連付けられました",
|
|
203
|
+
"Map has been saved!": "地図の保存完了",
|
|
204
|
+
"Map user content has been published under licence": "マップユーザコンテンツのライセンス",
|
|
205
|
+
"Map's editors": "マップの編集者",
|
|
206
|
+
"Map's owner": "マップの所有者",
|
|
207
|
+
"Merge lines": "ラインを結合",
|
|
208
|
+
"More controls": "詳細操作パネル",
|
|
209
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "CSSで有効な値を指定してください (例: DarkBlue, #123456など)",
|
|
210
|
+
"No licence has been set": "ライセンス指定がありません",
|
|
211
|
+
"No results": "検索結果なし",
|
|
212
|
+
"Open link in…": "リンクの開き方",
|
|
213
|
+
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "現在表示中の領域をエディタで編集し、より正確なデータをOpenStreetMapへ書き込む",
|
|
214
|
+
"Optional intensity property for heatmap": "ヒートマップ強調表示オプション",
|
|
215
|
+
"Optional. Same as color if not set.": "オプション。設定がない場合、色指定と同様",
|
|
216
|
+
"Override clustering radius (default 80)": "クラスタ包括半径を上書き (基本値 80)",
|
|
217
|
+
"Override heatmap radius (default 25)": "ヒートマップ包括半径を上書き (基本値 25)",
|
|
218
|
+
"Please be sure the licence is compliant with your use.": "利用目的に沿ったライセンスを選択するようにしてください",
|
|
219
|
+
"Please choose a format": "フォーマットを指定してください",
|
|
220
|
+
"Please enter the name of the property": "プロパティの名称を入力してください",
|
|
221
|
+
"Please enter the new name of this property": "このプロパティに新しい名称を付与してください",
|
|
222
|
+
"Problem in the response": "レスポンスに問題があります",
|
|
223
|
+
"Problem in the response format": "レスポンス形式に問題があります",
|
|
224
|
+
"Properties imported:": "インポートされたプロパティ:",
|
|
225
|
+
"Provide an URL here": "URLを入力してください",
|
|
226
|
+
"Proxy request": "プロキシリクエスト",
|
|
227
|
+
"Remote data": "サイト外のデータ",
|
|
228
|
+
"Remove shape from the multi": "マルチからシェイプを削除",
|
|
229
|
+
"Rename this property on all the features": "すべての地物に対してこのプロパティ名を変更",
|
|
230
|
+
"Replace layer content": "レイヤ内容を差し替える",
|
|
231
|
+
"Restore this version": "このバージョンを復元する",
|
|
232
|
+
"Save": "保存",
|
|
233
|
+
"Save anyway": "保存を再実行",
|
|
234
|
+
"Save current edits": "編集内容を保存",
|
|
235
|
+
"Save this center and zoom": "地図中心点とズームレベルを保存",
|
|
236
|
+
"Save this location as new feature": "この場所を新しい地物として保存",
|
|
237
|
+
"Search location": "地名で検索",
|
|
238
|
+
"See all": "すべて表示",
|
|
239
|
+
"See data layers": "データレイヤを見る",
|
|
240
|
+
"See full screen": "フルスクリーン表示",
|
|
241
|
+
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
242
|
+
"Shape properties": "シェイプ表示プロパティ",
|
|
243
|
+
"Short credits": "短縮表示板クレジット",
|
|
244
|
+
"Show/hide layer": "レイヤ表示/非表示",
|
|
245
|
+
"Simple link: [[http://example.com]]": "シンプルリンク: [[http://example.com]]",
|
|
246
|
+
"Slideshow": "スライドショー",
|
|
247
|
+
"Sort key": "並び替えに使うキー",
|
|
248
|
+
"Split line": "ラインを分割",
|
|
249
|
+
"Start a hole here": "この部分に穴を作成",
|
|
250
|
+
"Start slideshow": "スライドショーを開始",
|
|
251
|
+
"Stop editing": "編集中断",
|
|
252
|
+
"Stop slideshow": "スライドショーを停止",
|
|
253
|
+
"Supported scheme": "対応スキーマ",
|
|
254
|
+
"Supported variables that will be dynamically replaced": "対応する動的な変数",
|
|
255
|
+
"TMS format": "TMSフォーマット",
|
|
256
|
+
"Text color for the cluster label": "クラスタラベルのテキスト色",
|
|
257
|
+
"Text formatting": "テキスト形式",
|
|
258
|
+
"To use if remote server doesn't allow cross domain (slower)": "外部サーバがクロスドメインを許可していない場合に使用します (処理速度低下)",
|
|
259
|
+
"To zoom": "非表示にするズームレベル",
|
|
260
|
+
"Transfer shape to edited feature": "シェイプを編集済み地物へ変換",
|
|
261
|
+
"Transform to lines": "ラインへ変換",
|
|
262
|
+
"Transform to polygon": "ポリゴンへ変換",
|
|
263
|
+
"Type of layer": "レイヤタイプ",
|
|
264
|
+
"Unable to detect format of file {filename}": "ファイル形式を認識できません {filename}",
|
|
265
|
+
"Untitled layer": "名称未定レイヤ",
|
|
266
|
+
"Untitled map": "名称未定マップ",
|
|
267
|
+
"Update permissions": "権限設定を更新",
|
|
268
|
+
"Update permissions and editors": "権限設定とエディタを更新",
|
|
269
|
+
"Url": "URL",
|
|
270
|
+
"Use current bounds": "現在の表示範囲を利用",
|
|
271
|
+
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "波括弧で地物プロパティをくくると(例: {name})、対応する値に動的に置き換えられます。",
|
|
272
|
+
"User content credits": "ユーザ作成データのクレジット",
|
|
273
|
+
"User interface options": "ユーザインターフェースオプション",
|
|
274
|
+
"Versions": "バージョン",
|
|
275
|
+
"View Fullscreen": "フルスクリーン表示",
|
|
276
|
+
"Where do we go from here?": "ここからどこへ向かいますか?",
|
|
277
|
+
"Whether to display or not polygons paths.": "ポリゴンの外周線を表示するかどうか",
|
|
278
|
+
"Whether to fill polygons with color.": "ポリゴンを塗りつぶすかどうか",
|
|
279
|
+
"Who can edit": "編集できる人",
|
|
280
|
+
"Who can view": "閲覧できる人",
|
|
281
|
+
"Will be displayed in the bottom right corner of the map": "地図の右下に表示されます",
|
|
282
|
+
"Will be visible in the caption of the map": "地図の脚注として表示されます",
|
|
283
|
+
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "おおおっと! 他の誰かがデータを編集したようです。あなたの編集内容をもう一度保存することもできますが、その場合、他の誰かが行った編集は削除されます。",
|
|
284
|
+
"Zoom in": "ズームイン",
|
|
285
|
+
"Zoom level for automatic zooms": "自動ズーム時のズームレベル",
|
|
286
|
+
"Zoom out": "ズームアウト",
|
|
287
|
+
"Zoom to layer extent": "データがある位置を表示",
|
|
288
|
+
"Zoom to the next": "次にズーム",
|
|
289
|
+
"Zoom to the previous": "前にズーム",
|
|
290
|
+
"Zoom to this feature": "この地物にズーム",
|
|
291
|
+
"Zoom to this place": "この場所にズーム",
|
|
292
|
+
"attribution": "著作権表示",
|
|
293
|
+
"by": "by",
|
|
294
|
+
"display name": "表示名",
|
|
295
|
+
"height": "縦幅",
|
|
296
|
+
"licence": "ライセンス",
|
|
297
|
+
"max East": "東端",
|
|
298
|
+
"max North": "北端",
|
|
299
|
+
"max South": "南端",
|
|
300
|
+
"max West": "西端",
|
|
301
|
+
"max zoom": "最大ズーム",
|
|
302
|
+
"min zoom": "最小ズーム",
|
|
303
|
+
"next": "次へ",
|
|
304
|
+
"previous": "前へ",
|
|
305
|
+
"width": "横幅",
|
|
306
|
+
"{count} errors during import: {message}": "インポートで {count} 個のエラー: {message}",
|
|
307
|
+
"Measure distances": "距離を計測",
|
|
308
|
+
"NM": "NM",
|
|
309
|
+
"kilometers": "キロメートル",
|
|
310
|
+
"km": "km",
|
|
311
|
+
"mi": "マイル",
|
|
312
|
+
"miles": "マイル",
|
|
313
|
+
"nautical miles": "海里",
|
|
314
|
+
"1 day": "1 day",
|
|
315
|
+
"1 hour": "1 hour",
|
|
316
|
+
"5 min": "5 min",
|
|
317
|
+
"Cache proxied request": "Cache proxied request",
|
|
318
|
+
"No cache": "No cache",
|
|
319
|
+
"Popup": "Popup",
|
|
320
|
+
"Popup (large)": "Popup (large)",
|
|
321
|
+
"Popup content style": "Popup content style",
|
|
322
|
+
"Popup shape": "Popup shape",
|
|
323
|
+
"Skipping unknown geometry.type: {type}": "Skipping unknown geometry.type: {type}",
|
|
324
|
+
"Optional.": "Optional.",
|
|
325
|
+
"Paste your data here": "Paste your data here",
|
|
326
|
+
"Please save the map first": "Please save the map first",
|
|
327
|
+
"Feature identifier key": "Feature identifier key",
|
|
328
|
+
"Open current feature on load": "Open current feature on load",
|
|
329
|
+
"Permalink": "Permalink",
|
|
330
|
+
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
331
|
+
"Do you want to display caption menus?": "Do you want to display caption menus?",
|
|
332
|
+
"Example: key1,key2,key3": "Example: key1,key2,key3",
|
|
333
|
+
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
334
|
+
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
335
|
+
"Permanent credits": "Permanent credits",
|
|
336
|
+
"Permanent credits background": "Permanent credits background",
|
|
337
|
+
"Select data": "Select data",
|
|
338
|
+
"Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
|
|
339
|
+
"{area} acres": "{area} acres",
|
|
340
|
+
"{area} ha": "{area} ha",
|
|
341
|
+
"{area} m²": "{area} m²",
|
|
342
|
+
"{area} mi²": "{area} mi²",
|
|
343
|
+
"{area} yd²": "{area} yd²",
|
|
344
|
+
"{distance} NM": "{distance} NM",
|
|
345
|
+
"{distance} km": "{distance} km",
|
|
346
|
+
"{distance} m": "{distance} m",
|
|
347
|
+
"{distance} miles": "{distance} miles",
|
|
348
|
+
"{distance} yd": "{distance} yd",
|
|
349
|
+
" (area: {measure})": "(area: {measure})",
|
|
350
|
+
" (length: {measure})": "(length: {measure})",
|
|
351
|
+
"Animated transitions": "Animated transitions",
|
|
352
|
+
"Background overlay url": "Background overlay url",
|
|
353
|
+
"Custom overlay": "Custom overlay",
|
|
354
|
+
"Display the star map button": "Display the star map button",
|
|
355
|
+
"Error in the overlay URL": "Error in the overlay URL",
|
|
356
|
+
"Map has been starred": "Map has been starred",
|
|
357
|
+
"Map has been unstarred": "Map has been unstarred",
|
|
358
|
+
"Opacity": "Opacity",
|
|
359
|
+
"Star this map": "Star this map",
|
|
360
|
+
"Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.",
|
|
361
|
+
"Direct link": "Direct link",
|
|
362
|
+
"The zoom and center have been modified.": "The zoom and center have been modified.",
|
|
363
|
+
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
364
|
+
"Copy link": "Copy link",
|
|
365
|
+
"Email": "Email",
|
|
366
|
+
"Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
|
|
367
|
+
"Send me the link": "Send me the link",
|
|
368
|
+
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
|
|
369
|
+
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
|
|
370
|
+
"Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
|
|
371
|
+
"icon opacity": "icon opacity",
|
|
372
|
+
"*single star for italic*": "*single star for italic*",
|
|
373
|
+
"--- for a horizontal rule": "--- for a horizontal rule",
|
|
374
|
+
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
|
|
375
|
+
"Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
|
|
376
|
+
"Default view": "Default view",
|
|
377
|
+
"Facet keys": "Facet keys",
|
|
378
|
+
"Facet search": "Facet search",
|
|
379
|
+
"Feature properties": "Feature properties",
|
|
380
|
+
"Issue reaching that URL (network problem or CORS protection): {url}": "Issue reaching that URL (network problem or CORS protection): {url}",
|
|
381
|
+
"Latest feature": "Latest feature",
|
|
382
|
+
"No results for these facets": "No results for these facets",
|
|
383
|
+
"Saved center and zoom": "Saved center and zoom",
|
|
384
|
+
"User location": "User location",
|
|
385
|
+
"Visibility: {status}": "Visibility: {status}",
|
|
386
|
+
"Fit all data": "Fit all data",
|
|
387
|
+
"Verify remote URL": "Verify remote URL",
|
|
388
|
+
"Add": "Add",
|
|
389
|
+
"Change": "Change",
|
|
390
|
+
"Powered by uMap": "Powered by uMap",
|
|
391
|
+
"Search": "Search",
|
|
392
|
+
"Datalayers": "Datalayers",
|
|
393
|
+
"Secret edit link:": "Secret edit link:",
|
|
394
|
+
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
395
|
+
"Current map view": "Current map view",
|
|
396
|
+
"Filter": "Filter",
|
|
397
|
+
"Choropleth": "Choropleth",
|
|
398
|
+
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
399
|
+
"Choropleth classes": "Choropleth classes",
|
|
400
|
+
"Choropleth color palette": "Choropleth color palette",
|
|
401
|
+
"Choropleth mode": "Choropleth mode",
|
|
402
|
+
"Choropleth property value": "Choropleth property value",
|
|
403
|
+
"Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
|
|
404
|
+
"Equidistant": "Equidistant",
|
|
405
|
+
"Jenks-Fisher": "Jenks-Fisher",
|
|
406
|
+
"K-means": "K-means",
|
|
407
|
+
"Manual": "Manual",
|
|
408
|
+
"Number of desired classes (default 5)": "Number of desired classes (default 5)",
|
|
409
|
+
"Quantiles": "Quantiles",
|
|
410
|
+
"Show this layer in the caption": "Show this layer in the caption",
|
|
411
|
+
"Back to preview": "Back to preview",
|
|
412
|
+
"Drawing": "Drawing",
|
|
413
|
+
"Edit the title of the map": "Edit the title of the map",
|
|
414
|
+
"Go to the homepage": "Go to the homepage",
|
|
415
|
+
"Switch to edit mode": "Switch to edit mode",
|
|
416
|
+
"Update who can see and edit the map": "Update who can see and edit the map",
|
|
417
|
+
"View": "View",
|
|
418
|
+
"Add image URL": "Add image URL",
|
|
419
|
+
"Emoji & Character": "Emoji & Character",
|
|
420
|
+
"Generic": "Generic",
|
|
421
|
+
"Symbol": "Symbol",
|
|
422
|
+
"Type char or paste emoji": "Type char or paste emoji",
|
|
423
|
+
"URL": "URL",
|
|
424
|
+
"If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
|
|
425
|
+
"Save map": "Save map",
|
|
426
|
+
"Toggle edit mode": "Toggle edit mode",
|
|
427
|
+
"All data and settings of the map": "All data and settings of the map",
|
|
428
|
+
"Embed and link options": "Embed and link options",
|
|
429
|
+
"Go to \"{coords}\"": "Go to \"{coords}\"",
|
|
430
|
+
"Link to view the map": "Link to view the map",
|
|
431
|
+
"No.": "No.",
|
|
432
|
+
"Only visible layers' data": "Only visible layers' data",
|
|
433
|
+
"Open share & download panel": "Open share & download panel",
|
|
434
|
+
"OpenStreetMap": "OpenStreetMap",
|
|
435
|
+
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
436
|
+
"Share and download": "Share and download",
|
|
437
|
+
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
438
|
+
"Short link": "Short link",
|
|
439
|
+
"Street": "Street",
|
|
440
|
+
"Type a place name or coordinates": "Type a place name or coordinates",
|
|
441
|
+
"copy": "copy",
|
|
442
|
+
"full backup": "full backup",
|
|
443
|
+
"settings": "settings",
|
|
444
|
+
"{count} features in this layer": "{count} features in this layer"
|
|
445
|
+
}
|