├── .jshintrc
├── README.md
├── config
├── defaults.js
└── templateConfig.js
├── css
├── FlickrLayer.css
├── HomeButton.css
├── InstagramLayer.css
├── LocateButton.css
├── ShareDialog.css
├── SimpleSlider.css
├── TwitterLayer.css
├── WebcamsLayer.css
├── YoutubeLayer.css
├── dialogs.css
├── dijit.css
├── fontello-ie7.css
├── fontello.css
├── geocoder.css
├── main.css
└── popup.css
├── font
├── fontello.eot
├── fontello.svg
├── fontello.ttf
└── fontello.woff
├── images
├── ajax-loader.gif
├── apple-touch-icon.png
├── horizontal.png
├── item.png
├── loading-small.gif
├── loading.gif
├── map
│ ├── Twitter_Social_Icon_Rounded_Square_Color_64.png
│ ├── flickr_64.png
│ ├── instagram25x30.png
│ ├── webcam32x32.png
│ └── yt_icon_rgb_64.png
├── scope.png
├── selected-arrow.png
└── vertical.png
├── index.html
├── instagram-callback.html
├── js
├── About.js
├── Drawer.js
├── DrawerMenu.js
├── FlickrLayer.js
├── InstagramLayer.js
├── OAuthHelper.js
├── SearchSources.js
├── ShareDialog.js
├── SocialLayers.js
├── TwitterLayer.js
├── WebcamsLayer.js
├── YouTubeLayer.js
├── dijit
│ └── templates
│ │ ├── DrawerMenu.html
│ │ └── ShareDialog.html
├── main.js
├── nls
│ ├── ShareDialog.js
│ ├── ar
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── bs
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── ca
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── cs
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── da
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── de
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── el
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── es
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── et
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── fi
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── fr
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── he
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── hr
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── hu
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── id
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── it
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── ja
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── ko
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── lt
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── lv
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── nb
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── nl
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── pl
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── pt-br
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── pt-pt
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── resources.js
│ ├── ro
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── ru
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── sl
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── sr
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── sv
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── th
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── tr
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── uk
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── vi
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── zh-cn
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── zh-hk
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ └── zh-tw
│ │ ├── ShareDialog.js
│ │ └── resources.js
├── respond.min.js
└── template.js
├── license.txt
├── oauth-callback.html
├── resources
├── configurationPanel.js
└── fontello-9bb2ebe7.zip
└── twitter-callback.html
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "undef": true,
3 | "browser":true,
4 | "devel":true,
5 | "globals": { "require": false, "define":false }
6 | }
--------------------------------------------------------------------------------
/config/defaults.js:
--------------------------------------------------------------------------------
1 | define({
2 | //Default configuration settings for the applciation. This is where you"ll define things like a bing maps key,
3 | //default web map, default app color theme and more. These values can be overwritten by template configuration settings
4 | //and url parameters.
5 | "appid": "",
6 | "webmap": "4b762458c7994fc08b4994a2dc76e9fc",
7 | "oauthappid": "arcgisWebApps",
8 | //Enter the url to the proxy if needed by the applcation. See the "Using the proxy page" help topic for details
9 | //http://developers.arcgis.com/en/javascript/jshelp/ags_proxy.html
10 | "proxyurl": "",
11 | //Example of a template specific property. If your template had several color schemes
12 | //you could define the default here and setup configuration settings to allow users to choose a different
13 | //color theme.
14 | "title": "",
15 | "summary": "",
16 | "defaultPanel": "legend",
17 | "enableSummaryInfo": true,
18 | "enableLegendPanel": true,
19 | "enableAboutPanel": true,
20 | "enableLayersPanel": true,
21 | "enableHomeButton": true,
22 | "enableLocateButton": true,
23 | "enableBasemapToggle": true,
24 | "enableShareDialog": true,
25 | "enableBookmarks": true,
26 | "enableOverviewMap": true,
27 | "openOverviewMap": false,
28 | "enableModifiedDate": true,
29 | "enableViewsCount": true,
30 | "enableMoreInfo": true,
31 | "enableScalebar": false,
32 | "defaultBasemap": "topo",
33 | "nextBasemap": "hybrid",
34 | "swipeLayer": [{
35 | "fields": [],
36 | "id": ""
37 | }],
38 | "locationSearch": true,
39 | //When searchExtent is true the locator will prioritize results within the current map extent.
40 | "searchExtent": false,
41 | "searchLayers":[{
42 | "id": "",
43 | "fields": []
44 | }],
45 | "swipeType": "vertical",
46 | "swipeInvertPlacement": false,
47 | "hideNotesLayerPopups": true,
48 | "enableFlickr": true,
49 | "flickrVisible": false,
50 | "flickrSearch": "",
51 | "flickrTime": "",
52 | "enableTwitter": true,
53 | "twitterVisible": false,
54 | "twitterSearch": "",
55 | "enableWebcams": true,
56 | "webcamsVisible": false,
57 | "enableYouTube": true,
58 | "youtubeVisible": false,
59 | "youtubeSearch": "",
60 | "youtubeTime": "all_time", // today, this_week, this_month, all_time
61 | "youtube_key": null,
62 | "enableDialogModal": false,
63 | "dialogModalContent": "",
64 | "dialogModalTitle": "",
65 | "twitterUrl": "https://utility.arcgis.com/tproxy/proxy/1.1/search/tweets.json",
66 | "twitterSigninUrl": "https://utility.arcgis.com/tproxy/signin",
67 | "flickr_key": null,
68 | "webcams_key": null,
69 | "enablePrintButton": false,
70 | //Enter the url to your organizations bing maps key if you want to use bing basemaps
71 | "bingmapskey": "",
72 | //Defaults to arcgis.com. Set this value to your portal or organization host name.
73 | "sharinghost": "https://www.arcgis.com",
74 | "units": null,
75 | "helperServices": {
76 | "geometry": {
77 | "url": null
78 | },
79 | "printTask": {
80 | "url": null
81 | },
82 | "elevationSync": {
83 | "url": null
84 | },
85 | "geocode": [{
86 | "url": null
87 | }]
88 | }
89 | });
90 |
--------------------------------------------------------------------------------
/config/templateConfig.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*jslint sloppy:true */
3 | /*
4 | | Copyright 2014 Esri
5 | |
6 | | Licensed under the Apache License, Version 2.0 (the "License");
7 | | you may not use this file except in compliance with the License.
8 | | You may obtain a copy of the License at
9 | |
10 | | http://www.apache.org/licenses/LICENSE-2.0
11 | |
12 | | Unless required by applicable law or agreed to in writing, software
13 | | distributed under the License is distributed on an "AS IS" BASIS,
14 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | | See the License for the specific language governing permissions and
16 | | limitations under the License.
17 | */
18 | define({
19 | // When true, the template will query arcgis.com for the webmap item.
20 | "queryForWebmap": true,
21 | // When true, the template will query arcgis.com for the group's information.
22 | "queryForGroupInfo": false,
23 | // When true, the template will query arcgis.com for the items contained within the group
24 | "queryForGroupItems": false,
25 | //When true the template will query arcgis.com for default settings for helper services, units etc. If you
26 | //want to use custom settings for units or any of the helper services set queryForOrg to false then enter
27 | //default values for any items you need using the helper services and units properties.
28 | "queryForOrg": true,
29 | //If you need localization set the localize value to true to get the localized strings
30 | //from the javascript/nls/resource files.
31 | //Note that we've included a placeholder nls folder and a resource file with one error string
32 | //to show how to setup the strings file.
33 | "queryForLocale": true,
34 | // support sending credentials with AJAX requests to specific domains. This will allow editing of feature services secured with web-tier authentication
35 | "webTierSecurity": false,
36 | // These are the options specified for querying items within the group. Modify these to get more items. You can also call the public template.queryGroupItems() method with these options as a parameter.
37 | "groupParams": {
38 | q: "group:\"${groupid}\" AND -type:\"Code Attachment\"",
39 | "sortField": "modified",
40 | "sortOrder": "desc",
41 | "num": 9,
42 | "start": 0
43 | },
44 | //This option demonstrates how to handle additional custom url parameters. For example
45 | //if you want users to be able to specify lat/lon coordinates that define the map's center or
46 | //specify an alternate basemap via a url parameter.
47 | "urlItems": [
48 | "extent",
49 | "sharinghost"
50 | ],
51 | // For esri hosted envoronments only. Will automatically create a sharingurl and proxyurl for the application.
52 | esriEnvironment: false
53 | });
--------------------------------------------------------------------------------
/css/FlickrLayer.css:
--------------------------------------------------------------------------------
1 | .flickr-popup {
2 | margin: 0;
3 | }
4 | .flickr-popup .title {
5 | font-weight: 700;
6 | font-size: 14px;
7 | line-height: 20px;
8 | }
9 | .flickr-popup .ownername {
10 | font-size: 12px;
11 | color: #999;
12 | line-height: 18px;
13 | margin-bottom: 5px;
14 | }
15 | .flickr-popup .date {
16 | font-size: 12px;
17 | color: #999;
18 | line-height: 16px;
19 | }
20 | .flickr-popup .content {
21 | margin-bottom: 5px;
22 | }
23 | .flickr-popup .image-anchor {
24 | display: inline-block;
25 | -moz-user-select: none;
26 | -webkit-user-select: none;
27 | user-select: none;
28 | margin-bottom: 5px;
29 | }
30 | .flickr-popup .image {
31 | display: inline-block;
32 | width: 150px;
33 | height: 150px;
34 | padding: 2px;
35 | -moz-box-shadow: 1px 1px 3px #CCC;
36 | -webkit-box-shadow: 1px 1px 3px #CCC;
37 | box-shadow: 1px 1px 3px #CCC;
38 | border: 1px solid #CCC;
39 | background: url(../images/loading-small.gif) no-repeat center center #fff;
40 | }
41 | .flickr-popup .image:hover,
42 | .flickr-popup .image:focus {
43 | opacity: .85;
44 | background-image: none;
45 | -moz-transition: all .25s ease;
46 | -webkit-transition: all .25s ease;
47 | -o-transition: all .25s ease;
48 | transition: all .25s ease;
49 | }
--------------------------------------------------------------------------------
/css/HomeButton.css:
--------------------------------------------------------------------------------
1 | .HomeButtonCalcite span {
2 | display: none;
3 | }
4 | .HomeButtonCalcite .homeContainer {
5 | text-align: center;
6 | background-color: #fff;
7 | -webkit-user-select: none;
8 | -moz-user-select: none;
9 | -ms-user-select: none;
10 | user-select: none;
11 | cursor: pointer;
12 | -webkit-border-radius: 1px;
13 | -moz-border-radius: 1px;
14 | -o-border-radius: 1px;
15 | border-radius: 1px;
16 | border: 1px solid #999;
17 | color: #999;
18 | }
19 | .HomeButtonCalcite .homeContainer:hover {
20 | background-color: #eee;
21 | color: #333;
22 | }
23 | .HomeButtonCalcite .homeContainer:active {
24 | color: #007ac2;
25 | background-color: #ddd;
26 | }
27 | .HomeButtonCalcite .homeContainer {
28 | width: 30px;
29 | height: 30px;
30 | overflow: hidden;
31 | }
32 | .HomeButtonCalcite .home {
33 | font-size: 21px;
34 | line-height: 22px;
35 | width: 22px;
36 | padding: 4px;
37 | font-family: "fontello";
38 | font-style: normal;
39 | font-weight: 400;
40 | speak: none;
41 | display: inline-block;
42 | text-decoration: inherit;
43 | text-align: center;
44 | font-variant: normal;
45 | text-transform: none;
46 | }
47 | .HomeButtonCalcite .loading:before {
48 | content: '';
49 | display: block;
50 | position: relative;
51 | width: 22px;
52 | height: 22px;
53 | padding: 0;
54 | margin: 0;
55 | overflow: hidden;
56 | background-position: center center;
57 | background-image: url(../images/ajax-loader.gif);
58 | background-repeat: no-repeat;
59 | }
--------------------------------------------------------------------------------
/css/InstagramLayer.css:
--------------------------------------------------------------------------------
1 | .instagram-popup {
2 | margin: 0;
3 | }
4 | .instagram-popup .ownername {
5 | font-size: 12px;
6 | color: #999;
7 | line-height: 18px;
8 | margin-bottom: 5px;
9 | }
10 | .instagram-popup .date {
11 | font-size: 12px;
12 | color: #999;
13 | line-height: 16px;
14 | }
15 | .instagram-popup .content {
16 | margin-bottom: 5px;
17 | }
18 | .instagram-popup .image-anchor {
19 | display: inline-block;
20 | -moz-user-select: none;
21 | -webkit-user-select: none;
22 | user-select: none;
23 | margin-bottom: 5px;
24 | }
25 | .instagram-popup .image {
26 | display: inline-block;
27 | width: 150px;
28 | height: 150px;
29 | padding: 2px;
30 | -moz-box-shadow: 1px 1px 3px #CCC;
31 | -webkit-box-shadow: 1px 1px 3px #CCC;
32 | box-shadow: 1px 1px 3px #CCC;
33 | border: 1px solid #CCC;
34 | background: url(../images/loading-small.gif) no-repeat center center #fff;
35 | }
36 | .instagram-popup .image:hover,
37 | .instagram-popup .image:focus {
38 | opacity: .85;
39 | background-image: none;
40 | -moz-transition: all .25s ease;
41 | -webkit-transition: all .25s ease;
42 | -o-transition: all .25s ease;
43 | transition: all .25s ease;
44 | }
--------------------------------------------------------------------------------
/css/LocateButton.css:
--------------------------------------------------------------------------------
1 | .LocateButtonCalcite span {
2 | display: none;
3 | }
4 | .LocateButtonCalcite .locateContainer {
5 | text-align: center;
6 | background-color: #fff;
7 | -webkit-user-select: none;
8 | -moz-user-select: none;
9 | -ms-user-select: none;
10 | user-select: none;
11 | cursor: pointer;
12 | -webkit-border-radius: 1px;
13 | -moz-border-radius: 1px;
14 | -o-border-radius: 1px;
15 | border-radius: 1px;
16 | border: 1px solid #999;
17 | color: #999;
18 | }
19 | .LocateButtonCalcite .locateContainer:hover {
20 | background-color: #eee;
21 | color: #333;
22 | }
23 | .LocateButtonCalcite .locateContainer:active {
24 | color: #007ac2;
25 | background-color: #ddd;
26 | }
27 | .LocateButtonCalcite .locateContainer {
28 | width: 30px;
29 | height: 30px;
30 | overflow: hidden;
31 | }
32 | .LocateButtonCalcite .zoomLocateButton {
33 | font-size: 21px;
34 | line-height: 22px;
35 | width: 22px;
36 | padding: 4px;
37 | font-family: "fontello";
38 | font-style: normal;
39 | font-weight: 400;
40 | speak: none;
41 | display: inline-block;
42 | text-decoration: inherit;
43 | text-align: center;
44 | font-variant: normal;
45 | text-transform: none;
46 | }
47 | .LocateButtonCalcite .loading:before {
48 | content: '';
49 | display: block;
50 | position: relative;
51 | width: 22px;
52 | height: 22px;
53 | padding: 0;
54 | margin: 0;
55 | overflow: hidden;
56 | background-position: center center;
57 | background-image: url(../images/ajax-loader.gif);
58 | background-repeat: no-repeat;
59 | }
--------------------------------------------------------------------------------
/css/ShareDialog.css:
--------------------------------------------------------------------------------
1 | .calcite .icon-container {
2 | margin: 10px 0 20px;
3 | }
4 | .calcite .map-size-label {
5 | float: left;
6 | font-size: 15px;
7 | margin: 0 5px 0 0;
8 | }
9 | .esriRTL .calcite .map-size-label {
10 | float: right;
11 | margin: 0 0 0 5px;
12 | }
13 | .calcite .share-dialog-icon {
14 | font-size: 32px;
15 | line-height: 32px;
16 | float: left;
17 | color: #007ac2;
18 | cursor: pointer;
19 | margin: 0 10px 0 0;
20 | text-decoration: none;
21 | display: block;
22 | }
23 | .calcite .share-dialog-icon:visited{
24 | color: #007ac2;
25 | }
26 | .esriRTL .calcite .share-dialog-icon {
27 | float: right;
28 | margin: 0 0 0 10px;
29 | }
30 | .calcite .share-dialog-icon:hover {
31 | color: #97cbec;
32 | }
33 | .calcite .share-dialog-icon:active {
34 | color: #555;
35 | }
36 | .calcite .share-map-url {
37 | width: 50%;
38 | min-width: 30%;
39 | max-width: 90%;
40 | height: 25px;
41 | font-size: 14px;
42 | color: #777;
43 | border: 1px solid #dcdcdc;
44 | margin: 0 0 20px;
45 | }
46 | .calcite .map-size-container {
47 | margin: 0;
48 | padding: 0 0 20px;
49 | }
50 | .calcite .embed-map-size-clear,
51 | .calcite .icon-clear {
52 | clear: both;
53 | }
54 | .calcite .embed-map-size-dropdown {
55 | float: left;
56 | }
57 | .esriRTL .calcite .embed-map-size-dropdown {
58 | float: right;
59 | }
60 | .calcite .share-dialog-subheader {
61 | font-size: 19px;
62 | margin: 0 0 5px;
63 | }
64 | .calcite .share-dialog-textarea {
65 | width: auto;
66 | max-width: 90%;
67 | width: 75%;
68 | height: 75px;
69 | font-size: 14px;
70 | color: #777;
71 | border: 1px solid #dcdcdc;
72 | margin: 0 0 20px;
73 | }
74 | .calcite .share-dialog-extent {
75 | margin: 0 0 15px 0;
76 | }
--------------------------------------------------------------------------------
/css/SimpleSlider.css:
--------------------------------------------------------------------------------
1 | .calcite .esriSimpleSlider {
2 | position: absolute;
3 | text-align: center;
4 | border: 1px solid #999;
5 | background-color: #FFF;
6 | color: #999;
7 | -webkit-user-select: none;
8 | -moz-user-select: none;
9 | -ms-user-select: none;
10 | user-select: none;
11 | -webkit-border-radius: 1px;
12 | -moz-border-radius: 1px;
13 | -o-border-radius: 1px;
14 | border-radius: 1px;
15 | }
16 | .calcite .esriSimpleSlider div {
17 | width: 22px;
18 | height: 22px;
19 | font-size: 22px;
20 | font-family: 'Lato', sans-serif;
21 | font-weight: 700;
22 | line-height: 22px;
23 | -webkit-user-select: none;
24 | -moz-user-select: none;
25 | -ms-user-select: none;
26 | user-select: none;
27 | cursor: pointer;
28 | padding: 4px;
29 | }
30 | .calcite .esriSimpleSliderVertical .esriSimpleSliderIncrementButton {
31 | border-bottom: 1px solid #999;
32 | -webkit-border-radius: 1px 1px 0 0;
33 | border-radius: 1px 1px 0 0;
34 | }
35 | .esriRTL .calcite .esriSimpleSliderVertical .esriSimpleSliderIncrementButton {
36 | -webkit-border-radius: 1px 0 0 1px;
37 | border-radius: 1px 0 0 1px;
38 | }
39 | .calcite .esriSimpleSliderVertical .esriSimpleSliderDecrementButton {
40 | -webkit-border-radius: 0 0 1px 1px;
41 | border-radius: 0 0 1px 1px;
42 | }
43 | .esriRTL .calcite .esriSimpleSliderVertical .esriSimpleSliderDecrementButton {
44 | -webkit-border-radius: 1px 0 0 1px;
45 | border-radius: 1px 0 0 1px;
46 | }
47 | .calcite .esriSimpleSliderDecrementButton:hover,
48 | .calcite .esriSimpleSliderIncrementButton:hover {
49 | background-color: #eee;
50 | color: #333;
51 | }
52 | .calcite .esriSimpleSliderDecrementButton:active,
53 | .calcite .esriSimpleSliderIncrementButton:active {
54 | background-color: #ddd;
55 | color: #007ac2;
56 | }
57 | .calcite .esriSimpleSliderDisabledButton,
58 | .calcite .esriSimpleSliderDisabledButton:active,
59 | .calcite .esriSimpleSliderDisabledButton:hover {
60 | cursor: default;
61 | background-color: #f4f4f4;
62 | color: #bbb;
63 | }
64 | .calcite .esriSimpleSliderTL {
65 | top: 65px;
66 | }
67 | .esriRTL .calcite .esriSimpleSliderTL {
68 | left: auto;
69 | right: 20px;
70 | }
--------------------------------------------------------------------------------
/css/TwitterLayer.css:
--------------------------------------------------------------------------------
1 | .twitter-popup .username {
2 | font-weight: 700;
3 | font-size: 14px;
4 | line-height: 22px;
5 | margin: 0;
6 | }
7 | .twitter-popup .follow-button {
8 | float: right;
9 | }
10 | .esriRTL .twitter-popup .follow-button {
11 | float: left;
12 | }
13 | .twitter-popup .actions {
14 | text-align: right;
15 | padding: 5px 0 0;
16 | border-top: 1px solid #E5E5E5;
17 | margin-top: 10px;
18 | font-size: 16px;
19 | line-height: 18px;
20 | }
21 | .esriRTL .twitter-popup .actions {
22 | text-align: left;
23 | }
24 | .twitter-popup .actions a,
25 | .twitter-popup .actions a:visited {
26 | color: #999;
27 | }
28 | .twitter-popup .action-reply {
29 | display: inline-block;
30 | margin-right: 10px;
31 | font-family: "fontello";
32 | font-style: normal;
33 | font-weight: 400;
34 | speak: none;
35 | text-decoration: none;
36 | text-align: center;
37 | font-variant: normal;
38 | text-transform: none;
39 | }
40 | .twitter-popup .action-reply:hover,
41 | .twitter-popup .action-reply:focus {
42 | color: #00aced;
43 | }
44 | .twitter-popup .action-retweet {
45 | display: inline-block;
46 | margin-right: 10px;
47 | font-family: "fontello";
48 | font-style: normal;
49 | font-weight: 400;
50 | speak: none;
51 | text-decoration: none;
52 | text-align: center;
53 | font-variant: normal;
54 | text-transform: none;
55 | }
56 | .twitter-popup .action-retweet:hover,
57 | .twitter-popup .action-retweet:focus {
58 | color: #00aced;
59 | }
60 | .twitter-popup .action-favorite {
61 | display: inline-block;
62 | margin-right: 10px;
63 | font-family: "fontello";
64 | font-style: normal;
65 | font-weight: 400;
66 | speak: none;
67 | text-decoration: none;
68 | text-align: center;
69 | font-variant: normal;
70 | text-transform: none;
71 | }
72 | .twitter-popup .action-favorite:hover,
73 | .twitter-popup .action-favorite:focus {
74 | color: #00aced;
75 | }
76 | .twitter-popup .user {
77 | font-size: 12px;
78 | color: #999;
79 | line-height: 18px;
80 | }
81 | .twitter-popup .user a {
82 | color: #999!important;
83 | text-decoration: none!important;
84 | }
85 | .twitter-popup .user a:hover {
86 | color: #333!important;
87 | }
88 | .twitter-popup .date {
89 | font-size: 12px;
90 | color: #999;
91 | line-height: 16px;
92 | }
93 | .twitter-popup .date a {
94 | color: #999!important;
95 | text-decoration: none!important;
96 | }
97 | .twitter-popup .date a:hover {
98 | color: #333!important;
99 | }
100 | .twitter-popup .content {
101 | font-size: 13px;
102 | line-height: 18px;
103 | margin-bottom: 5px;
104 | }
105 | .twitter-popup .image-anchor {
106 | display: block;
107 | float: left;
108 | margin-right: 10px;
109 | margin-bottom: 5px;
110 | -moz-user-select: none;
111 | -webkit-user-select: none;
112 | user-select: none;
113 | }
114 | .esriRTL .twitter-popup .image-anchor {
115 | float: right;
116 | margin-right: 0;
117 | margin-left: 10px;
118 | }
119 | .twitter-popup .image {
120 | padding: 2px;
121 | width: 40px;
122 | height: 40px;
123 | -moz-box-shadow: 1px 1px 3px #CCC;
124 | -webkit-box-shadow: 1px 1px 3px #CCC;
125 | box-shadow: 1px 1px 3px #CCC;
126 | border: 1px solid #CCC;
127 | background: url(../images/loading-small.gif) no-repeat center center #fff;
128 | }
129 | .twitter-popup .image:hover img,
130 | .twitter-popup .image:focus img {
131 | opacity: .85;
132 | background-image: none;
133 | display: inline-block;
134 | -moz-transition: all .25s ease;
135 | -webkit-transition: all .25s ease;
136 | -o-transition: all .25s ease;
137 | transition: all .25s ease;
138 | }
139 | .twitter-popup .clear {
140 | clear: both!important;
141 | }
--------------------------------------------------------------------------------
/css/WebcamsLayer.css:
--------------------------------------------------------------------------------
1 | .webcams-popup {
2 | margin: 0;
3 | }
4 | .webcams-popup .title {
5 | font-weight: 700;
6 | font-size: 14px;
7 | line-height: 20px;
8 | margin-bottom: 5px;
9 | }
10 | .webcams-popup .date {
11 | font-size: 12px;
12 | color: #999;
13 | line-height: 16px;
14 | margin-bottom: 5px;
15 | }
16 | .webcams-popup .location {
17 | margin-bottom: 5px;
18 | }
19 | .webcams-popup .logo-credits {
20 | margin: 10px 0 0;
21 | }
22 | .webcams-popup .logo-credits a {
23 | display: inline-block;
24 | }
25 | .webcams-popup .credits {
26 | font-size: 10px;
27 | color: #999;
28 | line-height: 12px;
29 | }
30 | .webcams-popup .image-anchor {
31 | display: inline-block;
32 | -moz-user-select: none;
33 | -webkit-user-select: none;
34 | user-select: none;
35 | margin-bottom: 5px;
36 | }
37 | .webcams-popup .image {
38 | display: inline-block;
39 | width: 128px;
40 | height: 96px;
41 | padding: 2px;
42 | -moz-box-shadow: 1px 1px 3px #CCC;
43 | -webkit-box-shadow: 1px 1px 3px #CCC;
44 | box-shadow: 1px 1px 3px #CCC;
45 | border: 1px solid #CCC;
46 | background: url(../images/loading-small.gif) no-repeat center center #fff;
47 | }
48 | .webcams-popup .image:hover,
49 | .webcams-popup .image:focus {
50 | opacity: .85;
51 | background-image: none;
52 | -moz-transition: all .25s ease;
53 | -webkit-transition: all .25s ease;
54 | -o-transition: all .25s ease;
55 | transition: all .25s ease;
56 | }
--------------------------------------------------------------------------------
/css/YoutubeLayer.css:
--------------------------------------------------------------------------------
1 | .youtube-popup {
2 | margin: 0;
3 | }
4 | .youtube-popup .title {
5 | font-weight: 700;
6 | font-size: 14px;
7 | line-height: 20px;
8 | }
9 | .youtube-popup .ownername {
10 | font-size: 12px;
11 | color: #999;
12 | line-height: 18px;
13 | margin-bottom: 5px;
14 | }
15 | .youtube-popup .date {
16 | font-size: 12px;
17 | color: #999;
18 | line-height: 16px;
19 | }
20 | .youtube-popup .content {
21 | margin-bottom: 5px;
22 | }
23 | .youtube-popup .image-anchor {
24 | display: inline-block;
25 | -moz-user-select: none;
26 | -webkit-user-select: none;
27 | user-select: none;
28 | margin-bottom: 5px;
29 | position: relative;
30 | }
31 | .youtube-popup .stats {
32 | position: absolute;
33 | top: 3px;
34 | right: 3px;
35 | padding: 5px;
36 | z-index: 2;
37 | background: #000;
38 | color: #fff;
39 | font-size: 10px;
40 | }
41 | .youtube-popup .image {
42 | display: inline-block;
43 | padding: 2px;
44 | height: 90px;
45 | width: 120px;
46 | -moz-box-shadow: 1px 1px 3px #CCC;
47 | -webkit-box-shadow: 1px 1px 3px #CCC;
48 | box-shadow: 1px 1px 3px #CCC;
49 | border: 1px solid #CCC;
50 | background: url(../images/loading-small.gif) no-repeat center center #fff;
51 | }
52 | .youtube-popup .image:hover,
53 | .youtube-popup .image:focus {
54 | opacity: .85;
55 | background-image: none;
56 | -moz-transition: all .25s ease;
57 | -webkit-transition: all .25s ease;
58 | -o-transition: all .25s ease;
59 | transition: all .25s ease;
60 | }
--------------------------------------------------------------------------------
/css/dialogs.css:
--------------------------------------------------------------------------------
1 | .calcite .dijitDialog {
2 | max-width: 550px;
3 | }
4 | .calcite .dijitDialog,
5 | .calcite .dijitDialogTitle {
6 | color: #777;
7 | }
8 | .calcite .dijitDialog {
9 | box-shadow: -2px 2px 20px #333F47;
10 | -webkit-text-size-adjust: none;
11 | }
12 | .calcite .dijitDialogTitleBar {
13 | border: 0;
14 | border-bottom: 1px solid #eee;
15 | background: #fff;
16 | padding: 10px 20px;
17 | margin: 0;
18 | }
19 | .calcite .dijitDialogCloseIcon {
20 | font-size: 24px;
21 | line-height: 24px;
22 | background-image: none;
23 | border: 0;
24 | height: 24px;
25 | width: 24px;
26 | top: 0;
27 | right: 0;
28 | padding: 10px 20px;
29 | display: inline-block;
30 | text-align: center;
31 | margin: 0;
32 | z-index: 20;
33 | position: absolute;
34 | color: #999;
35 | }
36 | .esriRTL .calcite .dijitDialogCloseIcon {
37 | right: auto;
38 | left: 0;
39 | }
40 | .calcite .dijitDialogCloseIcon:hover {
41 | color: #555;
42 | }
43 | .calcite .dijitDialogCloseIcon:active {
44 | color: #007ac2;
45 | }
46 | .calcite .dijitDialogPaneContent {
47 | max-height: 550px;
48 | max-width: 530px;
49 | overflow: auto;
50 | border: none;
51 | padding: 20px;
52 | margin: 0;
53 | background: #fff;
54 | word-wrap: break-word;
55 | }
56 | .calcite .dialog-content {
57 | width: 510px;
58 | height: 400px;
59 | }
60 | .calcite .dijitDialogTitle {
61 | font-size: 24px;
62 | line-height: 24px;
63 | margin: 0;
64 | padding: 0;
65 | }
66 | .calcite .dijitDialogUnderlayWrapper,
67 | .calcite .dijitDialogUnderlay {
68 | background-color: #000;
69 | opacity: .4;
70 | }
71 | .calcite .dialog-content .layer-settings-header {
72 | font-size: 19px;
73 | margin: 0 0 5px 0;
74 | }
75 | .calcite .dialog-content .layer-settings-description {
76 | margin-bottom: 20px;
77 | }
78 | .calcite .dialog-content .layer-settings-more-info {
79 | text-decoration: none;
80 | }
81 | .calcite .dialog-content .layer-settings-input {
82 | width: 50%;
83 | min-width: 30%;
84 | max-width: 90%;
85 | height: 25px;
86 | font-size: 14px;
87 | color: #777;
88 | border: 1px solid #dcdcdc;
89 | margin: 0 5px 5px 0;
90 | }
91 | .esriRTL .calcite .dialog-content .layer-settings-input {
92 | margin: 0 0 5px 5px;
93 | }
94 | .calcite .dialog-content .layer-settings-select {
95 | margin: 0 0 5px 0;
96 | }
97 | .calcite .dialog-content .layer-settings-submit,
98 | .calcite .dijitButtonNode {
99 | -webkit-border-radius: 2;
100 | -moz-border-radius: 2;
101 | border-radius: 2px;
102 | color: #fff;
103 | font-size: 17px;
104 | line-height: 17px;
105 | background: #007ac2;
106 | border: 1px solid transparent;
107 | padding: 5px 12px;
108 | vertical-align: middle;
109 | text-decoration: none;
110 | margin: 0 0 5px 0;
111 | cursor: pointer;
112 | font-weight: 700;
113 | display: inline-block;
114 | *display: inline;
115 | }
116 | .calcite .esriIdCancel .dijitButtonNode {
117 | background: none;
118 | color: #999;
119 | }
120 | .calcite .dialog-content .layer-settings-submit:hover {
121 | background: #5fa8d4;
122 | text-decoration: none;
123 | }
124 | .calcite .dialog-content .layer-settings-submit:active {
125 | color: #ccc;
126 | }
127 | .calcite .dialog-content .twitter-auth-status {
128 | margin-bottom: 20px;
129 | }
130 | @media screen and (max-width: 850px) {
131 | .drawer-open .calcite .dialog-content {
132 | width: auto;
133 | height: auto;
134 | }
135 | }
136 | @media screen and (max-width: 600px) {
137 | .calcite .dialog-content {
138 | width: auto;
139 | height: auto;
140 | }
141 | }
--------------------------------------------------------------------------------
/css/fontello-ie7.css:
--------------------------------------------------------------------------------
1 | [class^="icon-"], [class*=" icon-"], [class*="icon-"],.left-arrow,.right-arrow,.dijitDialogCloseIcon,.esriGeocoderSearch,.esriGeocoderReset, .esriGeocoderSelectedCheck, .esriGeocoderMenuArrow, .note-expand, .esriGeocoderMenuClose, .icon-search-1, .icon-check-1 {
2 | font-family: 'fontello';
3 | font-style: normal;
4 | font-weight: normal;
5 |
6 | /* fix buttons height */
7 | line-height: 1em;
8 |
9 | /* you can be more comfortable with increased icons size */
10 | /* font-size: 120%; */
11 | }
12 |
13 | .icon-emo-unhappy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
14 | .icon-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
15 | .icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
16 | .icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
17 | .icon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
18 | .icon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
19 | .icon-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
20 | .icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
21 | .icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
22 | .icon-info-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
23 | .icon-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
24 | .icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
25 | .icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
26 | .icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
27 | .icon-attention-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
28 | .icon-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
29 | .icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
30 | .icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
31 | .icon-popup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
32 | .icon-left-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
33 | .icon-right-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
34 | .icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
35 | .icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
36 | .icon-right-dir-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
37 | .icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
38 | .icon-target-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
39 | .icon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
40 | .icon-twitter-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
41 | .icon-facebook-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
42 | .icon-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
43 | .icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
44 |
45 | /* custom. don't remove */
46 | .left-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
47 | .right-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
48 | .esriRTL .left-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
49 | .esriRTL .right-arrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
50 | .map .calcite .titleButton.next {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
51 | .map .calcite .titleButton.prev {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
52 | .esriRTL .map .calcite .titleButton.next {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
53 | .esriRTL .map .calcite .titleButton.prev {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
54 | .dijitDialogCloseIcon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
55 | .esriGeocoderSearch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
56 | .esriGeocoderReset { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
57 | .HomeButtonCalcite .home {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
58 | .LocateButtonCalcite .zoomLocateButton {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
59 | .map .calcite .titleButton.close {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
60 | .map .calcite .titleButton.maximize {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
61 | .map .calcite .titleButton.restore {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
62 | .twitter-popup .action-reply {*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ');}
63 | .twitter-popup .action-retweet {*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ');}
64 | .twitter-popup .action-favorite {*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = ' ');}
65 | .note-expand{ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
66 | .note-selected .note-expand{ *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
67 | .esriGeocoderMenuArrow {*zoom: expression(this.runtimeStyle['zoom']='1', this.innerHTML=' ');}
68 | .esriGeocoderMenuActive .esriGeocoderMenuArrow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
69 | .esriGeocoderSelected .esriGeocoderSelectedCheck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
70 | .esriGeocoderMenuClose { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); }
--------------------------------------------------------------------------------
/css/fontello.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'fontello';
3 | src: url('../font/fontello.eot?2128570');
4 | src: url('../font/fontello.eot?2128570#iefix') format('embedded-opentype'),
5 | url('../font/fontello.woff?2128570') format('woff'),
6 | url('../font/fontello.ttf?2128570') format('truetype'),
7 | url('../font/fontello.svg?2128570#fontello') format('svg');
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
12 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
13 | /*
14 | @media screen and (-webkit-min-device-pixel-ratio:0) {
15 | @font-face {
16 | font-family: 'fontello';
17 | src: url('../font/fontello.svg?2128570#fontello') format('svg');
18 | }
19 | }
20 | */
21 |
22 | [class^="icon-"]:before,[class*=" icon-"]:before,.left-arrow:before,.right-arrow:before,.dijitDialogCloseIcon:before,.esriGeocoderSearch:before,.esriGeocoderReset:before, .esriGeocoderSelectedCheck:before, .esriGeocoderMenuArrow:before, .note-expand:before, .esriGeocoderMenuClose:before {
23 | font-family: "fontello";
24 | font-style: normal;
25 | font-weight: normal;
26 | speak: none;
27 | display: inline-block;
28 | text-decoration: inherit;
29 | width: 1em;
30 | margin-right: .2em;
31 | text-align: center;
32 | /* opacity: .8; */
33 | /* For safety - reset parent styles, that can break glyph codes*/
34 | font-variant: normal;
35 | text-transform: none;
36 | /* fix buttons height, for twitter bootstrap */
37 | line-height: 1em;
38 | /* Animation center compensation - margins should be symmetric */
39 | /* remove if not needed */
40 | margin-left: .2em;
41 | /* you can be more comfortable with increased icons size */
42 | /* font-size: 120%; */
43 | /* Uncomment for 3D effect */
44 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
45 | }
46 | .icon-emo-unhappy:before { content: '\e806'; } /* '' */
47 | .icon-layers:before { content: '\e81d'; } /* '' */
48 | .icon-mail:before { content: '\e802'; } /* '' */
49 | .icon-star:before { content: '\e811'; } /* '' */
50 | .icon-menu-1:before { content: '\e810'; } /* '' */
51 | .icon-check-1:before { content: '\e804'; } /* '' */
52 | .icon-cancel-1:before { content: '\e80c'; } /* '' */
53 | .icon-plus:before { content: '\e81a'; } /* '' */
54 | .icon-minus:before { content: '\e81b'; } /* '' */
55 | .icon-info-circled-1:before { content: '\e801'; } /* '' */
56 | .icon-home-1:before { content: '\e808'; } /* '' */
57 | .icon-link:before { content: '\e809'; } /* '' */
58 | .icon-reply:before { content: '\e813'; } /* '' */
59 | .icon-retweet:before { content: '\e80f'; } /* '' */
60 | .icon-attention-1:before { content: '\e812'; } /* '' */
61 | .icon-search-1:before { content: '\e800'; } /* '' */
62 | .icon-cog:before { content: '\e805'; } /* '' */
63 | .icon-share:before { content: '\e816'; } /* '' */
64 | .icon-popup:before { content: '\e817'; } /* '' */
65 | .icon-left-open-big:before { content: '\e80d'; } /* '' */
66 | .icon-right-open-big:before { content: '\e80b'; } /* '' */
67 | .icon-down-dir:before { content: '\e814'; } /* '' */
68 | .icon-left-dir:before { content: '\e80a'; } /* '' */
69 | .icon-right-dir-1:before { content: '\e807'; } /* '' */
70 | .icon-up-dir:before { content: '\e815'; } /* '' */
71 | .icon-target-1:before { content: '\e82f'; } /* '' */
72 | .icon-list:before { content: '\e803'; } /* '' */
73 | .icon-twitter-1:before { content: '\e818'; } /* '' */
74 | .icon-facebook-squared-1:before { content: '\e80e'; } /* '' */
75 | .icon-gplus:before { content: '\e819'; } /* '' */
76 | .icon-location:before { content: '\e81c'; } /* '' */
77 |
78 | /* custom. don't remove */
79 | .left-arrow:before,.right-arrow:before,.dijitDialogCloseIcon:before,.esriGeocoderSearch:before,.esriGeocoderReset:before, .esriGeocoderSelectedCheck:before, .esriGeocoderMenuArrow:before, .note-expand:before, .esriGeocoderMenuClose:before {
80 | margin-left: 0;
81 | margin-right: 0;
82 | }
83 | .left-arrow:before { content: '\e80d'; }
84 | .right-arrow:before { content: '\e80b'; }
85 | .esriRTL .left-arrow:before { content: '\e80b'; }
86 | .esriRTL .right-arrow:before { content: '\e80d'; }
87 | .map .calcite .titleButton.next:before {content: '\e807';}
88 | .map .calcite .titleButton.prev:before {content: '\e80a';}
89 | .esriRTL .map .calcite .titleButton.next:before {content: '\e80a';}
90 | .esriRTL .map .calcite .titleButton.prev:before {content: '\e807';}
91 | .dijitDialogCloseIcon:before { content: '\e80c'; }
92 | .esriGeocoderSearch:before { content: '\e800'; }
93 | .esriGeocoderReset:before { content: '\e80c'; }
94 | .esriGeocoderMenuArrow:before { content: '\e807'; }
95 | .esriGeocoderMenuActive .esriGeocoderMenuArrow:before { content: '\e814'; }
96 | .HomeButtonCalcite .home:before { content: '\e808';}
97 | .LocateButtonCalcite .zoomLocateButton:before {content: '\e82f';}
98 | .map .calcite .titleButton.close:before {content: '\e80c';}
99 | .twitter-popup .action-reply:before {content:'\e813';}
100 | .twitter-popup .action-retweet:before {content:'\e80f';}
101 | .twitter-popup .action-favorite:before {content:'\e811';}
102 | .map .calcite .titleButton.maximize:before {content: '\e817';}
103 | .map .calcite .titleButton.restore:before {content: '\e817';}
104 | .note-expand:before { content: '\e81a'; } /* '' */
105 | .note-selected .note-expand:before { content: '\e81b'; } /* '' */
106 | .esriGeocoderSelected .esriGeocoderSelectedCheck:before { content: '\e804'; } /* '' */
107 | .esriGeocoderMenuClose:before { content: '\e80c'; }
108 |
--------------------------------------------------------------------------------
/css/geocoder.css:
--------------------------------------------------------------------------------
1 | .locate-box {
2 | float: right;
3 | padding: 0;
4 | margin: 5px 0 5px 0;
5 | }
6 |
7 | .esriRTL .locate-box {
8 | float: left;
9 | }
10 |
11 | .arcgisSearch .searchBtn,
12 | .arcgisSearch .searchGroup .searchInput,
13 | .dj_rtl .arcgisSearch .searchGroup .searchInput,
14 | .arcgisSearch .searchMenu {
15 | border-color: #ccc;
16 | }
17 |
18 | .arcgisSearch .searchGroup,
19 | .arcgisSearch .searchGroup .searchInput {
20 | color: #999;
21 | }
22 |
23 | #geocoderMobile {
24 | float: left;
25 | margin: 0 10px 0 0;
26 | }
27 |
28 | .dj_rtl #geocoderMobile {
29 | float: right;
30 | margin: 0 0 0 10px;
31 | }
32 |
33 | .arcgisSearch .searchGroup .searchInput {
34 | width: 150px;
35 | }
--------------------------------------------------------------------------------
/css/popup.css:
--------------------------------------------------------------------------------
1 | /*-------------------------------------------------- */
2 |
3 | /* POP UP */
4 |
5 | /*-------------------------------------------------- */
6 |
7 | .map .calcite {
8 | -moz-border-radius: 2px;
9 | -webkit-border-radius: 2px;
10 | font-family: 'Lato', sans-serif;
11 | font-size: 12px;
12 | line-height: 16px;
13 | }
14 | .map .calcite .titlePane {
15 | background: #f8f8f8;
16 | font-size: 12px;
17 | line-height: 12px;
18 | padding: 10px;
19 | color: #333;
20 | font-weight: 700;
21 | border: 0;
22 | border-bottom: 1px solid #eee;
23 | -webkit-border-radius: 1px 1px 0 0;
24 | border-radius: 1px 1px 0 0;
25 | }
26 | .map .calcite .titlePane .spinner {
27 | margin-top: 6px;
28 | background: url(../images/ajax-loader.gif) no-repeat;
29 | }
30 | .map .calcite .titleButton {
31 | background: none;
32 | font-family: "fontello";
33 | font-style: normal;
34 | font-weight: 400;
35 | speak: none;
36 | display: inline-block;
37 | text-decoration: inherit;
38 | text-align: center;
39 | font-variant: normal;
40 | text-transform: none;
41 | font-size: 16px;
42 | line-height: 16px;
43 | width: 16px;
44 | padding: 8px 5px;
45 | color: #999;
46 | }
47 | .map .calcite .titleButton:hover {
48 | color: #333;
49 | }
50 | .map .calcite .titleButton:active {
51 | color: #007ac2;
52 | }
53 | .map .calcite .titleButton.close {
54 | top: 0;
55 | right: 0;
56 | }
57 | .esriRTL .map .calcite .titleButton.close {
58 | right: auto;
59 | left: 0;
60 | }
61 | .map .calcite .titleButton.next {
62 | top: 0;
63 | right: 52px;
64 | }
65 | .esriRTL .map .calcite .titleButton.next {
66 | right: auto;
67 | left: 52px;
68 | }
69 | .map .calcite .titleButton.prev {
70 | top: 0;
71 | right: 78px;
72 | }
73 | .esriRTL .map .calcite .titleButton.prev {
74 | right: auto;
75 | left: 78px;
76 | }
77 | .map .calcite .titleButton.maximize {
78 | top: 0;
79 | right: 26px;
80 | }
81 | .esriRTL .map .calcite .titleButton.maximize {
82 | right: auto;
83 | left: 26px;
84 | }
85 | .map .calcite .titleButton.restore {
86 | top: 0;
87 | right: 26px;
88 | }
89 | .esriRTL .map .calcite .titleButton.restore {
90 | right: auto;
91 | left: 26px;
92 | }
93 | .map .calcite .titleButton.hidden {
94 | display: none;
95 | }
96 | .map .calcite .contentPane {
97 | background: #fff;
98 | padding: 10px;
99 | color: #333;
100 | font-size: 12px;
101 | line-height: 16px;
102 | }
103 | .map .calcite .esriViewPopup .hzLine {
104 | border-top: 1px solid #eee;
105 | }
106 | .map .calcite .actionsPane {
107 | color: #333;
108 | background: #fff;
109 | -webkit-border-radius: 0 0 1px 1px;
110 | border-radius: 0 0 1px 1px;
111 | }
112 | .map .calcite .contentPane,
113 | .map .calcite .actionsPane {
114 | border: 0;
115 | font-size: 12px;
116 | line-height: 16px;
117 | }
118 | .map .calcite .actionsPane .actionList a {
119 | cursor: pointer;
120 | text-decoration: none;
121 | display: inline-block;
122 | line-height: 16px;
123 | height: 16px;
124 | }
125 | .map .calcite .actionsPane .actionList {
126 | display: inline-block;
127 | height: 16px;
128 | padding: 0;
129 | margin: 0;
130 | vertical-align: top;
131 | margin-right: 5px;
132 | }
133 | .esriRTL .map .calcite .actionsPane .actionList {
134 | margin-right: 0;
135 | margin-left: 5px;
136 | }
137 | .map .calcite .titlePane .pageInfo {
138 | display: inline-block;
139 | }
140 | .map .calcite .titlePane .titleInfo {
141 | display: inline-block;
142 | margin-right: 5px;
143 | }
144 | .esriRTL .map .calcite .titlePane .titleInfo {
145 | margin-right: 0;
146 | margin-left: 5px;
147 | }
148 | .map .calcite .pointer,
149 | .map .calcite .outerPointer {
150 | background: #fff;
151 | }
152 | .map .calcite .pointer.top {
153 | background: #f8f8f8;
154 | }
--------------------------------------------------------------------------------
/font/fontello.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/font/fontello.eot
--------------------------------------------------------------------------------
/font/fontello.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/font/fontello.ttf
--------------------------------------------------------------------------------
/font/fontello.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/font/fontello.woff
--------------------------------------------------------------------------------
/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/ajax-loader.gif
--------------------------------------------------------------------------------
/images/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/apple-touch-icon.png
--------------------------------------------------------------------------------
/images/horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/horizontal.png
--------------------------------------------------------------------------------
/images/item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/item.png
--------------------------------------------------------------------------------
/images/loading-small.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/loading-small.gif
--------------------------------------------------------------------------------
/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/loading.gif
--------------------------------------------------------------------------------
/images/map/Twitter_Social_Icon_Rounded_Square_Color_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/map/Twitter_Social_Icon_Rounded_Square_Color_64.png
--------------------------------------------------------------------------------
/images/map/flickr_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/map/flickr_64.png
--------------------------------------------------------------------------------
/images/map/instagram25x30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/map/instagram25x30.png
--------------------------------------------------------------------------------
/images/map/webcam32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/map/webcam32x32.png
--------------------------------------------------------------------------------
/images/map/yt_icon_rgb_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/map/yt_icon_rgb_64.png
--------------------------------------------------------------------------------
/images/scope.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/scope.png
--------------------------------------------------------------------------------
/images/selected-arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/selected-arrow.png
--------------------------------------------------------------------------------
/images/vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/images/vertical.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Public Information Map
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
46 |
47 |
48 |
49 |
50 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | Cancel
84 |
85 |
86 |
87 |
88 |
92 |
96 |
99 |
100 |
101 |
138 |
139 |
169 |
172 |
173 |
174 |
--------------------------------------------------------------------------------
/instagram-callback.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | OAuth Popup Callback
7 |
18 |
19 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/js/SearchSources.js:
--------------------------------------------------------------------------------
1 | define(["dojo/_base/declare", "dojo/_base/lang", "dojo/_base/array", "dojo/_base/json", "dojo/dom-construct", "esri/lang", "esri/tasks/locator", "esri/layers/FeatureLayer", "esri/dijit/Search"], function (
2 | declare, lang, array, dojoJson, domConstruct, esriLang, Locator, FeatureLayer, Search) {
3 | return declare(null, {
4 |
5 | constructor: function (parameters) {
6 |
7 | var defaults = {
8 | sources: [],
9 | map: null,
10 | //the map
11 | useMapExtent: false,
12 | //When true we restrict world locator to the map extent
13 | geocoders: [],
14 | esriSource: null,
15 | enableSearchingAll: true,
16 | //Geocoders defined in helper services
17 | itemData: null,
18 | //web map item info includes operational layers and info about searches configured on web map
19 | configuredSearchLayers: []
20 | };
21 |
22 | lang.mixin(this, defaults, parameters);
23 | },
24 |
25 | /* Public Methods */
26 |
27 | createOptions: function () {
28 | return {
29 | map: this.map,
30 | sources: this._createSources(),
31 | enableSearchingAll: this.enableSearchingAll,
32 | activeSourceIndex: this._getActiveSource()
33 | };
34 | },
35 |
36 | /* Private Methods */
37 |
38 | //optional array of additional search layers to configure from the application config process
39 | _createSources: function () {
40 | if (this.applicationConfiguredSources) {
41 | this._createAppConfigSources();
42 | } else {
43 | //Create services from org helper services
44 | //Create locators defined in web map item
45 | //Create configured services.
46 | this._createHelperServiceSources();
47 | if (this.itemData) {
48 | this._createWebMapItemSources();
49 | }
50 | if (this.configuredSearchLayers.length > 0) {
51 | this._createConfiguredSources();
52 | }
53 | }
54 |
55 | return this.sources;
56 | },
57 |
58 | _getActiveSource: function () {
59 | var activeIndex = 0;
60 | if (this.hasOwnProperty("activeSourceIndex")) {
61 | activeIndex = this.activeSourceIndex;
62 | }
63 | else{
64 | if (this.sources && this.enableSearchingAll && this.sources.length > 1) {
65 | activeIndex = "all";
66 | }
67 | array.some(this.sources, function (s, index) {
68 | if (!s.hasEsri && s.featureLayer) {
69 | activeIndex = index;
70 | return true;
71 | }
72 | });
73 | }
74 | return activeIndex;
75 | },
76 | _createHelperServiceSources: function () {
77 | var geocoders = lang.clone(this.geocoders);
78 | array.forEach(geocoders, lang.hitch(this, function (geocoder) {
79 | if (geocoder.url.indexOf(".arcgis.com/arcgis/rest/services/World/GeocodeServer") > -1) {
80 | var s = new Search();
81 | var esriSource = s.defaultSource;
82 | esriSource.hasEsri = true;
83 | //Some orgs have the Esri world locator added with
84 | //a custom name defined. Use that name.
85 | if (geocoder.name) {
86 | esriSource.name = geocoder.name;
87 | }
88 | //Restrict search to custom extent if defined
89 | if (this.useMapExtent) {
90 | esriSource.searchExtent = this.map.extent;
91 | }
92 | this.sources.push(esriSource);
93 | s.destroy();
94 | } else if (esriLang.isDefined(geocoder.singleLineFieldName)) {
95 | geocoder.locator = new Locator(geocoder.url);
96 | this.sources.push(geocoder);
97 | }
98 | }));
99 | },
100 |
101 | _createWebMapItemSources: function () {
102 | if (this.itemData && this.itemData.applicationProperties && this.itemData.applicationProperties.viewing && this.itemData.applicationProperties.viewing.search) {
103 | //search is configured on the web map item
104 | var searchOptions = this.itemData.applicationProperties.viewing.search;
105 | array.forEach(searchOptions.layers, lang.hitch(this, function (searchLayer) {
106 | //get the title specified in the item
107 | var operationalLayers = this.itemData.operationalLayers,
108 | layer = null;
109 | array.some(operationalLayers, function (opLayer) {
110 | if (opLayer.id === searchLayer.id) {
111 | layer = opLayer;
112 | return true;
113 | }
114 | });
115 | if (layer && layer.hasOwnProperty("url")) {
116 | var source = {},
117 | url = layer.url,
118 | name = layer.title || layer.name;
119 | if (esriLang.isDefined(searchLayer.subLayer)) {
120 | url = url + "/" + searchLayer.subLayer;
121 | array.some(layer.layerObject.layerInfos, function (info) {
122 | if (info.id === searchLayer.subLayer) {
123 | name += " - " + layer.layerObject.layerInfos[searchLayer.subLayer].name;
124 | return true;
125 | }
126 | });
127 | }
128 | //Get existing layer or create new one
129 | var mapLayer = this.map.getLayer(layer.id);
130 | if (mapLayer && (mapLayer.type === "Feature Layer" || mapLayer.type === "FeatureLayer")) {
131 | source.featureLayer = mapLayer;
132 | } else {
133 | source.featureLayer = new FeatureLayer(url, {
134 | outFields: ["*"]
135 | });
136 | }
137 | source.name = name;
138 | source.exactMatch = searchLayer.field.exactMatch;
139 | source.searchFields = [searchLayer.field.name];
140 | source.displayField = searchLayer.field.name;
141 | source.outFields = ["*"];
142 | source.placeholder = searchOptions.hintText;
143 | this.sources.push(source);
144 | }
145 | }));
146 | }
147 | },
148 | _createAppConfigSources: function () {
149 | // Configured via the new Search Configuation widget
150 | var configSource = lang.clone(this.applicationConfiguredSources);
151 | array.forEach(configSource, lang.hitch(this, function (source) {
152 | if (source.locator) {
153 | source.locator = new Locator(source.url);
154 | } else { //feature layer
155 | var featureLayer = null;
156 | if (source.flayerId) {
157 | featureLayer = this.map.getLayer(source.flayerId);
158 | }
159 | if (!featureLayer && source.url) {
160 | featureLayer = new FeatureLayer(source.url, {
161 | outFields: ["*"]
162 | });
163 | }
164 | source.featureLayer = featureLayer;
165 | }
166 | if (source.searchWithinMap) {
167 | source.searchExtent = this.map.extent;
168 | }
169 | this.sources.push(source);
170 | }));
171 |
172 | },
173 | _createConfiguredSources: function () {
174 | // Old configuration using layer/field picker
175 | array.forEach(this.configuredSearchLayers, lang.hitch(this, function (layer) {
176 | var mapLayer = this.map.getLayer(layer.id);
177 | if (mapLayer) {
178 | var source = {};
179 | source.featureLayer = mapLayer;
180 | if (layer.fields && layer.fields.length && layer.fields.length > 0) {
181 | source.searchFields = layer.fields;
182 | source.displayField = layer.fields[0];
183 | source.outFields = ["*"];
184 | this.sources.push(source);
185 | }
186 | }
187 | }));
188 | }
189 |
190 | });
191 | });
--------------------------------------------------------------------------------
/js/dijit/templates/DrawerMenu.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/js/dijit/templates/ShareDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
23 |
24 |
25 |
27 |
28 |
29 |
${_i18n.widgets.ShareDialog.size}
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/js/nls/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | root: ({
3 | "widgets": {
4 | "ShareDialog": {
5 | "title": "Share",
6 | "heading": "Share this map",
7 | "url": "Map Link",
8 | "embed": "Embed Map",
9 | "extent": "Share current map extent",
10 | "size": "Size (width/height):",
11 | "facebookTooltip": "Facebook",
12 | "twitterTooltip": "Twitter",
13 | "gplusTooltip": "Google Plus",
14 | "emailTooltip": "Email"
15 | }
16 | }
17 | }),
18 | "ar": 1,
19 | "bs": 1,
20 | "ca": 1,
21 | "cs": 1,
22 | "da": 1,
23 | "de": 1,
24 | "el": 1,
25 | "es": 1,
26 | "et": 1,
27 | "fi": 1,
28 | "fr": 1,
29 | "he": 1,
30 | "hr": 1,
31 | "hu": 1,
32 | "id": 1,
33 | "it": 1,
34 | "ja": 1,
35 | "ko": 1,
36 | "lt": 1,
37 | "lv": 1,
38 | "nb": 1,
39 | "nl": 1,
40 | "pl": 1,
41 | "pt-br": 1,
42 | "pt-pt": 1,
43 | "ro": 1,
44 | "ru": 1,
45 | "sl": 1,
46 | "sr": 1,
47 | "sv": 1,
48 | "th": 1,
49 | "tr": 1,
50 | "uk": 1,
51 | "vi": 1,
52 | "zh-cn": 1,
53 | "zh-hk": 1,
54 | "zh-tw": 1
55 | });
56 |
--------------------------------------------------------------------------------
/js/nls/ar/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "مشاركة",
5 | "heading": "مشاركة هذه الخريطة",
6 | "url": "رابط الخريطة",
7 | "embed": "تضمين الخريطة",
8 | "extent": "مشاركة نطاق الخريطة الحالي",
9 | "size": "الحجم (الاتساع/الارتفاع):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "البريد الإلكتروني"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ar/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "يتعذر إنشاء الخريطة",
4 | "views": "مناطق عرض.",
5 | "licenseError": {
6 | "message": "حسابك غير مرخص لاستخدام التطبيقات القابلة للتكوين غير العامة. رجاءً اطلب من مسئولي المؤسسة تعيينك كنوع مستخدم يتضمن التطبيقات الأساسية أو ترخيص التطبيقات الأساسية المضافة.",
7 | "title": "غير مرخص"
8 | }
9 | },
10 | "report": {
11 | "flag": "العلامة غَيْرُ مُوَافِقة",
12 | "error": "خطأ",
13 | "success": "مُعلَّم",
14 | "loading": "تحميل&hellip"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "الوصف غير متاح",
18 | "bookmarks": "إشارات مرجعية",
19 | "zoomTo": "تكبير الموقع وإيجاد المزيد من المعلومات.",
20 | "untitledNote": "بدون عنوان"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "طبقات الوسائط",
25 | "mediaLayersDescription": "إظهار المساهمات من الجمهور على الخريطة.",
26 | "flickrSettings": "إعدادات Flicker",
27 | "twitter": "Twitter",
28 | "twitterSettings": "إعدادات Twitter",
29 | "twitterUser": "حساب Twitter",
30 | "twitterSignIn": "تسجيل الدخول إلى Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "إعدادات Instagram",
34 | "instagramUser": "حساب Instagram",
35 | "instagramSignIn": "تسجيل الدخول إلى Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "إعدادات YouTube",
38 | "ytSettingsInfo": "يتضمن عرض مقاطع الفيديو الشبكة والمحتويات الاحترافية.",
39 | "ytTime": "تم التحميل فيما مضى",
40 | "today": "يوم",
41 | "this_week": "اسبوع",
42 | "this_month": "شهر",
43 | "all_time": "طول الوقت",
44 | "moreInfo": "المزيد من المعلومات",
45 | "searchTerms": "مصطلحات البحث",
46 | "search": "بحث",
47 | "flSettingsInfo": "إرجاع النتائج المتطابقة مع عنوان الصورة أو الوصف أو العلامات.",
48 | "twSettingsInfo": "رؤية ما يحدث€™الآن.",
49 | "igSettingsInfo": "يعتبر Instagram سريع وطريقة سهلة ومُضحكة لمشاركة الحياة مع الأصدقاء والعائلة.",
50 | "advancedOperators": "تلميح:استخدمعوامل التشغيللإنشاء عمليات البحث المتقدمة.",
51 | "tweetsFilteredBy": "يتم تنقية التغريدات بواسطة:",
52 | "photosFilteredBy": "يتم تنقية الصور بواسطة:",
53 | "videosFilteredBy": "تتم تصفية مقاطع الفيديو بواسطة:",
54 | "instagramAccountStatus": "تمكين طبقة Instagram لرؤية الحالة.",
55 | "twitterAccountStatus": "قم بتمكين طبقة Twitter لرؤية حالتك."
56 | },
57 | "general": {
58 | "map": "خريطة",
59 | "mapInfo": "معلومات الخريطة",
60 | "legend": "مفتاح الخريطة",
61 | "featured": "المواقع المتميزة",
62 | "layers": "طبقات",
63 | "share": "مشاركة",
64 | "about": "نبذة عن",
65 | "find": "كود Zip والمدينة، وغير ذلك.",
66 | "moreInfo": "مزيد من المعلومات",
67 | "dateModified": "آخر تعديل",
68 | "noSearchResult": "يتعذر إيجاد النتائج",
69 | "switchAccount": "حساب التبديل",
70 | "signIn": "تسجيل الدخول",
71 | "settings": "الإعدادات"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/bs/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Podijeli",
5 | "heading": "Podijeli kartu",
6 | "url": "Poveznica karte",
7 | "embed": "Ugradi kartu",
8 | "extent": "Podijeli trenutačni obuhvat karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/bs/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nije moguće stvoriti kartu",
4 | "views": "prikazi.",
5 | "licenseError": {
6 | "message": "Vaš račun nije licenciran za upotrebu konfigurabilnih appova koji nisu javni. Obratite se administratoru svoje organizacije da vam dodijeli vrstu korisnika koja sadrži licencu za osnovne appove ili za dodatke za osnovne appove.",
7 | "title": "Nema licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Označi kao neprikladno",
12 | "error": "Pogreška",
13 | "success": "Obilježeno zastavicom",
14 | "loading": "Učitavanje…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Opis nije dostupan",
18 | "bookmarks": "Knjižne oznake",
19 | "zoomTo": "Uvećajte ovu lokaciju i saznajte više.",
20 | "untitledNote": "Neimenovano"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medijski slojevi",
25 | "mediaLayersDescription": "Prikaži doprinose javnosti na karti.",
26 | "flickrSettings": "Postavke Flickra",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Postavke Twittera",
29 | "twitterUser": "Račun za Twitter",
30 | "twitterSignIn": "Prijava na Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Postavke Instagrama",
34 | "instagramUser": "Instagram račun",
35 | "instagramSignIn": "Prijavite se u Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Postavke YouTubea",
38 | "ytSettingsInfo": "Prikaz videozapisa korisnika uključujući mrežni i profesionalni sadržaj.",
39 | "ytTime": "Poslano u prošlosti",
40 | "today": "Dan",
41 | "this_week": "Tjedan",
42 | "this_month": "Mjesec",
43 | "all_time": "Bilo kada",
44 | "moreInfo": "Više informacija",
45 | "searchTerms": "Termini za pretraživanje",
46 | "search": "Pretraži",
47 | "flSettingsInfo": "Vrati rezultate koji se podudaraju s nazivom fotografije, opisom ili oznakama.",
48 | "twSettingsInfo": "Pogledajte što se sada događa.",
49 | "igSettingsInfo": "Instagram je brzi, divni i zabavni način da podijelite životne trenutke s prijateljima i obitelji.",
50 | "advancedOperators": "Savjet: upotrijebite operators za napredno pretraživanje.",
51 | "tweetsFilteredBy": "tweetovi filtrirani prema:",
52 | "photosFilteredBy": "fotografije filtrirane prema:",
53 | "videosFilteredBy": "videozapisi filtrirani prema:",
54 | "instagramAccountStatus": "Omogućite Instagram sloju da vidi vaš status.",
55 | "twitterAccountStatus": "Omogućite Twitter sloj da vidite svoj status."
56 | },
57 | "general": {
58 | "map": "Karta",
59 | "mapInfo": "Informacije o karti",
60 | "legend": "Legenda",
61 | "featured": "Izdvojene lokacije",
62 | "layers": "Slojevi",
63 | "share": "Podijeli",
64 | "about": "Informacije",
65 | "find": "Poštanski broj, grad itd.",
66 | "moreInfo": "Više informacija",
67 | "dateModified": "Posljednja izmjena",
68 | "noSearchResult": "Nema rezultata",
69 | "switchAccount": "Promijeni račun",
70 | "signIn": "Prijava",
71 | "settings": "Postavke"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/ca/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Comparteix",
5 | "heading": "Comparteix aquest mapa",
6 | "url": "Enllaç del mapa",
7 | "embed": "Incrusta el mapa",
8 | "extent": "Comparteix l'extensió de mapa actual",
9 | "size": "Mida (amplada/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correu electrònic"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ca/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "No es pot crear el mapa",
4 | "views": "visualitzacions.",
5 | "licenseError": {
6 | "message": "El vostre compte no té llicència per utilitzar aplicacions configurables que no siguin públiques. Demaneu a l'administrador de l'organització que us assigni un tipus d'usuari que inclogui les aplicacions bàsiques o una llicència d'aplicacions bàsiques de complement.",
7 | "title": "Sense llicència"
8 | }
9 | },
10 | "report": {
11 | "flag": "Marca-ho com a inadequat",
12 | "error": "Error",
13 | "success": "Marcat",
14 | "loading": "S'està carregant…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descripció no disponible",
18 | "bookmarks": "Marcadors",
19 | "zoomTo": "Apliqueu el zoom a aquesta ubicació i obteniu més informació.",
20 | "untitledNote": "Sense títol"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Capes de contingut multimèdia",
25 | "mediaLayersDescription": "Mostra les contribucions públiques al mapa.",
26 | "flickrSettings": "Configuració del Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Configuració del Twitter",
29 | "twitterUser": "Compte del Twitter",
30 | "twitterSignIn": "Inicia la sessió al Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Configuració de l'Instagram",
34 | "instagramUser": "Compte de l'Instagram",
35 | "instagramSignIn": "Inicia la sessió a l'Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Configuració del YouTube",
38 | "ytSettingsInfo": "Visualitzeu els vídeos que han creat els usuaris, inclosos el contingut professional i de la xarxa.",
39 | "ytTime": "Pujat durant l'últim",
40 | "today": "Dia",
41 | "this_week": "Setmana",
42 | "this_month": "Mes",
43 | "all_time": "Des de sempre",
44 | "moreInfo": "Més informació",
45 | "searchTerms": "Termes de cerca",
46 | "search": "Cerca",
47 | "flSettingsInfo": "Retorna els resultats que coincideixen amb el títol, la descripció o les etiquetes d'una foto.",
48 | "twSettingsInfo": "Vegeu el que està passant ara mateix.",
49 | "igSettingsInfo": "L'Instagram és una manera ràpida, atractiva i divertida de compartir la vostra vida amb els amics i la família.",
50 | "advancedOperators": "Suggeriment: utilitzeu els operadors per crear cerques avançades.",
51 | "tweetsFilteredBy": "tuits filtrats per:",
52 | "photosFilteredBy": "fotos filtrades per:",
53 | "videosFilteredBy": "vídeos filtrats per:",
54 | "instagramAccountStatus": "Habiliteu la capa de l'Instagram per veure el vostre estat.",
55 | "twitterAccountStatus": "Habiliteu la capa del Twitter per veure el vostre estat."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informació del mapa",
60 | "legend": "Llegenda",
61 | "featured": "Ubicacions destacades",
62 | "layers": "Capes",
63 | "share": "Comparteix",
64 | "about": "Quant a",
65 | "find": "Codi postal, ciutat, etc.",
66 | "moreInfo": "Més informació",
67 | "dateModified": "Darrera modificació",
68 | "noSearchResult": "No s'ha trobat cap resultat",
69 | "switchAccount": "Canvia el compte",
70 | "signIn": "Inicia la sessió",
71 | "settings": "Configuració"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/cs/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Sdílet",
5 | "heading": "Sdílet tuto mapu",
6 | "url": "Odkaz na mapu",
7 | "embed": "Vložit mapu",
8 | "extent": "Sdílet současný rozsah mapy",
9 | "size": "Velikost (šířka/výška):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/cs/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nelze vytvořit mapu",
4 | "views": "zobrazení.",
5 | "licenseError": {
6 | "message": "Váš účet nevlastní licenci k používání konfigurovatelných aplikací, které nejsou veřejné. Požádejte prosím správce své organizace, aby vám přidělil typ uživatele, jehož součástí jsou základní aplikace nebo doplňková licence základních aplikací.",
7 | "title": "Chybí licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Označit jako nevhodné",
12 | "error": "Chyba",
13 | "success": "Označeno",
14 | "loading": "Načítání…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Popis není k dispozici",
18 | "bookmarks": "Záložky",
19 | "zoomTo": "Přiblížit na toto umístění a zjistit více informací",
20 | "untitledNote": "Bez názvu"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Vrstvy médií",
25 | "mediaLayersDescription": "Zobrazovat na mapě příspěvky od veřejnosti.",
26 | "flickrSettings": "Nastavení Flickru",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Nastavení Twitteru",
29 | "twitterUser": "Twitter účet",
30 | "twitterSignIn": "Přihlásit se na Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Nastavení Instagramu",
34 | "instagramUser": "Účet Instagram",
35 | "instagramSignIn": "Přihlaste se k účtu na Instagramu",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Nastavení YouTube",
38 | "ytSettingsInfo": "Umožňuje zobrazovat uživatelsky vytvářená videa včetně televizního a profesionálního obsahu.",
39 | "ytTime": "Nahráno za minulý",
40 | "today": "Den",
41 | "this_week": "Týden",
42 | "this_month": "Měsíc",
43 | "all_time": "Za celou dobu",
44 | "moreInfo": "Další informace",
45 | "searchTerms": "Hledané výrazy",
46 | "search": "Hledat",
47 | "flSettingsInfo": "Vrátí výsledky, které se shodují s názvem, popisem nebo klíčovými slovy fotografie.",
48 | "twSettingsInfo": "Podívejte se, co se právě teď děje.",
49 | "igSettingsInfo": "Instagram představuje rychlý, stylový a zábavný způsob, jak sdílet svůj život s přáteli a rodinou.",
50 | "advancedOperators": "Tip: K vytváření pokročilých vyhledávání použijte operators.",
51 | "tweetsFilteredBy": "tweety se filtrují podle:",
52 | "photosFilteredBy": "fotografie se filtrují podle:",
53 | "videosFilteredBy": "videa se filtovaná podle:",
54 | "instagramAccountStatus": "Povolte vrstvě Instagram zjišťovat váš stav.",
55 | "twitterAccountStatus": "Chcete-li vidět váš stav, aktivujte vrstvu Twitter."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informace o mapě",
60 | "legend": "Legenda",
61 | "featured": "Vybraná umístění",
62 | "layers": "Vrstvy",
63 | "share": "Sdílet",
64 | "about": "O aplikaci",
65 | "find": "PSČ, město atd.",
66 | "moreInfo": "Více informací",
67 | "dateModified": "Naposledy upraveno",
68 | "noSearchResult": "Nebyly nalezeny žádné výsledky.",
69 | "switchAccount": "Přepnout účet",
70 | "signIn": "Přihlásit",
71 | "settings": "Nastavení"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/da/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Del",
5 | "heading": "Del dette kort",
6 | "url": "Kort-link",
7 | "embed": "Integrér kort",
8 | "extent": "Del aktuelt kortområde",
9 | "size": "Størrelse (bredde/højde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/da/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Kan ikke oprette kort",
4 | "views": "visninger.",
5 | "licenseError": {
6 | "message": "Din konto har ikke licens til at bruge Konfigurérbare apps, der ikke er offentlige. Bed din organisationsadministrator om at knytte dig til en brugertype, der omfatter Essential Apps eller en add-on Essential Apps-licens.",
7 | "title": "Ikke licenseret"
8 | }
9 | },
10 | "report": {
11 | "flag": "Markér som upassende",
12 | "error": "Fejl",
13 | "success": "Markeret",
14 | "loading": "Indlæser &Hjælp;"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Beskrivelse ikke tilgængelig",
18 | "bookmarks": "Bogmærker",
19 | "zoomTo": "Zoom til denne position, og find yderligere oplysninger.",
20 | "untitledNote": "Uden titel"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medielag",
25 | "mediaLayersDescription": "Vis bidrag fra offentligheden på kortet.",
26 | "flickrSettings": "Flickr-indstillinger",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-indstillinger",
29 | "twitterUser": "Twitter-konto",
30 | "twitterSignIn": "Log ind på Twitter",
31 | "webcams": "Webcams",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-indstillinger",
34 | "instagramUser": "Instagram-konto",
35 | "instagramSignIn": "Log ind på Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-indstillinger",
38 | "ytSettingsInfo": "Vis brugergenererede videoer inkl. netværks- og professionelt indhold.",
39 | "ytTime": "Tidligere overført",
40 | "today": "Dag",
41 | "this_week": "Uge",
42 | "this_month": "Måned",
43 | "all_time": "Altid",
44 | "moreInfo": "Flere oplysninger",
45 | "searchTerms": "Søgetermer",
46 | "search": "Søg",
47 | "flSettingsInfo": "Returnér resultater, der svarer til et fotos titel, beskrivelse eller nøgleord.",
48 | "twSettingsInfo": "Se, hvad der sker lige nu.",
49 | "igSettingsInfo": "Instagram er en hurtig, smuk og sjov måde at dele sit liv med venner og familie.",
50 | "advancedOperators": "Tip: brug operatorer til at oprette avancerede søgninger.",
51 | "tweetsFilteredBy": "tweets filtreret af:",
52 | "photosFilteredBy": "fotos filtreret af:",
53 | "videosFilteredBy": "videoer filtreret af:",
54 | "instagramAccountStatus": "Aktivér Instagram-laget for at se din status.",
55 | "twitterAccountStatus": "Aktivér Twitter-laget til at se din status."
56 | },
57 | "general": {
58 | "map": "Kort",
59 | "mapInfo": "Kortoplysninger",
60 | "legend": "Signaturforklaring",
61 | "featured": "Udvalgte steder",
62 | "layers": "Lag",
63 | "share": "Del",
64 | "about": "Om",
65 | "find": "Postnummer, by osv.",
66 | "moreInfo": "Flere oplysninger",
67 | "dateModified": "Senest ændret",
68 | "noSearchResult": "Intet resultat fundet",
69 | "switchAccount": "Skift konto",
70 | "signIn": "Log ind",
71 | "settings": "Indstillinger"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/de/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Freigeben",
5 | "heading": "Diese Karte freigeben",
6 | "url": "Karten-Link",
7 | "embed": "Karte einbetten",
8 | "extent": "Aktuelle Kartenausdehnung freigeben",
9 | "size": "Größe (Breite/Höhe):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-Mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/de/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Karte kann nicht erstellt werden",
4 | "views": "Aufrufe.",
5 | "licenseError": {
6 | "message": "Ihr Konto ist nicht für die Verwendung von nicht öffentlichen konfigurierbaren Apps lizenziert. Bitten Sie den Administrator der Organisation, Ihnen einen Benutzertyp mit Essential Apps oder eine Add-On-Lizenz für Essential Apps zuzuweisen.",
7 | "title": "Nicht lizenziert"
8 | }
9 | },
10 | "report": {
11 | "flag": "Als ungeeignet kennzeichnen",
12 | "error": "Fehler",
13 | "success": "Gekennzeichnet",
14 | "loading": "Wird geladen…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Keine Beschreibung verfügbar",
18 | "bookmarks": "Lesezeichen",
19 | "zoomTo": "Zoomen Sie auf diese Position, um weitere Informationen zu erhalten.",
20 | "untitledNote": "Unbenannt"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medien-Layer",
25 | "mediaLayersDescription": "Von der Öffentlichkeit bereitgestellte Daten auf der Karte anzeigen.",
26 | "flickrSettings": "Flickr-Einstellungen",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-Einstellungen",
29 | "twitterUser": "Twitter-Konto",
30 | "twitterSignIn": "Bei Twitter anmelden",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-Einstellungen",
34 | "instagramUser": "Instagram-Konto",
35 | "instagramSignIn": "Bei Instagram anmelden",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-Einstellungen",
38 | "ytSettingsInfo": "Von Benutzern erstellte Videos mit Netzwerk- und professionellen Inhalten anzeigen.",
39 | "ytTime": "Hochgeladen in folgenden Zeiträumen",
40 | "today": "Tag",
41 | "this_week": "Woche",
42 | "this_month": "Monat",
43 | "all_time": "Gesamte Zeit",
44 | "moreInfo": "Weitere Informationen",
45 | "searchTerms": "Suchbegriffe",
46 | "search": "Suchen",
47 | "flSettingsInfo": "Ergebnisse zurückgeben, die mit dem Titel, der Beschreibung oder den Tags eines Fotos übereinstimmen.",
48 | "twSettingsInfo": "Sehen Sie, was jetzt gerade passiert.",
49 | "igSettingsInfo": "Mit Instagram können Sie Ihr Leben auf schnelle, wunderbare und lustige Weise mit Ihren Freunden und Ihrer Familie teilen.",
50 | "advancedOperators": "Tipp: Verwenden Sie Operatoren zur erweiterten Suche.",
51 | "tweetsFilteredBy": "Tweets gefiltert nach:",
52 | "photosFilteredBy": "Fotos gefiltert nach:",
53 | "videosFilteredBy": "Videos gefiltert nach:",
54 | "instagramAccountStatus": "Aktivieren Sie den Instagram-Layer, um Ihren Status zu sehen.",
55 | "twitterAccountStatus": "Dem Twitter-Layer die Anzeige des Status ermöglichen."
56 | },
57 | "general": {
58 | "map": "Karte",
59 | "mapInfo": "Karteninformationen",
60 | "legend": "Legende",
61 | "featured": "Ausgewählte Positionen",
62 | "layers": "Layer",
63 | "share": "Freigeben",
64 | "about": "Info",
65 | "find": "Postleitzahl, Stadt usw.",
66 | "moreInfo": "Weitere Informationen",
67 | "dateModified": "Zuletzt geändert",
68 | "noSearchResult": "Kein Ergebnis gefunden",
69 | "switchAccount": "Konto wechseln",
70 | "signIn": "Anmelden",
71 | "settings": "Einstellungen"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/el/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Κοινοποίηση",
5 | "heading": "Κοινοποίηση αυτού του χάρτη",
6 | "url": "Σύνδεσμος χάρτη",
7 | "embed": "Ενσωμάτωση χάρτη",
8 | "extent": "Κοινοποίηση τρέχουσας έκτασης χάρτη",
9 | "size": "Μέγεθος (πλάτος/ύψος):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/el/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Δεν είναι δυνατή η δημιουργία χάρτη",
4 | "views": "προβολές.",
5 | "licenseError": {
6 | "message": "Ο λογαριασμός σας δεν διαθέτει άδεια χρήσης για Παραμετροποιήσιμες Εφαρμογές που δεν είναι δημόσιες. Ζητήστε από τον διαχειριστή του οργανισμού σας να σας εκχωρήσει τύπο χρήστη που να περιλαμβάνει Βασικές Εφαρμογές ή πρόσθετη άδεια χρήσης για Βασικές Εφαρμογές.",
7 | "title": "Χωρίς άδεια χρήσης"
8 | }
9 | },
10 | "report": {
11 | "flag": "Σήμανση ως ανάρμοστου",
12 | "error": "Σφάλμα",
13 | "success": "Σημάνθηκε",
14 | "loading": "Φόρτωση…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Μη διαθέσιμη περιγραφή",
18 | "bookmarks": "Σελιδοδείκτες",
19 | "zoomTo": "Εστιάστε σε αυτή την τοποθεσία και βρείτε περισσότερες πληροφορίες.",
20 | "untitledNote": "Χωρίς τίτλο"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Επίπεδα πολυμέσων",
25 | "mediaLayersDescription": "Εμφάνιση συνεισφορών από το κοινό στο χάρτη.",
26 | "flickrSettings": "Ρυθμίσεις Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Ρυθμίσεις Twitter",
29 | "twitterUser": "Λογαριασμός Twitter",
30 | "twitterSignIn": "Είσοδος στο Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Ρυθμίσεις Instagram",
34 | "instagramUser": "Λογαριασμός Instagram",
35 | "instagramSignIn": "Είσοδος στο Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Ρυθμίσεις YouTube",
38 | "ytSettingsInfo": "Προβάλετε βίντεο δημιουργημένα από χρήστες που περιλαμβάνουν περιεχόμενο δικτύου και επαγγελματικό περιεχόμενο.",
39 | "ytTime": "Μεταφόρτωση την/τον τελευταία/ο",
40 | "today": "Ημέρα",
41 | "this_week": "Εβδομάδα",
42 | "this_month": "Μήνα",
43 | "all_time": "Οποτεδήποτε",
44 | "moreInfo": "Περισσότερες πληροφορίες",
45 | "searchTerms": "Όροι αναζήτησης",
46 | "search": "Αναζήτηση",
47 | "flSettingsInfo": "Βρείτε αποτελέσματα που αντιστοιχούν στον τίτλο, την περιγραφή ή τις ετικέτες μιας φωτογραφίας.",
48 | "twSettingsInfo": "Δείτε τι συμβαίνει αυτή τη στιγμή.",
49 | "igSettingsInfo": "Το Instagram είναι ένας γρήγορος, όμορφος και διασκεδαστικός τρόπος να μοιράζεστε τη ζωή σας με τους φίλους και την οικογένειά σας.",
50 | "advancedOperators": "Συμβουλή: Χρησιμοποιήστε τελεστές για να δημιουργήσετε σύνθετες αναζητήσεις.",
51 | "tweetsFilteredBy": "φιλτράρισμα tweet κατά:",
52 | "photosFilteredBy": "φιλτράρισμα φωτογραφιών κατά:",
53 | "videosFilteredBy": "φιλτράρισμα βίντεο κατά:",
54 | "instagramAccountStatus": "Ενεργοποιήστε το επίπεδο του Instagram, για να δείτε την κατάστασή σας.",
55 | "twitterAccountStatus": "Ενεργοποιήστε το επίπεδο του Twitter για να δείτε την κατάστασή σας."
56 | },
57 | "general": {
58 | "map": "Χάρτης",
59 | "mapInfo": "Πληροφορίες χάρτη",
60 | "legend": "Υπόμνημα",
61 | "featured": "Διαθέσιμες τοποθεσίες",
62 | "layers": "Θεματικά επίπεδα",
63 | "share": "Κοινοποίηση",
64 | "about": "Πληροφορίες",
65 | "find": "Ταχυδρομικός κώδικας, πόλη κ.λπ.",
66 | "moreInfo": "Περισσότερες πληροφορίες",
67 | "dateModified": "Τελευταία τροποποίηση",
68 | "noSearchResult": "Δεν βρέθηκε αποτέλεσμα",
69 | "switchAccount": "Αλλαγή λογαριασμού",
70 | "signIn": "Είσοδος",
71 | "settings": "Ρυθμίσεις"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/es/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Compartir",
5 | "heading": "Compartir este mapa",
6 | "url": "Enlace del mapa",
7 | "embed": "Integrar mapa",
8 | "extent": "Compartir la extensión del mapa actual",
9 | "size": "Tamaño (ancho/alto):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correo electrónico"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/es/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "No se puede crear el mapa",
4 | "views": "vistas.",
5 | "licenseError": {
6 | "message": "Su cuenta no tiene licencia para utilizar aplicaciones configurables que no son públicas. Pídale al administrador de su organización que le asigne un tipo de usuario que incluya aplicaciones esenciales o una licencia complementaria de aplicaciones esenciales.",
7 | "title": "Sin licencia"
8 | }
9 | },
10 | "report": {
11 | "flag": "Marcar como inadecuado",
12 | "error": "Error",
13 | "success": "Marcado",
14 | "loading": "Cargando…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descripción no disponible",
18 | "bookmarks": "Marcadores",
19 | "zoomTo": "Haz zoom a esta ubicación y obtén más información.",
20 | "untitledNote": "Sin título"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Capas de medios",
25 | "mediaLayersDescription": "Mostrar contribuciones del público en el mapa.",
26 | "flickrSettings": "Configuración de Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Configuración de Twitter",
29 | "twitterUser": "Cuenta de Twitter",
30 | "twitterSignIn": "Iniciar sesión en Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Configuración de Instagram",
34 | "instagramUser": "Cuenta de Instagram",
35 | "instagramSignIn": "Iniciar sesión en Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Configuración de YouTube",
38 | "ytSettingsInfo": "Ve vídeos generados por el usuario, incluido el contenido profesional y de la red.",
39 | "ytTime": "Cargados en el/la último/a",
40 | "today": "Día",
41 | "this_week": "Semana",
42 | "this_month": "Mes",
43 | "all_time": "Todo el tiempo",
44 | "moreInfo": "Más información",
45 | "searchTerms": "Términos de búsqueda",
46 | "search": "Buscar",
47 | "flSettingsInfo": "Devuelve los resultados que coinciden con el título, la descripción o las etiquetas de una foto.",
48 | "twSettingsInfo": "Descubre lo que está sucediendo ahora mismo.",
49 | "igSettingsInfo": "Instagram es una forma rápida, atractiva y divertida de compartir tu vida con tus amigos y tu familia.",
50 | "advancedOperators": "Sugerencia: usa los operadores para crear búsquedas avanzadas.",
51 | "tweetsFilteredBy": "tweets filtrados por:",
52 | "photosFilteredBy": "fotos filtradas por:",
53 | "videosFilteredBy": "vídeos filtrados por:",
54 | "instagramAccountStatus": "Habilite la capa de Instagram para ver su estado.",
55 | "twitterAccountStatus": "Habilita la capa de Twitter para ver tu estado."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Información del mapa",
60 | "legend": "Leyenda",
61 | "featured": "Ubicaciones destacadas",
62 | "layers": "Capas",
63 | "share": "Compartir",
64 | "about": "Acerca de",
65 | "find": "Código postal, ciudad, etc.",
66 | "moreInfo": "Más información",
67 | "dateModified": "Última modificación",
68 | "noSearchResult": "No se ha encontrado ningún resultado",
69 | "switchAccount": "Cambiar la cuenta",
70 | "signIn": "Iniciar sesión",
71 | "settings": "Configuración"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/et/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Jaga",
5 | "heading": "Jaga seda kaarti",
6 | "url": "Kaardi link",
7 | "embed": "Lisa kaart",
8 | "extent": "Jaga praeguse kaardi kuvaulatust",
9 | "size": "Suurus (laius/kõrgus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/et/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Kaarti ei saa luua",
4 | "views": "vaatamisi.",
5 | "licenseError": {
6 | "message": "Teie kontol puudub litsents konfigureeritavate rakenduste kasutamiseks, mis ei ole avalikud. Paluge oma organisatsiooni administraatoril määrata teile kasutajatüüp, mis sisaldab olulisi rakendusi või oluliste rakenduse lisalitsentsi.",
7 | "title": "Litsents puudub"
8 | }
9 | },
10 | "report": {
11 | "flag": "Märgi mittesobilikuks",
12 | "error": "Viga",
13 | "success": "Märgitud",
14 | "loading": "Laadimine…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Kirjeldus pole saadaval",
18 | "bookmarks": "Järjehoidjad",
19 | "zoomTo": "Suumi sellele kohale ning leia rohkem infot.",
20 | "untitledNote": "Pealkirjata"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Meediakihid",
25 | "mediaLayersDescription": "Kuva kaardil avalikkuse kaudu saadud panust.",
26 | "flickrSettings": "Flickri seaded",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitteri seaded",
29 | "twitterUser": "Twitteri konto",
30 | "twitterSignIn": "Logi sisse Twitterisse",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagrami sätted",
34 | "instagramUser": "Instagrami konto",
35 | "instagramSignIn": "Logi sisse Instagrami",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube seaded",
38 | "ytSettingsInfo": "Kuva kasutaja loodud videod, sh professionaalne ja võrgusisu.",
39 | "ytTime": "Üles laaditud viimase",
40 | "today": "Päev",
41 | "this_week": "Nädal",
42 | "this_month": "Kuu",
43 | "all_time": "Kogu aeg",
44 | "moreInfo": "Detailsem info",
45 | "searchTerms": "Otsinguterminid",
46 | "search": "Otsi",
47 | "flSettingsInfo": "Tagastatakse foto pealkirjale, kirjeldustele või siltidele vastavad tulemused.",
48 | "twSettingsInfo": "Näete, mis parasjagu toimub.",
49 | "igSettingsInfo": "Instagram on kiire, kaunis ja lõbus viis jagada oma elusündmusi pere ning sõpradega.",
50 | "advancedOperators": "Näpunäide: kasutage täpsemate otsingute loomiseks tehtemärke.",
51 | "tweetsFilteredBy": "säutsud on filtreeritud:",
52 | "photosFilteredBy": "fotod on filtreeritud:",
53 | "videosFilteredBy": "videomaterjali filtreerimine:",
54 | "instagramAccountStatus": "Lubage Instagrami kihti, et näha enda staatust.",
55 | "twitterAccountStatus": "Luba Twitteri kihti, et näha enda staatust."
56 | },
57 | "general": {
58 | "map": "Kaart",
59 | "mapInfo": "Kaardi info",
60 | "legend": "Legend",
61 | "featured": "Esiletõstetud asukohad",
62 | "layers": "Kihid",
63 | "share": "Jaga",
64 | "about": "Info",
65 | "find": "Postikood, linn jne.",
66 | "moreInfo": "Detailsem info",
67 | "dateModified": "Viimati muudetud",
68 | "noSearchResult": "Tulemust ei leitud",
69 | "switchAccount": "Vaheta kontot",
70 | "signIn": "Logi sisse",
71 | "settings": "Seaded"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/fi/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Jaa",
5 | "heading": "Jaa tämä kartta",
6 | "url": "Karttalinkki",
7 | "embed": "Upota kartta",
8 | "extent": "Jaa nykyisen kartan laajuus",
9 | "size": "Koko (leveys/korkeus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Sähköposti"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/fi/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Karttaa ei voi luoda",
4 | "views": "näkymät.",
5 | "licenseError": {
6 | "message": "Tiliäsi ei ole lisensoitu käyttämään muunneltavissa olevia sovelluksia, jotka eivät ole julkisia. Pyydä organisaatiosi pääkäyttäjää määrittämään sinulle käyttäjätyyppi, joka sisältää keskeiset sovellukset tai keskeisten sovellusten lisäosan lisenssin.",
7 | "title": "Ei lisenssiä"
8 | }
9 | },
10 | "report": {
11 | "flag": "Merkitse sopimattomaksi",
12 | "error": "Virhe",
13 | "success": "Merkitty",
14 | "loading": "Lataa…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Kuvaus ei ole käytettävissä",
18 | "bookmarks": "Kirjanmerkit",
19 | "zoomTo": "Tarkenna tähän sijaintiin ja etsi lisää tietoja.",
20 | "untitledNote": "Nimetön"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Mediakarttatasot",
25 | "mediaLayersDescription": "Näytä julkisesti luodut sisällöt kartassa.",
26 | "flickrSettings": "Flickr-asetukset",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-asetukset",
29 | "twitterUser": "Twitter-tili",
30 | "twitterSignIn": "Kirjaudu Twitteriin",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-asetukset",
34 | "instagramUser": "Instagram-tili",
35 | "instagramSignIn": "Kirjaudu Instagramiin",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-asetukset",
38 | "ytSettingsInfo": "Näytä käyttäjän luomat videot, mukaan lukien verkko- ja ammattikäyttösisältö.",
39 | "ytTime": "Lähetetty edellisen",
40 | "today": "Päivä",
41 | "this_week": "Viikko",
42 | "this_month": "Kuukausi",
43 | "all_time": "Koko ajan",
44 | "moreInfo": "Lisätietoja",
45 | "searchTerms": "Hakutermit",
46 | "search": "Etsi",
47 | "flSettingsInfo": "Palauta valokuvan otsikkoa, kuvausta tai tunnisteita vastaavat tulokset.",
48 | "twSettingsInfo": "Katso, mitä tapahtuu juuri nyt.",
49 | "igSettingsInfo": "Instagram on nopea, kaunis ja hauska tapa jakaa elämän mukavia hetkiä ystävien ja perheen kanssa.",
50 | "advancedOperators": "Vihje: käytä operaattoreita tarkennettujen hakujen luonnissa.",
51 | "tweetsFilteredBy": "twiittien suodatusperuste:",
52 | "photosFilteredBy": "valokuvien suodatusperuste:",
53 | "videosFilteredBy": "videoiden suodatusperuste:",
54 | "instagramAccountStatus": "Ota Instagram-kerros käyttöön, jotta näet tilasi.",
55 | "twitterAccountStatus": "Ota Twitter-karttataso käyttöön, jotta näet tilasi."
56 | },
57 | "general": {
58 | "map": "Kartta",
59 | "mapInfo": "Kartan tiedot",
60 | "legend": "Selite",
61 | "featured": "Esittelyssä olevat sijainnit",
62 | "layers": "Karttatasot",
63 | "share": "Jaa",
64 | "about": "Tietoja",
65 | "find": "Postinumero, kaupunki jne.",
66 | "moreInfo": "Lisätietoja",
67 | "dateModified": "Viimeksi muokattu",
68 | "noSearchResult": "Tulosta ei löytynyt",
69 | "switchAccount": "Vaihda tiliä",
70 | "signIn": "Kirjaudu sisään",
71 | "settings": "Asetukset"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/fr/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partager",
5 | "heading": "Partager cette carte",
6 | "url": "Lien de la carte",
7 | "embed": "Intégrer la carte",
8 | "extent": "Partager l’étendue actuelle de la carte",
9 | "size": "Taille (largeur/hauteur) :",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Messagerie électronique"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/fr/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Impossible de créer la carte",
4 | "views": "vues.",
5 | "licenseError": {
6 | "message": "La licence de votre compte ne permet pas d’utiliser des applications configurables non publiques. Demandez à l’administrateur de votre organisation de vous attribuer un type d’utilisateur qui inclut une licence Essential Apps ou une licence Essential Apps additionnelle.",
7 | "title": "Pas de licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Signaler comme inapproprié",
12 | "error": "Erreur",
13 | "success": "Signalé",
14 | "loading": "Chargement…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Description indisponible",
18 | "bookmarks": "Géosignets",
19 | "zoomTo": "Zoomez sur cet emplacement pour en savoir plus.",
20 | "untitledNote": "Sans titre"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Couches de réseaux sociaux",
25 | "mediaLayersDescription": "Affichez les contributions du public sur la carte.",
26 | "flickrSettings": "Paramètres Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Paramètres Twitter",
29 | "twitterUser": "Compte Twitter",
30 | "twitterSignIn": "Se connecter à Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Paramètres Instagram",
34 | "instagramUser": "Compte Instagram",
35 | "instagramSignIn": "Se connecter à Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Paramètres YouTube",
38 | "ytSettingsInfo": "Consultez les vidéos générées par les utilisateurs, notamment le contenu professionnel et du réseau.",
39 | "ytTime": "Ajoutées au cours",
40 | "today": "De la journée passée",
41 | "this_week": "De la semaine passée",
42 | "this_month": "Du mois passé",
43 | "all_time": "Tout le temps",
44 | "moreInfo": "Plus d'informations",
45 | "searchTerms": "Termes de recherche",
46 | "search": "Rechercher",
47 | "flSettingsInfo": "Générez des résultats correspondant au titre, à la description ou aux balises d'une photo.",
48 | "twSettingsInfo": "Consultez l'actualité.",
49 | "igSettingsInfo": "Instagram permet de partager votre vie avec vos amis et votre famille de manière rapide, esthétique et ludique.",
50 | "advancedOperators": "Conseil : utilisez les opérateurs pour élaborer des recherches avancées.",
51 | "tweetsFilteredBy": "tweets filtrés par :",
52 | "photosFilteredBy": "photos filtrées par :",
53 | "videosFilteredBy": "vidéos filtrées par :",
54 | "instagramAccountStatus": "Activez la couche Instagram pour connaître votre statut.",
55 | "twitterAccountStatus": "Activez la couche Twitter pour voir votre statut."
56 | },
57 | "general": {
58 | "map": "Carte",
59 | "mapInfo": "Informations sur la carte",
60 | "legend": "Légende",
61 | "featured": "Emplacements à l'affiche",
62 | "layers": "Couches",
63 | "share": "Partager",
64 | "about": "A propos",
65 | "find": "Code postal, ville, etc.",
66 | "moreInfo": "Plus d'informations",
67 | "dateModified": "Dernière modification",
68 | "noSearchResult": "Aucun résultat trouvé",
69 | "switchAccount": "Changer de compte",
70 | "signIn": "Se connecter",
71 | "settings": "Paramètres"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/he/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "שתף",
5 | "heading": "שתף מפה זו",
6 | "url": "קשר מפה",
7 | "embed": "הטמע את המפה",
8 | "extent": "שתף את תיחום המפה הנוכחי",
9 | "size": "גודל (רוחב/גובה):",
10 | "facebookTooltip": "פייסבוק",
11 | "twitterTooltip": "טוויטר",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/he/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "לא ניתן ליצור מפה",
4 | "views": "תצוגות",
5 | "licenseError": {
6 | "message": "החשבון שלך אינו מורשה להשתמש באפליקציות הניתנות להגדרה שאינן ציבוריות. בקש ממנהל המערכת בארגון שלך להקצות לך סוג משתמש שכולל את Essential Apps או רישיון הרחבה ל-Essential Apps.",
7 | "title": "ללא רישיון"
8 | }
9 | },
10 | "report": {
11 | "flag": "סמן כבלתי הולם",
12 | "error": "שגיאה",
13 | "success": "מסומן",
14 | "loading": "Loading…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "תאור לא זמין",
18 | "bookmarks": "סימניות",
19 | "zoomTo": "התמקד למיקום הזה ומצא מידע נוסף.",
20 | "untitledNote": "ללא כותרת"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "שכבות מדיה",
25 | "mediaLayersDescription": "הצג תרומות מהציבור על המפה.",
26 | "flickrSettings": "הגדרות Flickr",
27 | "twitter": "טוויטר",
28 | "twitterSettings": "הגדרות טוויטר",
29 | "twitterUser": "חשבון טוויטר",
30 | "twitterSignIn": "התחבר לטוויטר",
31 | "webcams": "מצלמות רשת.נסיעה",
32 | "instagram": "אינסטגרם",
33 | "instagramSettings": "הגדרות אינסטגרם",
34 | "instagramUser": "חשבון Instagram",
35 | "instagramSignIn": "התחבר ל-Instagram",
36 | "youtube": "יוטיוב",
37 | "youtubeSettings": "הגדרות יוטיוב",
38 | "ytSettingsInfo": "סרטונים שנוצרו על ידי משתמשים וכוללים רשת ותוכן מקצועי.",
39 | "ytTime": "הועלה בעבר",
40 | "today": "יום",
41 | "this_week": "שבוע",
42 | "this_month": "חודש",
43 | "all_time": "כל עת",
44 | "moreInfo": "מידע נוסף",
45 | "searchTerms": "תנאי חיפוש",
46 | "search": "חפש",
47 | "flSettingsInfo": "התוצאות מתאימות לכותרת תמונה, תאור או תגיות.",
48 | "twSettingsInfo": "ראה מה קורה כעת.",
49 | "igSettingsInfo": "אינסטגרם היא דרך מהירה, יפה ומהנה לחלוק את חייך עם חברים ובני משפחה.",
50 | "advancedOperators": "טיפ: השתמש במנועים ליצירת חיפושים מתקדמים.",
51 | "tweetsFilteredBy": "סינון ציוצים על ידי:",
52 | "photosFilteredBy": "סינון תמונות על ידי:",
53 | "videosFilteredBy": "קטעי וידאו מסוננים על ידי:",
54 | "instagramAccountStatus": "אפשר לשכבת Instagram לראות את הסטטוס שלך.",
55 | "twitterAccountStatus": "אפשר את שכבת הציוצים כדי לראות את הסטטוס שלך."
56 | },
57 | "general": {
58 | "map": "מפה",
59 | "mapInfo": "מידע על המפה",
60 | "legend": "מקרא",
61 | "featured": "מיקומים נבחרים",
62 | "layers": "שכבות",
63 | "share": "שיתוף",
64 | "about": "אודות",
65 | "find": "מיקוד, עיר ועוד.",
66 | "moreInfo": "מידע נוסף",
67 | "dateModified": "שונה לאחרונה",
68 | "noSearchResult": "לא נמצאו תוצאות",
69 | "switchAccount": "החלף חשבון",
70 | "signIn": "התחבר",
71 | "settings": "הגדרות"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/hr/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Podijeli",
5 | "heading": "Podijeli kartu",
6 | "url": "Poveznica karte",
7 | "embed": "Ugradi kartu",
8 | "extent": "Podijeli trenutačni obuhvat karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/hr/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nije moguće stvoriti kartu",
4 | "views": "prikazi.",
5 | "licenseError": {
6 | "message": "Vaš račun nije licenciran za upotrebu konfigurabilnih appova koji nisu javni. Obratite se administratoru svoje organizacije da vam dodijeli vrstu korisnika koja sadrži licencu za osnovne appove ili za dodatke za osnovne appove.",
7 | "title": "Nema licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Označi kao neprikladno",
12 | "error": "Pogreška",
13 | "success": "Obilježeno zastavicom",
14 | "loading": "Učitavanje…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Opis nije dostupan",
18 | "bookmarks": "Knjižne oznake",
19 | "zoomTo": "Uvećajte ovu lokaciju i saznajte više.",
20 | "untitledNote": "Neimenovano"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medijski slojevi",
25 | "mediaLayersDescription": "Prikaži doprinose javnosti na karti.",
26 | "flickrSettings": "Postavke Flickra",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Postavke Twittera",
29 | "twitterUser": "Račun za Twitter",
30 | "twitterSignIn": "Prijava na Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Postavke Instagrama",
34 | "instagramUser": "Instagram račun",
35 | "instagramSignIn": "Prijavite se u Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Postavke YouTubea",
38 | "ytSettingsInfo": "Prikaz videozapisa korisnika uključujući mrežni i profesionalni sadržaj.",
39 | "ytTime": "Poslano u prošlosti",
40 | "today": "Dan",
41 | "this_week": "Tjedan",
42 | "this_month": "Mjesec",
43 | "all_time": "Bilo kada",
44 | "moreInfo": "Više informacija",
45 | "searchTerms": "Termini za pretraživanje",
46 | "search": "Pretraži",
47 | "flSettingsInfo": "Vrati rezultate koji se podudaraju s nazivom fotografije, opisom ili oznakama.",
48 | "twSettingsInfo": "Pogledajte što se sada događa.",
49 | "igSettingsInfo": "Instagram je brzi, divni i zabavni način da podijelite životne trenutke s prijateljima i obitelji.",
50 | "advancedOperators": "Savjet: upotrijebite operators za napredno pretraživanje.",
51 | "tweetsFilteredBy": "tweetovi filtrirani prema:",
52 | "photosFilteredBy": "fotografije filtrirane prema:",
53 | "videosFilteredBy": "videozapisi filtrirani prema:",
54 | "instagramAccountStatus": "Omogućite Instagram sloju da vidi vaš status.",
55 | "twitterAccountStatus": "Omogućite Twitter sloj da vidite svoj status."
56 | },
57 | "general": {
58 | "map": "Karta",
59 | "mapInfo": "Informacije o karti",
60 | "legend": "Legenda",
61 | "featured": "Izdvojene lokacije",
62 | "layers": "Slojevi",
63 | "share": "Podijeli",
64 | "about": "Informacije",
65 | "find": "Poštanski broj, grad itd.",
66 | "moreInfo": "Više informacija",
67 | "dateModified": "Posljednja izmjena",
68 | "noSearchResult": "Nema rezultata",
69 | "switchAccount": "Promijeni račun",
70 | "signIn": "Prijava",
71 | "settings": "Postavke"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/hu/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Megosztás",
5 | "heading": "A térkép megosztása",
6 | "url": "Térkép hivatkozása",
7 | "embed": "Térkép beágyazása",
8 | "extent": "Aktuális térképkiterjedés megosztása",
9 | "size": "Méret (szélesség/magasság):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/hu/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nem sikerült létrehozni a térképet",
4 | "views": "megtekintés.",
5 | "licenseError": {
6 | "message": "Az Ön fiókjának licence nem terjed ki a nem nyilvános konfigurálható alkalmazásokra. Igényelje a szervezete adminisztrátorától, hogy rendeljen Önhöz olyan felhasználótípust, amely tartalmazza az alapvető alkalmazásokat, vagy egy kiegészítő alapvető alkalmazásokra vonatkozó licencet.",
7 | "title": "Nincs licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Megjelölés nem megfelelőként",
12 | "error": "Hiba",
13 | "success": "Megjelölve",
14 | "loading": "Betöltés…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "A leírás nem érhető el",
18 | "bookmarks": "Könyvjelzők",
19 | "zoomTo": "A hely felnagyítása, és további információk keresése.",
20 | "untitledNote": "Cím nélkül"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Médiarétegek",
25 | "mediaLayersDescription": "A közönség hozzájárulásainak megjelenítése a térképen.",
26 | "flickrSettings": "Flickr-beállítások",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-beállítások",
29 | "twitterUser": "Twitter-fiók",
30 | "twitterSignIn": "Bejelentkezés a Twitterbe",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-beállítások",
34 | "instagramUser": "Instagram-fiók",
35 | "instagramSignIn": "Bejelentkezés az Instagramba",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-beállítások",
38 | "ytSettingsInfo": "Felhasználók által készített videók megtekintése, beleértve a hálózati és a professzionális tartalmakat.",
39 | "ytTime": "Feltöltve az következő időszakon belül:",
40 | "today": "nap",
41 | "this_week": "hét",
42 | "this_month": "hónap",
43 | "all_time": "Mindenkori",
44 | "moreInfo": "További információ",
45 | "searchTerms": "Keresőkifejezések",
46 | "search": "Keresés",
47 | "flSettingsInfo": "Fényképek címének, leírásának vagy címkéinek megfelelő találatok visszaadása.",
48 | "twSettingsInfo": "Aktuális események megtekintése.",
49 | "igSettingsInfo": "Az Instagramon gyorsan, látványosan és a szórakoztatóan oszthatja meg az életét a barátaival és a családjával.",
50 | "advancedOperators": "Tipp: Operátorok használatával összetett kereséseket is megadhat.",
51 | "tweetsFilteredBy": "tweet, szűrés alapja:",
52 | "photosFilteredBy": "fényképek szűrési alapja:",
53 | "videosFilteredBy": "videó, szűrés alapja:",
54 | "instagramAccountStatus": "Az Instagram-réteg láthatja az Ön állapotát.",
55 | "twitterAccountStatus": "A Twitter-réteg láthatja az Ön állapotát."
56 | },
57 | "general": {
58 | "map": "Térkép",
59 | "mapInfo": "Térkép adatai",
60 | "legend": "Jelmagyarázat",
61 | "featured": "Kiemelt helyek",
62 | "layers": "Rétegek",
63 | "share": "Megosztás",
64 | "about": "További információ",
65 | "find": "Irányítószám, város stb.",
66 | "moreInfo": "További információ",
67 | "dateModified": "Utoljára módosítva:",
68 | "noSearchResult": "Nincs találat",
69 | "switchAccount": "Fiókváltás",
70 | "signIn": "Bejelentkezés",
71 | "settings": "Beállítások"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/id/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Bagikan",
5 | "heading": "Bagikan peta ini",
6 | "url": "Tautan Peta",
7 | "embed": "Sematkan Peta",
8 | "extent": "Bagikan jangkauan peta saat ini",
9 | "size": "Ukuran (lebar/tinggi):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/id/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Tidak dapat membuat peta",
4 | "views": "tampilan.",
5 | "licenseError": {
6 | "message": "Akun Anda tidak dilisensikan untuk menggunakan Aplikasi yang Dapat Dikonfigurasi yang bukan bersifat publik. Harap minta administrator organisasi Anda untuk menetapkan Anda jenis pengguna yang menyertakan lisensi Essential App atau add-on Essential App.",
7 | "title": "Tidak Dilisensikan"
8 | }
9 | },
10 | "report": {
11 | "flag": "Tandai dengan bendera sebagai tidak pantas",
12 | "error": "Kesalahan",
13 | "success": "Bertanda bendera",
14 | "loading": "Memuat…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Deskripsi tidak tersedia",
18 | "bookmarks": "Marka buku",
19 | "zoomTo": "Perbesar lokasi ini dan temukan lebih banyak informasi.",
20 | "untitledNote": "Tidak berjudul"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Lapisan Media",
25 | "mediaLayersDescription": "Tampilkan kontribusi dari publik pada peta.",
26 | "flickrSettings": "Pengaturan Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Pengaturan Twitter",
29 | "twitterUser": "Akun Twitter",
30 | "twitterSignIn": "Masuk ke Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Pengaturan Instagram",
34 | "instagramUser": "Akun Instagram",
35 | "instagramSignIn": "Masuk ke Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Pengaturan YouTube",
38 | "ytSettingsInfo": "Tampilkan video yang dibuat pengguna, termasuk konten jaringan dan profesional.",
39 | "ytTime": "Diunggah pada waktu lalu",
40 | "today": "Hari",
41 | "this_week": "Minggu",
42 | "this_month": "Bulan",
43 | "all_time": "Semua Waktu",
44 | "moreInfo": "Informasi selengkapnya",
45 | "searchTerms": "Istilah Pencarian",
46 | "search": "Cari",
47 | "flSettingsInfo": "Hasil yang diperoleh cocok dengan judul foto, deskripsi, atau label.",
48 | "twSettingsInfo": "Lihat apa yang terjadi sekarang.",
49 | "igSettingsInfo": "Instagram merupakan cara yang cepat, indah, dan menyenangkan untuk berbagi kehidupan dengan teman dan keluarga.",
50 | "advancedOperators": "Tip: gunakan operator untuk membuat pencarian tingkat lanjut.",
51 | "tweetsFilteredBy": "tweet difilter berdasarkan:",
52 | "photosFilteredBy": "foto difilter berdasarkan:",
53 | "videosFilteredBy": "video difilter berdasarkan:",
54 | "instagramAccountStatus": "Aktifkan layer Instagram untuk melihat hasil Anda.",
55 | "twitterAccountStatus": "Aktifkan lapisan Twitter untuk melihat status Anda."
56 | },
57 | "general": {
58 | "map": "Peta",
59 | "mapInfo": "Informasi Peta",
60 | "legend": "Legenda",
61 | "featured": "Lokasi Unggulan",
62 | "layers": "Lapisan",
63 | "share": "Bagikan",
64 | "about": "Tentang",
65 | "find": "Kode Pos, kota, dll.",
66 | "moreInfo": "Informasi selengkapnya",
67 | "dateModified": "Terakhir diubah",
68 | "noSearchResult": "Tidak ada hasil yang ditemukan",
69 | "switchAccount": "Pindah akun",
70 | "signIn": "Masuk",
71 | "settings": "Pengaturan"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/it/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Condividi",
5 | "heading": "Condividi la mappa",
6 | "url": "Collegamento a mappa",
7 | "embed": "Incorpora mappa",
8 | "extent": "Condividi estensione mappa corrente",
9 | "size": "Dimensioni (larghezza/altezza):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/it/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Impossibile creare la mappa",
4 | "views": "viste.",
5 | "licenseError": {
6 | "message": "L’account non dispone della licenza per l’uso di app configurabili non pubbliche. È necessario richiedere all’amministratore dell'organizzazione l’assegnazione di un tipo di utente che includa le app essenziali o una licenza aggiuntiva per le app essenziali.",
7 | "title": "Non Licenziato"
8 | }
9 | },
10 | "report": {
11 | "flag": "Contrassegna come non appropriato",
12 | "error": "Errore",
13 | "success": "Contrassegnato",
14 | "loading": "Caricamento in corso…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descrizione non disponibile",
18 | "bookmarks": "Segnalibri",
19 | "zoomTo": "Applicare lo zoom a questa posizione per visualizzare ulteriori informazioni.",
20 | "untitledNote": "Senza titolo"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Layer social media",
25 | "mediaLayersDescription": "Visualizza i contributi del pubblico inclusi nella mappa.",
26 | "flickrSettings": "Impostazioni Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Impostazioni Twitter",
29 | "twitterUser": "Account Twitter",
30 | "twitterSignIn": "Accedi a Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Impostazioni Instagram",
34 | "instagramUser": "Account Instagram",
35 | "instagramSignIn": "Accedi ad Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Impostazioni YouTube",
38 | "ytSettingsInfo": "Consente di visualizzare video generati dagli utenti, inclusi contenuti professionali e disponibili in rete.",
39 | "ytTime": "Caricamento effettuato entro gli ultimi",
40 | "today": "Giorno",
41 | "this_week": "Settimana",
42 | "this_month": "Mese",
43 | "all_time": "Qualsiasi periodo",
44 | "moreInfo": "Ulteriori informazioni",
45 | "searchTerms": "Termini di ricerca",
46 | "search": "Cerca",
47 | "flSettingsInfo": "Restituisce risultati corrispondenti al titolo, alla descrizione o ai tag di una foto.",
48 | "twSettingsInfo": "Consente di essere informati sugli ultimi avvenimenti.",
49 | "igSettingsInfo": "Instagram è uno strumento, comodo e divertente per condividere i propri scatti con amici e familiari.",
50 | "advancedOperators": "Suggerimento: utilizzare gli operatori per creare ricerche avanzate.",
51 | "tweetsFilteredBy": "tweet filtrati in base a:",
52 | "photosFilteredBy": "foto filtrate in base a:",
53 | "videosFilteredBy": "video filtrati in base a:",
54 | "instagramAccountStatus": "Abilitare il layer Instagram per visualizzare lo stato.",
55 | "twitterAccountStatus": "Abilitare il layer Twitter per visualizzare lo stato."
56 | },
57 | "general": {
58 | "map": "Mappa",
59 | "mapInfo": "Informazioni mappa",
60 | "legend": "Legenda",
61 | "featured": "Posizioni in primo piano",
62 | "layers": "Layer",
63 | "share": "Condividi",
64 | "about": "Informazioni",
65 | "find": "CAP, città e così via",
66 | "moreInfo": "Ulteriori informazioni",
67 | "dateModified": "Data ultima modifica",
68 | "noSearchResult": "Nessun risultato trovato",
69 | "switchAccount": "Cambia account",
70 | "signIn": "Accedi",
71 | "settings": "Impostazioni"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/ja/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "共有",
5 | "heading": "このマップを共有",
6 | "url": "マップ リンク",
7 | "embed": "マップの埋め込み",
8 | "extent": "現在のマップ表示範囲の共有",
9 | "size": "サイズ (幅/高さ):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google+",
13 | "emailTooltip": "電子メール"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ja/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "マップを作成できません",
4 | "views": "ビュー。",
5 | "licenseError": {
6 | "message": "パブリックでないテンプレートを使用するためのライセンスがアカウントに付与されていません。 組織の管理者に Essential Apps またはアドオン Essential Apps ライセンスを含むユーザー タイプを割り当てるよう依頼してください。",
7 | "title": "ライセンスがありません。"
8 | }
9 | },
10 | "report": {
11 | "flag": "不適切を示すフラグ",
12 | "error": "エラー",
13 | "success": "フラグ付き",
14 | "loading": "読み込んでいます..."
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "説明が利用できません",
18 | "bookmarks": "ブックマーク",
19 | "zoomTo": "この場所にズームして、詳細を表示します。",
20 | "untitledNote": "無題"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "メディア レイヤ",
25 | "mediaLayersDescription": "パブリックからの提供アイテムをマップ上に表示します。",
26 | "flickrSettings": "Flickr の設定",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter の設定",
29 | "twitterUser": "Twitter のアカウント",
30 | "twitterSignIn": "Twitter にサイン イン",
31 | "webcams": "観光用 Web カメラ",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram の設定",
34 | "instagramUser": "Instagram アカウント",
35 | "instagramSignIn": "Instagram にサイン イン",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube の設定",
38 | "ytSettingsInfo": "ネットワーク コンテンツおよび商用コンテンツを含む、ユーザによって作成されたビデオを表示します。",
39 | "ytTime": "過去の次の期間以内にアップロードされました",
40 | "today": "日",
41 | "this_week": "週間",
42 | "this_month": "ヶ月",
43 | "all_time": "全時間",
44 | "moreInfo": "詳細情報",
45 | "searchTerms": "検索語句",
46 | "search": "検索",
47 | "flSettingsInfo": "写真のタイトル、説明、またはタグと一致する結果を返します。",
48 | "twSettingsInfo": "いま起きていることを見てみましょう。",
49 | "igSettingsInfo": "Instagram は、生活を友人や家族と共有するための、高速で美しく、楽しい方法です。",
50 | "advancedOperators": "ヒント: 演算子を使って、高度な検索ができます。",
51 | "tweetsFilteredBy": "ツイートのフィルタ:",
52 | "photosFilteredBy": "写真のフィルタ:",
53 | "videosFilteredBy": "ビデオのフィルタ:",
54 | "instagramAccountStatus": "Instagram レイヤーでステータスを表示できるようにします。",
55 | "twitterAccountStatus": "Twitter レイヤでステータスを表示できるようにします。"
56 | },
57 | "general": {
58 | "map": "マップ",
59 | "mapInfo": "マップ情報",
60 | "legend": "凡例",
61 | "featured": "注目の位置",
62 | "layers": "レイヤ",
63 | "share": "共有",
64 | "about": "情報",
65 | "find": "郵便番号、市区町村など。",
66 | "moreInfo": "詳細情報",
67 | "dateModified": "最終更新日",
68 | "noSearchResult": "結果が見つかりません",
69 | "switchAccount": "アカウントの切り替え",
70 | "signIn": "サイン イン",
71 | "settings": "設定"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/ko/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "공유",
5 | "heading": "이 맵 공유",
6 | "url": "맵 링크",
7 | "embed": "맵 포함",
8 | "extent": "현재 맵 범위 공유",
9 | "size": "크기(너비/높이):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "이메일"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ko/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "맵을 생성할 수 없음",
4 | "views": "보기",
5 | "licenseError": {
6 | "message": "귀하의 계정에는 공개 상태가 아닌 구성 설정 앱을 사용할 수 있는 라이선스가 없습니다. 필수 앱 또는 애드온 필수 앱 라이선스가 포함된 사용자 유형을 업무 지시하려면 기관 관리자에게 문의하세요.",
7 | "title": "라이선스가 없음"
8 | }
9 | },
10 | "report": {
11 | "flag": "부적합으로 플래그 지정",
12 | "error": "오류",
13 | "success": "플래그 지정됨",
14 | "loading": "로드 중…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "설명 이용 불가",
18 | "bookmarks": "북마크",
19 | "zoomTo": "이 위치를 확대/축소하고 자세한 정보를 확인합니다.",
20 | "untitledNote": "제목 없음"
21 | },
22 | "social": {
23 | "flickr": "플리커",
24 | "mediaLayers": "미디어 레이어",
25 | "mediaLayersDescription": "맵의 공개 부분에서 기여를 표시합니다.",
26 | "flickrSettings": "Flickr 설정",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter 설정",
29 | "twitterUser": "Twitter 계정",
30 | "twitterSignIn": "Twitter에 로그인",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram 설정",
34 | "instagramUser": "Instagram 계정",
35 | "instagramSignIn": "Instagram에 로그인",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube 설정",
38 | "ytSettingsInfo": "네트워크 및 전문 콘텐츠를 비롯한 사용자 생성 동영상을 봅니다.",
39 | "ytTime": "과거 기간에 업로드됨",
40 | "today": "일",
41 | "this_week": "주",
42 | "this_month": "월",
43 | "all_time": "모든 시간",
44 | "moreInfo": "자세한 정보",
45 | "searchTerms": "검색어",
46 | "search": "검색",
47 | "flSettingsInfo": "사진 제목, 설명 또는 태그와 일치하는 결과를 반환합니다.",
48 | "twSettingsInfo": "지금 일어나는 상황을 살펴보세요.",
49 | "igSettingsInfo": "Instagram은 자신의 삶을 친구나 가족과 공유할 수 있는 빠르고 재미있는 서비스입니다.",
50 | "advancedOperators": "팁: 고급 검색을 하려면 연산자를 사용하세요.",
51 | "tweetsFilteredBy": "트윗 필터링 기준:",
52 | "photosFilteredBy": "사진 필터링 기준:",
53 | "videosFilteredBy": "동영상 필터링 기준:",
54 | "instagramAccountStatus": "상태를 보려면 Instagram 레이어를 활성화하세요.",
55 | "twitterAccountStatus": "상태를 보려면 Twitter 레이어를 활성화하세요."
56 | },
57 | "general": {
58 | "map": "맵",
59 | "mapInfo": "맵 정보",
60 | "legend": "범례",
61 | "featured": "주요 위치",
62 | "layers": "레이어",
63 | "share": "공유",
64 | "about": "정보",
65 | "find": "우편 번호, 도시 등",
66 | "moreInfo": "자세한 정보",
67 | "dateModified": "마지막으로 수정한 날짜",
68 | "noSearchResult": "결과가 없음",
69 | "switchAccount": "계정 전환",
70 | "signIn": "로그인",
71 | "settings": "설정"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/lt/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Bendrinti",
5 | "heading": "Bendrinti šį žemėlapį",
6 | "url": "Žemėlapio nuoroda",
7 | "embed": "Įterpti žemėlapį",
8 | "extent": "Bendrinti esamo žemėlapio aprėptį",
9 | "size": "Dydis (plotis / aukštis):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "El. paštas"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/lt/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Žemėlapio sukurti nepavyko",
4 | "views": "peržiūros.",
5 | "licenseError": {
6 | "message": "Jūsų paskyra nelicencijuota naudoti ne viešas konfigūruojamas aplikacijas. Kreipkitės į organizacijos administratorių, kad paskirtų jums naudotojo tipą, kuris turi svarbiausias aplikacijas, arba suteiktų jums papildomą svarbiausių aplikacijų licenciją.",
7 | "title": "Nelicencijuota"
8 | }
9 | },
10 | "report": {
11 | "flag": "Pažymėkite kaip netinkamą",
12 | "error": "Klaida",
13 | "success": "Pažymėta",
14 | "loading": "Įkeliama…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Aprašo nėra",
18 | "bookmarks": "Žymos",
19 | "zoomTo": "Padidinkite šią vietą ir sužinokite daugiau.",
20 | "untitledNote": "Bevardis"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Įvairialypės informacijos sluoksniai",
25 | "mediaLayersDescription": "Žemėlapyje rodyti visuomenės įvestus duomenis.",
26 | "flickrSettings": "Flickr nustatymai",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter nustatymai",
29 | "twitterUser": "Twitter paskyra",
30 | "twitterSignIn": "Prisijungti Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram nustatymai",
34 | "instagramUser": "Instagram paskyra",
35 | "instagramSignIn": "Prisijungti prie Twitter",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube nustatymai",
38 | "ytSettingsInfo": "Peržiūrėkite naudotojų sukurtus vaizdo įrašus, įskaitant tinklo ir profesionalų turinį.",
39 | "ytTime": "Nusiųsta per paskutinį laikotarpį",
40 | "today": "Diena",
41 | "this_week": "Savaitė",
42 | "this_month": "Mėnuo",
43 | "all_time": "Visas laikas",
44 | "moreInfo": "Daugiau informacijos",
45 | "searchTerms": "Paieškos terminai",
46 | "search": "Ieškoti",
47 | "flSettingsInfo": "Pateikia rezultatus, atitinkančius nuotraukos pavadinimą, aprašą arba raktažodžius.",
48 | "twSettingsInfo": "Matykite, kas vyksta šiuo metu.",
49 | "igSettingsInfo": "Instagram – tai spartus, gražus ir smagus būdas informacijai bendrinti su draugais ir šeimos nariais.",
50 | "advancedOperators": "Patarimas: išplėstines ieškas kurkite naudodami operatorius",
51 | "tweetsFilteredBy": "tweet žinutės filtruojamos pagal:",
52 | "photosFilteredBy": "fotografijos filtruojamos pagal:",
53 | "videosFilteredBy": "vaizdo įrašai, filtruoti pagal:",
54 | "instagramAccountStatus": "Įjunkite Instagram sluoksnį, kad matytumėte savo būseną.",
55 | "twitterAccountStatus": "Įjunkite Twitter sluoksnį savo būsenos matymui."
56 | },
57 | "general": {
58 | "map": "Žemėlapis",
59 | "mapInfo": "Žemėlapio informacija",
60 | "legend": "Legenda",
61 | "featured": "Rastos vietos",
62 | "layers": "Sluoksniai",
63 | "share": "Bendrinti",
64 | "about": "Apie",
65 | "find": "Pašto kodas, miestas, kt.",
66 | "moreInfo": "Daugiau informacijos",
67 | "dateModified": "Pakeitimo data",
68 | "noSearchResult": "Rezultatų nerasta",
69 | "switchAccount": "Perjungti paskyrą",
70 | "signIn": "Prisijunkite",
71 | "settings": "Nuostatos"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/lv/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Koplietošana",
5 | "heading": "Koplietot šo karti",
6 | "url": "Kartes saite",
7 | "embed": "Iedarināt karti",
8 | "extent": "Koplietot pašreizējo kartes pārklājumu",
9 | "size": "Izmēri (platums/augstums):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pasts"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/lv/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nevar izveidot kartes",
4 | "views": "skati.",
5 | "licenseError": {
6 | "message": "Jūsu kontam nav licences, lai izmantotu konfigurējamās lietotnes, kas nav publiskas. Pieprasiet savas organizācijas administratoram piešķirt jums lietotāja veidu, kurā iekļauts lietotņu komplekts Essential Apps vai papildinājumlietotņu Essential Apps licence.",
7 | "title": "Nav licences"
8 | }
9 | },
10 | "report": {
11 | "flag": "Atzīmēt kā nepiemērotu",
12 | "error": "Kļūda",
13 | "success": "Atzīmēts",
14 | "loading": "Notiek ielāde…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Apraksts nav pieejams",
18 | "bookmarks": "Grāmatzīmes",
19 | "zoomTo": "Veiciet mērogmaiņu līdz šai atrašanās vietai un saņemiet vairāk informācijas.",
20 | "untitledNote": "Bez virsraksta"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Multivides slāņi",
25 | "mediaLayersDescription": "Rādīt sabiedrības ieguldījumu kartes veidošanā.",
26 | "flickrSettings": "Flickr iestatījumi",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter iestatījumi",
29 | "twitterUser": "Twitter konts",
30 | "twitterSignIn": "Pierakstīties Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram iestatījumi",
34 | "instagramUser": "Instagram konts",
35 | "instagramSignIn": "Pierakstīties Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube iestatījumi",
38 | "ytSettingsInfo": "Skatieties lietotāja izveidotus video, tostarp tīkla un profesionāla līmeņa saturu.",
39 | "ytTime": "Augšupielādēts pēdējo",
40 | "today": "Diena",
41 | "this_week": "Nedēļa",
42 | "this_month": "Mēnesis",
43 | "all_time": "Visu laiku",
44 | "moreInfo": "Vairāk informācijas",
45 | "searchTerms": "Meklējamie vārdi",
46 | "search": "Meklēt",
47 | "flSettingsInfo": "Atgriezt rezultātus, kas atbilst fotoattēla nosaukumam, aprakstam vai atzīmēm.",
48 | "twSettingsInfo": "Aplūkojiet, kas šobrīd notiek.",
49 | "igSettingsInfo": "Instagram ir ātrs, pievilcīgs un jautrs veids, kā dalīties savas dzīves notikumos ar draugiem un ģimeni.",
50 | "advancedOperators": "Padoms: izmantojiet operatorus, lai izveidotu detalizētu meklēšanu.",
51 | "tweetsFilteredBy": "īsziņas filtrētas pēc:",
52 | "photosFilteredBy": "fotogrāfijas filtrētas pēc:",
53 | "videosFilteredBy": "video filtrēti pēc:",
54 | "instagramAccountStatus": "Iespējot Instagram slāni, lai redzētu jūsu statusu.",
55 | "twitterAccountStatus": "Iespējot Twitter slāni redzēt jūsu statusu."
56 | },
57 | "general": {
58 | "map": "Karte",
59 | "mapInfo": "Kartes informācija",
60 | "legend": "Apzīmējumi",
61 | "featured": "Saistītie novietojumi",
62 | "layers": "Slāņi",
63 | "share": "Koplietot",
64 | "about": "Par",
65 | "find": "Pasta indekss, pilsēta utt.",
66 | "moreInfo": "Vairāk informācijas",
67 | "dateModified": "Pēdējo reizi modificēts",
68 | "noSearchResult": "Nav atrasts neviens rezultāts",
69 | "switchAccount": "Pārslēgt kontu",
70 | "signIn": "Pierakstīties",
71 | "settings": "Iestatījumi"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/nb/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Del",
5 | "heading": "Del dette kartet",
6 | "url": "Kartkobling",
7 | "embed": "Bygg inn kart",
8 | "extent": "Del gjeldende kartutstrekning",
9 | "size": "Størrelse (bredde/høyde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/nb/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Kan ikke opprette kart",
4 | "views": "visninger.",
5 | "licenseError": {
6 | "message": "Kontoen din er ikke lisensiert til å bruke konfigurerbare apper som ikke er offentlige. Be administratoren for organisasjonen om å tilordne deg en brukertype som omfatter Essential Apps eller en tilleggslisens for Essential Apps.",
7 | "title": "Ikke lisensiert"
8 | }
9 | },
10 | "report": {
11 | "flag": "Flagg som upassende",
12 | "error": "Feil",
13 | "success": "Flagget",
14 | "loading": "Laster inn…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Beskrivelse ikke tilgjengelig",
18 | "bookmarks": "Bokmerker",
19 | "zoomTo": "Zoom til denne lokasjonen, og finn mer informasjon.",
20 | "untitledNote": "Uten navn"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medielag",
25 | "mediaLayersDescription": "Vis bidrag fra publikum på kartet.",
26 | "flickrSettings": "Flickr-innstillinger",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-innstillinger",
29 | "twitterUser": "Twitter-konto",
30 | "twitterSignIn": "Logg på Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-innstillinger",
34 | "instagramUser": "Instagram-konto",
35 | "instagramSignIn": "Logg på Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-innstillinger",
38 | "ytSettingsInfo": "Se på brukergenererte videoer, inkludert nettverksinnhold og profesjonelt innhold.",
39 | "ytTime": "Lastet opp innen de siste",
40 | "today": "Dag",
41 | "this_week": "Uke",
42 | "this_month": "Måned",
43 | "all_time": "Hele tidslinjen",
44 | "moreInfo": "Mer informasjon",
45 | "searchTerms": "Søkeord",
46 | "search": "Søk",
47 | "flSettingsInfo": "Returner resultater som samsvarer med et bildes tittel, beskrivelse eller merker.",
48 | "twSettingsInfo": "Se hva som skjer akkurat nå.",
49 | "igSettingsInfo": "Instagram er en rask, pen og morsom måte å dele livet ditt med venner og familie med.",
50 | "advancedOperators": "Tips: Bruk operatorer til å opprette avanserte søk.",
51 | "tweetsFilteredBy": "tweets filtrert etter::",
52 | "photosFilteredBy": "bilder filtrert etter:",
53 | "videosFilteredBy": "videoer filtrert etter:",
54 | "instagramAccountStatus": "Aktiver Instagram-laget for å vise statusen.",
55 | "twitterAccountStatus": "La Twitter-laget få se statusen din."
56 | },
57 | "general": {
58 | "map": "Kart",
59 | "mapInfo": "Kartinformasjon",
60 | "legend": "Tegnforklaring",
61 | "featured": "Uthevede lokasjoner",
62 | "layers": "Lag",
63 | "share": "Del",
64 | "about": "Om",
65 | "find": "Postnummer, by, osv.",
66 | "moreInfo": "Mer informasjon",
67 | "dateModified": "Sist endret",
68 | "noSearchResult": "Fant ingen resultater",
69 | "switchAccount": "Bytt konto",
70 | "signIn": "Logg på",
71 | "settings": "Innstillinger"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/nl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Delen",
5 | "heading": "Deze kaart delen",
6 | "url": "Kaartkoppeling",
7 | "embed": "Kaart inbedden",
8 | "extent": "Huidige kaartextent delen",
9 | "size": "Grootte (breedte/hoogte):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/nl/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Kan kaart niet maken",
4 | "views": "weergaven.",
5 | "licenseError": {
6 | "message": "Uw account heeft geen licentie om configureerbare apps te gebruiken die niet openbaar zijn. Vraag uw organisatiebeheerder om u een gebruikerstype toe te wijzen dat Essential Apps of een add-on Essential Apps-licentie bevat.",
7 | "title": "Geen licentie"
8 | }
9 | },
10 | "report": {
11 | "flag": "Markeren als ongeschikt",
12 | "error": "Fout",
13 | "success": "Gemarkeerd",
14 | "loading": "Laden…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Beschrijving niet beschikbaar",
18 | "bookmarks": "Bladwijzers",
19 | "zoomTo": "Zoom naar deze locatie en krijg meer informatie.",
20 | "untitledNote": "Naamloos"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medialagen",
25 | "mediaLayersDescription": "Geef bijdragen van het algemene publiek weer op de kaart.",
26 | "flickrSettings": "Flickr-instellingen",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-instellingen",
29 | "twitterUser": "Twitter-account",
30 | "twitterSignIn": "Aanmelden bij Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-instellingen",
34 | "instagramUser": "Instagram-account",
35 | "instagramSignIn": "Aanmelden bij Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-instellingen",
38 | "ytSettingsInfo": "Bekijk door gebruikers gegenereerde video's inclusief netwerk- en professionele content.",
39 | "ytTime": "Geüpload binnen de afgelopen",
40 | "today": "Dag",
41 | "this_week": "Week",
42 | "this_month": "Maand",
43 | "all_time": "Alle tijden",
44 | "moreInfo": "Meer informatie",
45 | "searchTerms": "Zoektermen",
46 | "search": "Zoeken",
47 | "flSettingsInfo": "Retourneer resultaten die overeenkomen met de titel, beschrijving of labels van een foto.",
48 | "twSettingsInfo": "Ontdek wat er momenteel gebeurt.",
49 | "igSettingsInfo": "Instagram is een snelle, mooie en leuke manier om uw leven met uw vrienden en familie te delen.",
50 | "advancedOperators": "Tip: gebruik operators om geavanceerde zoekopdrachten te maken.",
51 | "tweetsFilteredBy": "tweets gefilterd op:",
52 | "photosFilteredBy": "foto's gefilterd op:",
53 | "videosFilteredBy": "video's gefilterd op:",
54 | "instagramAccountStatus": "Schakel de Instagram-kaartlaag in om uw status te zien.",
55 | "twitterAccountStatus": "Schakel de Twitter-kaartlaag in om uw status te zien."
56 | },
57 | "general": {
58 | "map": "Kaart",
59 | "mapInfo": "Kaartinformatie",
60 | "legend": "Legenda",
61 | "featured": "Aanbevolen locaties",
62 | "layers": "Kaartlagen",
63 | "share": "Delen",
64 | "about": "Over",
65 | "find": "Postcode, plaats enzovoort",
66 | "moreInfo": "Meer informatie",
67 | "dateModified": "Laatst gewijzigd",
68 | "noSearchResult": "Geen resultaat gevonden",
69 | "switchAccount": "Account wijzigen",
70 | "signIn": "Aanmelden",
71 | "settings": "Instellingen"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/pl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Udostępnij",
5 | "heading": "Udostępnij tę mapę",
6 | "url": "Łącze do mapy",
7 | "embed": "Osadź mapę",
8 | "extent": "Udostępnij zasięg bieżącej mapy",
9 | "size": "Rozmiar (szerokość/wysokość):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/pl/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nie można utworzyć mapy",
4 | "views": "widoków mapy.",
5 | "licenseError": {
6 | "message": "Twoje konto nie jest licencjonowane do korzystania z aplikacji konfigurowalnych, które nie są publiczne. Poproś administratora instytucji o przypisanie typu użytkownika, który obejmuje licencję na kluczowe aplikacje lub licencję na kluczowe aplikacje dodatkowe.",
7 | "title": "Nie licencjonowano"
8 | }
9 | },
10 | "report": {
11 | "flag": "Oflaguj jako niewłaściwe",
12 | "error": "Błąd",
13 | "success": "Oflagowano",
14 | "loading": "Loading…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Opis niedostępny",
18 | "bookmarks": "Zakładki",
19 | "zoomTo": "Powiększ do tej lokalizacji, aby uzyskać więcej informacji.",
20 | "untitledNote": "Bez tytułu"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Warstwy multimediów",
25 | "mediaLayersDescription": "Pokaż na mapie zasoby udostępnione przez ogół użytkowników.",
26 | "flickrSettings": "Ustawienia dla serwisu Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Ustawienia dla serwisu Twitter",
29 | "twitterUser": "Konto w serwisie Twitter",
30 | "twitterSignIn": "Zaloguj się do serwisu Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Ustawienia serwisu Instagram",
34 | "instagramUser": "Konto w serwisie Instagram",
35 | "instagramSignIn": "Zaloguj się do serwisu Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Ustawienia serwisu YouTube",
38 | "ytSettingsInfo": "Zapoznaj się z materiałami wideo utworzonymi przez użytkowników, które zawierają zasoby sieciowe oraz profesjonalne.",
39 | "ytTime": "Przesłane w ciągu ostatnich",
40 | "today": "Dzień",
41 | "this_week": "Tydzień",
42 | "this_month": "Miesiąc",
43 | "all_time": "Wszystkie okresy",
44 | "moreInfo": "Więcej informacji",
45 | "searchTerms": "Słowa kluczowe",
46 | "search": "Wyszukaj",
47 | "flSettingsInfo": "Zwrócone wyniki, które pasują do tytułu, opisu lub znaczników zdjęcia.",
48 | "twSettingsInfo": "Zobacz, co się teraz dzieje",
49 | "igSettingsInfo": "Instagram to szybki, estetyczny i ciekawy sposób na dzielenie się nowymi wydarzeniami z życia z przyjaciółmi i rodziną.",
50 | "advancedOperators": "Wskazówka: w celu stworzenia procesów wyszukiwania zaawansowanego, skorzystaj z operatorów.",
51 | "tweetsFilteredBy": "Filtrowanie wpisów w serwisie Twitter według:",
52 | "photosFilteredBy": "Filtrowanie zdjęć według:",
53 | "videosFilteredBy": "Filtrowanie filmów wideo:",
54 | "instagramAccountStatus": "Zezwól na wyświetlanie Twojego statusu w warstwie Instagram.",
55 | "twitterAccountStatus": "Zezwól na wyświetlanie Twojego statusu w warstwie Twitter."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informacje o mapie",
60 | "legend": "Legenda",
61 | "featured": "Polecane lokalizacje",
62 | "layers": "Warstwy",
63 | "share": "Udostępnij",
64 | "about": "Informacje o",
65 | "find": "Kod pocztowy, miasto itd.",
66 | "moreInfo": "Więcej informacji",
67 | "dateModified": "Ostatnia modyfikacja",
68 | "noSearchResult": "Nie znaleziono wyników",
69 | "switchAccount": "Przełącz konto",
70 | "signIn": "Zaloguj się",
71 | "settings": "Ustawienia"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/pt-br/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Compartilhar",
5 | "heading": "Compartilhar este mapa",
6 | "url": "Link do Mapa",
7 | "embed": "Mapa Embutido",
8 | "extent": "Compartilhar extensão do mapa atual",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/pt-br/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Não foi possível criar o mapa",
4 | "views": "visualização.",
5 | "licenseError": {
6 | "message": "Sua conta não está licenciada para utilizar Aplicativos Configuráveis que não sejam públicos. Solicite ao administrador da sua organização que lhe atribua um tipo de usuário que inclua os Aplicativos Fundamentais ou uma licença complementar dos Aplicativos Fundamentais.",
7 | "title": "Não Licenciado"
8 | }
9 | },
10 | "report": {
11 | "flag": "Sinalizar como inapropriado",
12 | "error": "Erro",
13 | "success": "Sinalizado",
14 | "loading": "Carregando…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descrição não disponível",
18 | "bookmarks": "Marcadores",
19 | "zoomTo": "Amplie neste local e encontre mais informações.",
20 | "untitledNote": "Sem título"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Camadas de Mídia",
25 | "mediaLayersDescription": "Mostra contribuições do público no mapa.",
26 | "flickrSettings": "Configurações do Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Configurações do Twitter",
29 | "twitterUser": "Conta do Twitter",
30 | "twitterSignIn": "Entrar no Twitter",
31 | "webcams": "Webcams",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Configurações do Instagram",
34 | "instagramUser": "Conta do Instagram",
35 | "instagramSignIn": "Entrar no Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Configurações do YouTube",
38 | "ytSettingsInfo": "Veja os vídeos gerados por usuários, incluindo conteúdo da rede e profissional.",
39 | "ytTime": "Carregado dentro do passado",
40 | "today": "Dia",
41 | "this_week": "Semana",
42 | "this_month": "Mês",
43 | "all_time": "Todos os Tempos",
44 | "moreInfo": "Mais informações",
45 | "searchTerms": "Termos de Pesquisa",
46 | "search": "Pesquisar",
47 | "flSettingsInfo": "Retorna resultados correspondentes ao título da foto, descrição ou tags.",
48 | "twSettingsInfo": "Veja o que está acontecendo neste momento.",
49 | "igSettingsInfo": "O Instagram é uma maneira rápida, bonita e divertida de compartilhar sua vida com amigos e familiares.",
50 | "advancedOperators": "Dica: utilize operadores para criar pesquisas avançadas.",
51 | "tweetsFilteredBy": "tweets filtrados por:",
52 | "photosFilteredBy": "fotos filtradas por:",
53 | "videosFilteredBy": "vídeos filtrados por:",
54 | "instagramAccountStatus": "Não foi possível a camada do Instagram visualizar seu status.",
55 | "twitterAccountStatus": "Habilite a camada do Twitter para visualizar seu status."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informações do Mapa",
60 | "legend": "Legenda",
61 | "featured": "Locais Apresentados",
62 | "layers": "Camadas",
63 | "share": "Compartilhar",
64 | "about": "Sobre",
65 | "find": "Código Postal, cidade, etc.",
66 | "moreInfo": "Mais informações",
67 | "dateModified": "Última modificação",
68 | "noSearchResult": "Nenhum resultado encontrado",
69 | "switchAccount": "Trocar conta",
70 | "signIn": "Registrar",
71 | "settings": "Configurações"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/pt-pt/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partilhar",
5 | "heading": "Partilhar este mapa",
6 | "url": "Ligação de Mapa",
7 | "embed": "Integrar Mapa",
8 | "extent": "Partilhar a atual extensão do mapa",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correio Eletrónico"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/pt-pt/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Não foi possível criar o mapa",
4 | "views": "visualizações.",
5 | "licenseError": {
6 | "message": "A sua conta não está licenciada para usar aplicações configuráveis não públicas. Peça ao administrador da sua organização para lhe atribuir um tipo de utilizador que inclua a licença para aplicações essenciais ou aplicações essenciais complementares.",
7 | "title": "Não licenciado"
8 | }
9 | },
10 | "report": {
11 | "flag": "Marcar como inapropriado",
12 | "error": "Erro",
13 | "success": "Marcado",
14 | "loading": "Loading…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descrição indisponível",
18 | "bookmarks": "Marcadores",
19 | "zoomTo": "Efetuar zoom para esta localização e obter mais informações.",
20 | "untitledNote": "Sem título"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Camadas de Media",
25 | "mediaLayersDescription": "Exibir as contribuições do público no mapa.",
26 | "flickrSettings": "Configurações do Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Configurações do Twitter",
29 | "twitterUser": "Conta do Twitter",
30 | "twitterSignIn": "Iniciar sessão no Twitter",
31 | "webcams": "Câmaras web",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Definições do Instagram",
34 | "instagramUser": "Conta de Instagram",
35 | "instagramSignIn": "Iniciar sessão no Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Configurações do YouTube",
38 | "ytSettingsInfo": "Visualizar vídeos gerados pelos utilizadores, incluindo conteúdo de rede e profissional.",
39 | "ytTime": "Carregado no passado",
40 | "today": "Dia",
41 | "this_week": "Semana",
42 | "this_month": "Mês",
43 | "all_time": "Sempre",
44 | "moreInfo": "Mais informações",
45 | "searchTerms": "Termos de Pesquisa",
46 | "search": "Pesquisar",
47 | "flSettingsInfo": "Devolve resultados que correspondem ao título, descrição ou palavras-chave de uma fotografia. .",
48 | "twSettingsInfo": "Veja o que está a acontecer agora mesmo.",
49 | "igSettingsInfo": "O Instagram é uma forma fácil, atrativa e divertida de partilhar a sua vida com amigos e família.",
50 | "advancedOperators": "Sugestão: utilize um operators para criar pesquisas avançadas.",
51 | "tweetsFilteredBy": "tweets filtrados por:",
52 | "photosFilteredBy": "fotos filtradas por:",
53 | "videosFilteredBy": "vídeos filtrados por:",
54 | "instagramAccountStatus": "Ative a camada Instagram para visualizar o seu estado.",
55 | "twitterAccountStatus": "Ative a camada do Twitter para visualizar o seu estado."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informação do Mapa",
60 | "legend": "Legenda",
61 | "featured": "Locais em Destaque",
62 | "layers": "Camadas",
63 | "share": "Partilhar",
64 | "about": "Sobre",
65 | "find": "Código postal, cidade, etc.",
66 | "moreInfo": "Mais informações",
67 | "dateModified": "Última atualização",
68 | "noSearchResult": "Não foram encontrados resultados",
69 | "switchAccount": "Mudar de conta",
70 | "signIn": "Iniciar Sessão",
71 | "settings": "Configurações"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | root: ({
3 | map: {
4 | error: "Unable to create map",
5 | views: "views.",
6 | licenseError: {
7 | message: "Your account is not licensed to use Configurable Apps that are not public. Please ask your organization administrator to assign you a user type that includes Essential Apps or an add-on Essential Apps license.",
8 | title: "Not Licensed"
9 | }
10 | },
11 | report: {
12 | flag: "Flag as innapropriate",
13 | error: "Error",
14 | success: "Flagged",
15 | loading: "Loading…"
16 | },
17 | mapNotes: {
18 | notesUnavailable: "Description unavailable",
19 | bookmarks: "Bookmarks",
20 | zoomTo: "Zoom to this location and find out more information.",
21 | untitledNote: "Untitled"
22 | },
23 | social: {
24 | flickr: "Flickr",
25 | mediaLayers: "Media Layers",
26 | mediaLayersDescription: "Show contributions from the public on the map.",
27 | flickrSettings: "Flickr Settings",
28 | twitter: "Twitter",
29 | twitterSettings: "Twitter Settings",
30 | twitterUser: "Twitter Account",
31 | twitterSignIn: "Sign in to Twitter",
32 | webcams: "Webcams.travel",
33 | instagram: "Instagram",
34 | instagramSettings: "Instagram Settings",
35 | instagramUser: "Instagram Account",
36 | instagramSignIn: "Sign in to Instagram",
37 | youtube: "YouTube",
38 | youtubeSettings: "YouTube Settings",
39 | ytSettingsInfo: "View user-generated videos including network and professional content.",
40 | ytTime: "Uploaded within the past",
41 | today: "Day",
42 | this_week: "Week",
43 | this_month: "Month",
44 | all_time: "All Time",
45 | moreInfo: "More information",
46 | searchTerms: "Search Terms",
47 | search: "Search",
48 | flSettingsInfo: "Return results matching a photo's title, description or tags.",
49 | twSettingsInfo: "See what’s happening right now.",
50 | igSettingsInfo: "Instagram is a fast, beautiful and fun way to share your life with friends and family.",
51 | advancedOperators: "Tip: use operators for creating advanced searches.",
52 | tweetsFilteredBy: "tweets filtered by:",
53 | photosFilteredBy: "photos filtered by:",
54 | videosFilteredBy: "videos filtered by:",
55 | instagramAccountStatus: "Enable the Instagram layer to see your status.",
56 | twitterAccountStatus: "Enable the Twitter layer to see your status."
57 | },
58 | general: {
59 | map: "Map",
60 | mapInfo: "Map Information",
61 | legend: "Legend",
62 | featured: "Featured Locations",
63 | layers: "Layers",
64 | share: "Share",
65 | about: "About",
66 | find: "Zip Code, city, etc.",
67 | moreInfo: "More information",
68 | dateModified: "Last modified",
69 | noSearchResult: "No result found",
70 | switchAccount: "Switch account",
71 | signIn: "Sign in",
72 | settings: "Settings"
73 | }
74 | }),
75 | "ar": 1,
76 | "bs": 1,
77 | "ca": 1,
78 | "cs": 1,
79 | "da": 1,
80 | "de": 1,
81 | "el": 1,
82 | "es": 1,
83 | "et": 1,
84 | "fi": 1,
85 | "fr": 1,
86 | "he": 1,
87 | "hr": 1,
88 | "hu": 1,
89 | "id": 1,
90 | "it": 1,
91 | "ja": 1,
92 | "ko": 1,
93 | "lt": 1,
94 | "lv": 1,
95 | "nb": 1,
96 | "nl": 1,
97 | "pl": 1,
98 | "pt-br": 1,
99 | "pt-pt": 1,
100 | "ro": 1,
101 | "ru": 1,
102 | "sl": 1,
103 | "sr": 1,
104 | "sv": 1,
105 | "th": 1,
106 | "tr": 1,
107 | "uk": 1,
108 | "vi": 1,
109 | "zh-cn": 1,
110 | "zh-hk": 1,
111 | "zh-tw": 1
112 | });
113 |
--------------------------------------------------------------------------------
/js/nls/ro/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partajare",
5 | "heading": "Se partajează această hartă",
6 | "url": "Link către hartă",
7 | "embed": "Încorporare hartă",
8 | "extent": "Partajare extindere curentă a hărţii",
9 | "size": "Dimensiune (lăţime/înălţime):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ro/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Nu se poate crea harta",
4 | "views": "vizualizări.",
5 | "licenseError": {
6 | "message": "Contul dvs. nu este licențiat să utilizeze aplicații configurabile care nu sunt publice. Solicitați-i administratorului organizației să vă aloce un tip de utilizator care include aplicații esențiale sau o licență pentru aplicații esențiale de completare.",
7 | "title": "Nelicențiat"
8 | }
9 | },
10 | "report": {
11 | "flag": "Marcare drept inadecvat",
12 | "error": "Eroare",
13 | "success": "Marcat",
14 | "loading": "Se încarcă…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Descriere indisponibilă",
18 | "bookmarks": "Semne de carte",
19 | "zoomTo": "Transfocaţi la această locaţie şi obţineţi mai multe informaţii.",
20 | "untitledNote": "Fără titlu"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Straturi tematice media",
25 | "mediaLayersDescription": "Afişare contribuţii de la public pe hartă.",
26 | "flickrSettings": "Setări Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Setări Twitter",
29 | "twitterUser": "Cont Twitter",
30 | "twitterSignIn": "Autentificare la Twitter",
31 | "webcams": "Camere web. Călătorii",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Setări Instagram",
34 | "instagramUser": "Cont de Instagram",
35 | "instagramSignIn": "Autentificare la Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Setări YouTube",
38 | "ytSettingsInfo": "Vizualizaţi clipuri video generate de utilizatori, inclusiv conţinut din reţea şi profesional.",
39 | "ytTime": "Încărcate în ultima",
40 | "today": "Zi",
41 | "this_week": "Săptămână",
42 | "this_month": "Lună",
43 | "all_time": "Tot timpul",
44 | "moreInfo": "Informaţii suplimentare",
45 | "searchTerms": "Căutare termeni",
46 | "search": "Căutare",
47 | "flSettingsInfo": "Returnaţi rezultate care să corespundă titlului, descrierii sau etichetelor unei fotografii.",
48 | "twSettingsInfo": "Vedeţi ce se întâmplă în acest moment.",
49 | "igSettingsInfo": "Instagram reprezintă o modalitate rapidă, frumoasă şi distractivă de a vă partaja evenimentele din viaţă cu prietenii şi familia.",
50 | "advancedOperators": "Sfat: utilizaţi operatori pentru a crea căutări avansate.",
51 | "tweetsFilteredBy": "tweeturi filtrate după:",
52 | "photosFilteredBy": "Fotografii filtrate după:",
53 | "videosFilteredBy": "clipuri video filtrate după:",
54 | "instagramAccountStatus": "Activaţi stratul tematic Instagram pentru a vă vedea starea.",
55 | "twitterAccountStatus": "Activaţi stratul tematic Twitter pentru a vă vedea starea."
56 | },
57 | "general": {
58 | "map": "Hartă",
59 | "mapInfo": "Informaţii hartă",
60 | "legend": "Legendă",
61 | "featured": "Locaţii promovate",
62 | "layers": "Straturi tematice",
63 | "share": "Partajare",
64 | "about": "Despre",
65 | "find": "Cod zip, oraş etc.",
66 | "moreInfo": "Mai multe informaţii",
67 | "dateModified": "Data ultimei modificări",
68 | "noSearchResult": "Niciun rezultat găsit",
69 | "switchAccount": "Comutare cont",
70 | "signIn": "Autentificaţi-vă",
71 | "settings": "Setări"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/ru/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Общий доступ",
5 | "heading": "Общий доступ к карте",
6 | "url": "Ссылка на карту",
7 | "embed": "Внедрить карту",
8 | "extent": "Опубликовать текущий экстент карты",
9 | "size": "Размер (ширина/высота):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/ru/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Не удалось создать карту",
4 | "views": "просмотров.",
5 | "licenseError": {
6 | "message": "Ваша учетная запись не лицензирована на использование не публичных Настраиваемых приложений. Обратитесь к администратору организации, чтобы получить тип пользователя, в который входит Essential Apps или лицензия дополнительного модуля Essential Apps.",
7 | "title": "Не лицензировано"
8 | }
9 | },
10 | "report": {
11 | "flag": "Пометить как несоответствующий",
12 | "error": "Ошибка",
13 | "success": "Отмеченный",
14 | "loading": "Загрузка&hellip (Loading&hellip);"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Описание недоступно",
18 | "bookmarks": "Закладки",
19 | "zoomTo": "Приблизиться к этому местоположению и найти дополнительные сведения.",
20 | "untitledNote": "Без заголовка"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Медиа-слои",
25 | "mediaLayersDescription": "Показать на карте данные публичных пользователей.",
26 | "flickrSettings": "Настройки Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Настройки Twitter",
29 | "twitterUser": "Учётная запись Twitter",
30 | "twitterSignIn": "Вход в Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Настройки Instagram",
34 | "instagramUser": "Учетная запись Instagram",
35 | "instagramSignIn": "Войти в Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Настройки YouTube",
38 | "ytSettingsInfo": "Просмотр созданных пользователем видео, включая сетевые и профессиональные ресурсы.",
39 | "ytTime": "Загружены в течение последних",
40 | "today": "День",
41 | "this_week": "Неделя",
42 | "this_month": "Месяц",
43 | "all_time": "Все время",
44 | "moreInfo": "Больше информации",
45 | "searchTerms": "Поиск терминов",
46 | "search": "Поиск",
47 | "flSettingsInfo": "Возвращает результаты соответствующие заголовку фотографий, описанию и тегам.",
48 | "twSettingsInfo": "Посмотрите, что происходит прямо сейчас.",
49 | "igSettingsInfo": "Instagram - это веселый, быстрый, прекрасный способ поделиться событиями своей жизни с друзьями и семьей.",
50 | "advancedOperators": "Подсказка: используйте operators для создания усовершенствованных поисковых запросов.",
51 | "tweetsFilteredBy": "твиты отфильтрованы по:",
52 | "photosFilteredBy": "фотографии отфильтрованы по",
53 | "videosFilteredBy": "видео отобраны по:",
54 | "instagramAccountStatus": "Включить слой Instagram для просмотра статусов.",
55 | "twitterAccountStatus": "Включить слой Twitter для просмотра статусов."
56 | },
57 | "general": {
58 | "map": "Карта",
59 | "mapInfo": "Информация карты",
60 | "legend": "Легенда",
61 | "featured": "Популярные местоположения",
62 | "layers": "Слои",
63 | "share": "Предоставить доступ",
64 | "about": "О",
65 | "find": "Индекс, город и т.д.",
66 | "moreInfo": "Более подробно",
67 | "dateModified": "Последние изменения",
68 | "noSearchResult": "Результатов не найдено",
69 | "switchAccount": "Переключить учетную запись",
70 | "signIn": "Войти",
71 | "settings": "Настройки"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/sl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Deli",
5 | "heading": "Deli to karto",
6 | "url": "Povezava karte",
7 | "embed": "Vdelana karta",
8 | "extent": "Deli trenutni obseg karte",
9 | "size": "Velikost (širina/višina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google+",
13 | "emailTooltip": "E-pošta"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/sl/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Karte ni mogoče ustvariti",
4 | "views": "ogledov.",
5 | "licenseError": {
6 | "message": "Vaš račun ni licenciran za uporabo konfigurabilnih aplikacij, ki niso javne. Prosite administratorja v vaši organizaciji, da vam dodeli tip uporabnika, ki vsebuje aplikacije Essential Apps ali licenco za dodatne aplikacije Essential Apps.",
7 | "title": "Brez licence"
8 | }
9 | },
10 | "report": {
11 | "flag": "Označi kot neprimerno",
12 | "error": "Napaka",
13 | "success": "Označeno",
14 | "loading": "Nalaganje…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Opis ni na voljo",
18 | "bookmarks": "Zaznamki",
19 | "zoomTo": "Približaj na to lokacijo in izvedite več.",
20 | "untitledNote": "Neimenovano"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medijski sloji",
25 | "mediaLayersDescription": "Na karti prikažite prispevke javnosti.",
26 | "flickrSettings": "Nastavitve Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Nastavitve Twitter",
29 | "twitterUser": "Račun Twitter",
30 | "twitterSignIn": "Prijavite se v Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Nastavitve Instagram",
34 | "instagramUser": "Račun Instagram",
35 | "instagramSignIn": "Prijavite se v Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Nastavitve YouTube",
38 | "ytSettingsInfo": "Pogled videov uporabnikov, vključno z omrežno in strokovno vsebino.",
39 | "ytTime": "Naloženo v preteklosti",
40 | "today": "Dan",
41 | "this_week": "Teden",
42 | "this_month": "Mesec",
43 | "all_time": "Ves čas",
44 | "moreInfo": "Več informacij",
45 | "searchTerms": "Iskalni izrazi",
46 | "search": "Iskanje",
47 | "flSettingsInfo": "Vrni rezultate, ki ustrezajo imenu, opisu ali oznakam fotografije.",
48 | "twSettingsInfo": "Oglejte si, kaj se zdaj dogaja.",
49 | "igSettingsInfo": "Instagram je hiter, čudovit in zabaven način, da s prijatelji in družino delite utrinke iz življenja.",
50 | "advancedOperators": "Namig: uporabite operatorje za ustvarjanje naprednih iskanj.",
51 | "tweetsFilteredBy": "tviti filtrirani po:",
52 | "photosFilteredBy": "fotografije filtrirane po:",
53 | "videosFilteredBy": "videi filtrirani po:",
54 | "instagramAccountStatus": "Omogočite sloj z Instagramom, da si ogledate svoj status.",
55 | "twitterAccountStatus": "Omogočite sloj s Twitterjem, da si ogledate svoj status."
56 | },
57 | "general": {
58 | "map": "Karta",
59 | "mapInfo": "Informacije o karti",
60 | "legend": "Legenda",
61 | "featured": "Izpostavljene lokacije",
62 | "layers": "Sloji",
63 | "share": "Deli",
64 | "about": "Več o tem",
65 | "find": "Poštna številka, mesto itd.",
66 | "moreInfo": "Več informacij",
67 | "dateModified": "Nazadnje spremenjeno",
68 | "noSearchResult": "Ni najdenih rezultatov",
69 | "switchAccount": "Preklopi račun",
70 | "signIn": "Prijava",
71 | "settings": "Nastavitve"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/sr/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Podeli",
5 | "heading": "Podeli ovu mapu",
6 | "url": "Link ka mapi",
7 | "embed": "Ugradi mapu",
8 | "extent": "Podeli trenutni obuhvat mape",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/sr/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Kreiranje mape nije moguće",
4 | "views": "prikazi.",
5 | "licenseError": {
6 | "message": "Vaš nalog nema licencu za korišćenje aplikacija koje mogu da se konfigurišu i nisu javne. Zatražite od administratora organizacije da vam dodeli onaj tip korisnika koji uključuje osnovne aplikacije ili licencu za dodatne osnovne aplikacije.",
7 | "title": "Nema licencu"
8 | }
9 | },
10 | "report": {
11 | "flag": "Označi zastavicom kao neprikladno",
12 | "error": "Greška",
13 | "success": "Označeno zastavicom",
14 | "loading": "Učitavanja…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Opis nije dostupan",
18 | "bookmarks": "Obeleživači",
19 | "zoomTo": "Zumirajte na ovu lokaciju da pronađete više informacija.",
20 | "untitledNote": "Bez naslova"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Slojevi medija",
25 | "mediaLayersDescription": "Prikažite doprinose javnosti na mapi.",
26 | "flickrSettings": "Flickr postavke",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter postavke",
29 | "twitterUser": "Twitter nalog",
30 | "twitterSignIn": "Prijavi se na Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram postavke",
34 | "instagramUser": "Instagram nalog",
35 | "instagramSignIn": "Prijavite se na Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube postavke",
38 | "ytSettingsInfo": "Prikažite video zapise generisane od strane korisnika uključujući mrežni i profesionalni sadržaj.",
39 | "ytTime": "Otpremljeno tokom proteklih",
40 | "today": "Dan",
41 | "this_week": "Sedmica",
42 | "this_month": "Mesec",
43 | "all_time": "Sva vremena",
44 | "moreInfo": "Više informacija",
45 | "searchTerms": "Pretraži uslove",
46 | "search": "Pretraži",
47 | "flSettingsInfo": "Povratni rezultati se podudaraju sa naslovom, opisom ili oznakama fotografije.",
48 | "twSettingsInfo": "Pogledajte šta se sada događa.",
49 | "igSettingsInfo": "Instagram je brz, lep i zabavan način da podelite život sa prijateljima i porodicom.",
50 | "advancedOperators": "Savet: koristite operatore za kreiranje naprednih pretraga.",
51 | "tweetsFilteredBy": "filtriraj tvitove po:",
52 | "photosFilteredBy": "filtriraj fotografije po:",
53 | "videosFilteredBy": "filtriraj video zapise po:",
54 | "instagramAccountStatus": "Omogućite da Instagram sloj može da vidi vaš status.",
55 | "twitterAccountStatus": "Omogućite da Twitter sloj može da vidi vaš status."
56 | },
57 | "general": {
58 | "map": "Mapa",
59 | "mapInfo": "Informacije o mapi",
60 | "legend": "Legenda",
61 | "featured": "Istaknute lokacije",
62 | "layers": "Slojevi",
63 | "share": "Podeli",
64 | "about": "Više informacija",
65 | "find": "Poštanski broj, grad, itd.",
66 | "moreInfo": "Više informacija",
67 | "dateModified": "Poslednja izmena",
68 | "noSearchResult": "Nema pronađenog rezultata",
69 | "switchAccount": "Promeni nalog",
70 | "signIn": "Prijavite se",
71 | "settings": "Postavke"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/sv/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Dela",
5 | "heading": "Dela den här kartan",
6 | "url": "Kartlänk",
7 | "embed": "Bädda in karta",
8 | "extent": "Dela aktuell kartutbredning",
9 | "size": "Storlek (bredd/höjd):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/sv/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Det gick inte att skapa kartan",
4 | "views": "visningar.",
5 | "licenseError": {
6 | "message": "Ditt konto har ingen licens för att använda konfigurerbara appar som inte är tillgängliga för allmänheten. Be din organisations administratör att tilldela dig en användartyp som omfattar Essential Apps eller en tilläggslicens för Essential Apps.",
7 | "title": "Inte licensierad"
8 | }
9 | },
10 | "report": {
11 | "flag": "Flagga som olämpligt",
12 | "error": "Fel",
13 | "success": "Flaggat",
14 | "loading": "Laddar…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Ingen beskrivning tillgänglig",
18 | "bookmarks": "Bokmärken",
19 | "zoomTo": "Zooma till den här platsen och ta reda på mer information.",
20 | "untitledNote": "Namnlös"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Medialager",
25 | "mediaLayersDescription": "Visa bidrag från allmänheten på kartan.",
26 | "flickrSettings": "Flickr-inställningar",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter-inställningar",
29 | "twitterUser": "Twitter-konto",
30 | "twitterSignIn": "Logga in på Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram-inställningar",
34 | "instagramUser": "Instagram-konto",
35 | "instagramSignIn": "Logga in på Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube-inställningar",
38 | "ytSettingsInfo": "Visa användarskapade videoklipp inklusive nätverksinnehåll och professionellt innehåll.",
39 | "ytTime": "Överfört inom senaste",
40 | "today": "Dag",
41 | "this_week": "Vecka",
42 | "this_month": "Månad",
43 | "all_time": "All tid",
44 | "moreInfo": "Mer information",
45 | "searchTerms": "Söktermer",
46 | "search": "Sök",
47 | "flSettingsInfo": "Returnera resultat som matchar ett fotos titel, beskrivning eller taggar.",
48 | "twSettingsInfo": "Se vad som händer just nu.",
49 | "igSettingsInfo": "Instagram är ett snabbt, vackert och roligt sätt att dela med dig av livet till vänner och familj.",
50 | "advancedOperators": "Tips! Använd operatorer för att skapa avancerade sökningar.",
51 | "tweetsFilteredBy": "tweets filtrerade enligt:",
52 | "photosFilteredBy": "foton filtrerade enligt:",
53 | "videosFilteredBy": "videoklipp filtrerade enligt:",
54 | "instagramAccountStatus": "Aktivera Instagram-lagret för att visa din status.",
55 | "twitterAccountStatus": "Aktivera Twitter-lagret för att visa din status."
56 | },
57 | "general": {
58 | "map": "Karta",
59 | "mapInfo": "Kartinformation",
60 | "legend": "Teckenförklaring",
61 | "featured": "Platser i fokus",
62 | "layers": "Lager",
63 | "share": "Dela",
64 | "about": "Om",
65 | "find": "Postnummer, ort osv.",
66 | "moreInfo": "Mer information",
67 | "dateModified": "Senast ändrad",
68 | "noSearchResult": "Inga resultat hittades",
69 | "switchAccount": "Byt konto",
70 | "signIn": "Logga in",
71 | "settings": "Inställningar"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/th/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "แชร์",
5 | "heading": "แชร์แผนที่นี้",
6 | "url": "เชื่อมโยงแผนที่",
7 | "embed": "ผูกติดกับแผนที่",
8 | "extent": "แชร์ขอบเขตแผนที่ปัจจุบัน",
9 | "size": "ขนาด (กว้าง/สูง):",
10 | "facebookTooltip": "เฟสบุ๊ค",
11 | "twitterTooltip": "ทวิตเตอร์",
12 | "gplusTooltip": "กูเกิ้ลพลัส",
13 | "emailTooltip": "อีเมล์"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/th/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "ไม่สามารถสร้างแผนที่",
4 | "views": "วิว",
5 | "licenseError": {
6 | "message": "บัญชีผู้ใช้ของคุณไม่มีใบอนุญาตในการใช้งานแอปที่กำหนดค่าได้ซึ่งไม่ใช่แบบสาธารณะ โปรดขอให้ผู้ดูแลองค์กรของคุณกำหนดประเภทผู้ใช้ที่มีใบอนุญาตแอป Essential หรือแอดออนแอป Essential ให้กับคุณ",
7 | "title": "ไม่มีใบอนุญาต"
8 | }
9 | },
10 | "report": {
11 | "flag": "ปักธงไม่เหมาะสม",
12 | "error": "ผิดพลาด",
13 | "success": "ปักธง",
14 | "loading": "กำลังโหลด;"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "คำบรรยายไม่สามารถใช้งานได้",
18 | "bookmarks": "บุ๊คมาร์ค",
19 | "zoomTo": "ขยายไปยังตำแหน่งนี้และค้นหาข้อมูลเพิ่มเติม",
20 | "untitledNote": "ไม่มีชื่อ"
21 | },
22 | "social": {
23 | "flickr": "ฟลิกเกอร์",
24 | "mediaLayers": "ชั้นข้อมูลสื่อ",
25 | "mediaLayersDescription": "แสดงข้อมูลการมีส่วนร่วมของประชาชนที่อยู่บนแผนที่",
26 | "flickrSettings": "การตั้งค่า Flickr",
27 | "twitter": "ทวิตเตอร์",
28 | "twitterSettings": "การตั้งค่าทวีตเตอร์",
29 | "twitterUser": "บัญชีรายชื่อทวีตเตอร์",
30 | "twitterSignIn": "ลงทะเบียนเข้าสู่ทวิตเตอร์",
31 | "webcams": "เว็บแคม.ท่องเที่ยว",
32 | "instagram": "Instagram",
33 | "instagramSettings": "การตั้งค่าอินสตาแกรม",
34 | "instagramUser": "บัยชีอินสตาแกรม",
35 | "instagramSignIn": "เข้าระบบอินสตาแกรม",
36 | "youtube": "ยูทูบ",
37 | "youtubeSettings": "การตั้งค่ายูทูบ",
38 | "ytSettingsInfo": "ดูวิดีโอที่ผู้ใช้สร้างขึ้น รวมทั้งเน็ตเวิร์กและเนื้อหาที่เชื่อถือได้",
39 | "ytTime": "อัพโหลดภายในช่วงที่ผ่านมา",
40 | "today": "วัน",
41 | "this_week": "สัปดาห์",
42 | "this_month": "เดือน",
43 | "all_time": "เวลาทั้งหมด",
44 | "moreInfo": "ข้อมูลเพิ่มเติม",
45 | "searchTerms": "คำที่ใช้ค้นหา",
46 | "search": "ค้นหา",
47 | "flSettingsInfo": "ผลตอบแทนจากการจับคู่ภาพที่ชื่อคำอธิบายหรือแท็กส์",
48 | "twSettingsInfo": "ดูว่าเกิดอะไรขึ้นตอนนี้",
49 | "igSettingsInfo": "อินสตาแกรม เป็นช่องทางในการแชร์การใช้ชีวิตของคุณร่วมกับเพื่อนๆ และครอบครัวได้เร็ว สวยงาม และสนุกสนาน",
50 | "advancedOperators": "Tip: ใช้ operators for creating advanced searches.",
51 | "tweetsFilteredBy": "กรองทวีตโดย:",
52 | "photosFilteredBy": "กรองรูปภาพโดย:",
53 | "videosFilteredBy": "วิดีโอที่กรองด้วย:",
54 | "instagramAccountStatus": "เปิดอินสตาแกรมเพื่อจะได้เห็นสถานะของคุณ",
55 | "twitterAccountStatus": "กำหนดให้ชั้นข้อมูลทวิตเตอร์มองเห็นสถานะของคุณ"
56 | },
57 | "general": {
58 | "map": "แผนที่",
59 | "mapInfo": "ข้อมูลแผนที่",
60 | "legend": "สัญลักษณ์",
61 | "featured": "ตำแหน่งฟีเจอร์",
62 | "layers": "ชั้นข้อมูล",
63 | "share": "แบ่งปัน",
64 | "about": "เกี่ยวกับ",
65 | "find": "รหัสไปรษณีย์ ชื่อเมือง เป็นต้น",
66 | "moreInfo": "ข้อมูลเพิ่มเติม",
67 | "dateModified": "ปรับปรุงครั้งสุดท้าย",
68 | "noSearchResult": "ไม่พบผลลัพธ์",
69 | "switchAccount": "เปลี่ยนบัญชีผู้ใช้",
70 | "signIn": "เข้าระบบ",
71 | "settings": "การตั้งค่า"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/tr/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Paylaş",
5 | "heading": "Bu haritayı paylaş",
6 | "url": "Harita Bağlantısı",
7 | "embed": "Haritayı Ekle",
8 | "extent": "Geçerli harita uzantısını paylaş",
9 | "size": "Boyut (genişlik/yükseklik):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-posta"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/tr/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Harita oluşturulamıyor",
4 | "views": "görünümler.",
5 | "licenseError": {
6 | "message": "Hesabınız herkese açık olmayan Yapılandırılabilir Uygulamaları kullanmak için lisanslandırılmamış. Lütfen kuruluş yöneticinizden Temel Uygulamalar veya eklenti Temel Uygulamalar lisansı içeren bir kullanıcı türü atamasını isteyin.",
7 | "title": "Lisanslı Değil"
8 | }
9 | },
10 | "report": {
11 | "flag": "Uygunsuz olarak işaretle",
12 | "error": "Hata",
13 | "success": "İşaretlendi",
14 | "loading": "Yükleniyor…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Açıklama bulunmuyor",
18 | "bookmarks": "Yer İşaretleri",
19 | "zoomTo": "Bu konumu yakınlaştırın ve daha fazla bilgi edinin.",
20 | "untitledNote": "Başlıksız"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Ortam Katmanları",
25 | "mediaLayersDescription": "Harita üzerinde dışarıdan gelen katkıları göster.",
26 | "flickrSettings": "Flickr Ayarları",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter Ayarları",
29 | "twitterUser": "Twitter Hesabı",
30 | "twitterSignIn": "Twitter'a giriş yap",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram Ayarları",
34 | "instagramUser": "Instagram Hesabı",
35 | "instagramSignIn": "Instagram'a giriş yapın",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube Ayarları",
38 | "ytSettingsInfo": "Kullanıcı tarafından üretilen videoları ağ ve profesyonel içerik de dahil görüntüleyin.",
39 | "ytTime": "Geçmişte yüklenen",
40 | "today": "Gün",
41 | "this_week": "Hafta",
42 | "this_month": "Ay",
43 | "all_time": "Tüm Zamanlar",
44 | "moreInfo": "Daha Fazla Bilgi",
45 | "searchTerms": "Arama Terimleri",
46 | "search": "Ara",
47 | "flSettingsInfo": "Bir fotoğrafın başlığı, açıklaması veya etiketleriyle eşleşen sonuçlar döndürün.",
48 | "twSettingsInfo": "Şu anda ne olduğunu görün.",
49 | "igSettingsInfo": "Instagram, hayatınızı arkadaşlarınız ve ailenizle paylaşmak için hızlı, güzel ve eğlenceli bir yoldur.",
50 | "advancedOperators": "İpucu: gelişmiş aramalar oluşturmak için işleçler kullanın.",
51 | "tweetsFilteredBy": "tweet filtreleme ölçütü:",
52 | "photosFilteredBy": "fotoğraf filtreleme ölçütü:",
53 | "videosFilteredBy": "Video filtreleme kriteri:",
54 | "instagramAccountStatus": "Durumunuzu görmek için Instagram katmanını etkinleştirin.",
55 | "twitterAccountStatus": "Durumunuzu görmek için Twitter katmanını etkinleştirin."
56 | },
57 | "general": {
58 | "map": "Harita",
59 | "mapInfo": "Harita Bilgileri",
60 | "legend": "Gösterim",
61 | "featured": "Tanıtılan Konumlar",
62 | "layers": "Katmanlar",
63 | "share": "Paylaş",
64 | "about": "Hakkında",
65 | "find": "Posta Kodu, şehir vb.",
66 | "moreInfo": "Ek bilgiler",
67 | "dateModified": "Son değiştirilme tarihi",
68 | "noSearchResult": "Hiçbir sonuç bulunamadı",
69 | "switchAccount": "Hesap değiştir",
70 | "signIn": "Hesabınıza",
71 | "settings": "Ayarlar"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/uk/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Поділитися",
5 | "heading": "Поділитися цією картою",
6 | "url": "Посилання на карту",
7 | "embed": "Вбудувати карту",
8 | "extent": "Поділитися поточним екстентом карти",
9 | "size": "Розмір (ширина/висота)",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Ел. пошта"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/uk/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Неможливо створити карту",
4 | "views": "карти.",
5 | "licenseError": {
6 | "message": "Ваш обліковий запис не має ліцензії на використання настроюваних додатків, які не є публічними Попросіть адміністратора вашої організації призначити вам тип користувача, що включає основні додатки або додаткову ліцензію на основні додатки.",
7 | "title": "Немає ліцензії"
8 | }
9 | },
10 | "report": {
11 | "flag": "Позначити як невідповідний",
12 | "error": "Помилка",
13 | "success": "Позначений",
14 | "loading": "Завантаження…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Опис недоступний",
18 | "bookmarks": "Закладки",
19 | "zoomTo": "Масштабувати до цього місця розташування та отримати більше інформації.",
20 | "untitledNote": "Без заголовка"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Мультимедійні шари",
25 | "mediaLayersDescription": "Показати внески від публічних учасників на карті.",
26 | "flickrSettings": "Налаштування Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Налаштування Twitter",
29 | "twitterUser": "Обліковий запис Twitter",
30 | "twitterSignIn": "Увійти в Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Налаштування Instagram",
34 | "instagramUser": "Обліковий запис Instagram",
35 | "instagramSignIn": "Увійти в Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Налаштування YouTube",
38 | "ytSettingsInfo": "Переглянути створені користувачем відео, включаючи мережевий та професійний зміст.",
39 | "ytTime": "Передані протягом останнього",
40 | "today": "Дня",
41 | "this_week": "Тижня",
42 | "this_month": "Місяця",
43 | "all_time": "За весь час",
44 | "moreInfo": "Додаткова інформація",
45 | "searchTerms": "Критерії пошуку",
46 | "search": "Пошук",
47 | "flSettingsInfo": "Вивести результати, які збігаються з заголовком фотографії, описом або тегами.",
48 | "twSettingsInfo": "Побачити, що відбувається зараз.",
49 | "igSettingsInfo": "Instagram — це швидкий, чудовий та захоплюючий спосіб поділитися інформацією про своє життя з друзями та сім’єю.",
50 | "advancedOperators": "Підказка: використовуйте оператори для створення розширеного пошуку.",
51 | "tweetsFilteredBy": "твіти відфільтровані за:",
52 | "photosFilteredBy": "фотографії, відфільтровані за:",
53 | "videosFilteredBy": "відео, відфільтровані за:",
54 | "instagramAccountStatus": "Активувати шар Instagram, щоб побачити свій статус.",
55 | "twitterAccountStatus": "Активувати шар Twitter, щоб побачити свій статус."
56 | },
57 | "general": {
58 | "map": "Карта",
59 | "mapInfo": "Інформація про карту",
60 | "legend": "Легенда",
61 | "featured": "Вибрані місця розташування",
62 | "layers": "Шари",
63 | "share": "Поділитися",
64 | "about": "Про програму",
65 | "find": "Поштовий індекс, місто і т. д.",
66 | "moreInfo": "Додаткова інформація",
67 | "dateModified": "Змінено останній раз",
68 | "noSearchResult": "Результат не знайдено",
69 | "switchAccount": "Змінити обліковий запис",
70 | "signIn": "Увійти в систему",
71 | "settings": "Налаштування"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/vi/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Chia sẻ",
5 | "heading": "Chia sẻ bản đồ này",
6 | "url": "Liên kết Bản đồ",
7 | "embed": "Nhúng Bản đồ",
8 | "extent": "Chia sẻ phạm vi bản đồ hiện tại",
9 | "size": "Kích thước (chiều rộng/chiều cao):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/vi/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "Không thể tạo bản đồ",
4 | "views": "lượt xem.",
5 | "licenseError": {
6 | "message": "Tài khoản của bạn không được cấp phép để sử dụng Ứng dụng có thể cấu hình mà không được chia sẻ công khai. Vui lòng yêu cầu quản trị viên của tổ chức bạn gán cho bạn loại người dùng nào có bao gồm các ứng dụng thiết yếu hoặc có giấy phép sử dụng các ứng dụng thiết yếu bổ trợ.",
7 | "title": "Không được cấp phép"
8 | }
9 | },
10 | "report": {
11 | "flag": "Gắn cờ là không phù hợp",
12 | "error": "Lỗi",
13 | "success": "Gắn cờ",
14 | "loading": "Đang tải…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "Mô tả không khả dụng",
18 | "bookmarks": "Đánh dấu",
19 | "zoomTo": "Phóng to đến vị trí này và tìm hiểu thêm thông tin.",
20 | "untitledNote": "Chưa có tiêu đề"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "Lớp phương tiện",
25 | "mediaLayersDescription": "Hiển thị đóng góp của cộng đồng trên bản đồ.",
26 | "flickrSettings": "Thiết lập Flickr",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Thiết lập Twitter",
29 | "twitterUser": "Tài khoản Twitter",
30 | "twitterSignIn": "Đăng nhập vào Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Thiết lập Instagram",
34 | "instagramUser": "Tài khoản Instagram",
35 | "instagramSignIn": "Đăng nhập vào Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "Thiết lập YouTube",
38 | "ytSettingsInfo": "Xem video do người dùng tạo bao gồm nội dung trên mạng và nội dung chuyên nghiệp.",
39 | "ytTime": "Tải lên trong quá khứ",
40 | "today": "Ngày",
41 | "this_week": "Tuần",
42 | "this_month": "Tháng",
43 | "all_time": "Tất cả thời gian",
44 | "moreInfo": "Thông tin khác",
45 | "searchTerms": "Thuật ngữ tìm kiếm",
46 | "search": "Tìm kiếm",
47 | "flSettingsInfo": "Trả về kết quả phù hợp với tiêu đề hình ảnh, mô tả hoặc thẻ.",
48 | "twSettingsInfo": "Xem điều gì’đang xảy ra.",
49 | "igSettingsInfo": "Instagram là một cách nhanh chóng, thú vị và hay để chia sẻ cuộc sống của bạn với bạn bè và gia đình.",
50 | "advancedOperators": "Mẹo: sử dụng các toán tử để tạo tìm kiếm nâng cao.",
51 | "tweetsFilteredBy": "lọc bài đăng theo:",
52 | "photosFilteredBy": "lọc ảnh theo:",
53 | "videosFilteredBy": "lọc video theo:",
54 | "instagramAccountStatus": "Bật lớp Instagram để xem trạng thái của bạn.",
55 | "twitterAccountStatus": "Bật lớp Twitter để xem trạng thái của bạn."
56 | },
57 | "general": {
58 | "map": "Bản đồ",
59 | "mapInfo": "Thông tin Bản đồ",
60 | "legend": "Chú giải",
61 | "featured": "Địa điểm nổi bật",
62 | "layers": "Lớp",
63 | "share": "Chia sẻ",
64 | "about": "Về",
65 | "find": "Mã Zip, thành phố, v.v.",
66 | "moreInfo": "Thông tin khác",
67 | "dateModified": "Chỉnh sửa lần cuối",
68 | "noSearchResult": "Không tìm thấy kết quả",
69 | "switchAccount": "Chuyển đổi tài khoản",
70 | "signIn": "Đăng nhập",
71 | "settings": "Thiết lập"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/zh-cn/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "共享",
5 | "heading": "共享此地图",
6 | "url": "地图链接",
7 | "embed": "嵌入地图",
8 | "extent": "共享当前地图范围",
9 | "size": "大小(宽度/高度):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "电子邮件"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/zh-cn/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "无法创建地图",
4 | "views": "视图。",
5 | "licenseError": {
6 | "message": "您的帐户无权使用非公共的可配置应用程序。 请联系您的组织管理员为您分配包含基本应用程序或附加基本应用程序许可的用户类型。",
7 | "title": "未经许可"
8 | }
9 | },
10 | "report": {
11 | "flag": "标记为不适用",
12 | "error": "错误",
13 | "success": "已标记",
14 | "loading": "正在加载…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "描述不可用",
18 | "bookmarks": "书签",
19 | "zoomTo": "缩放到该位置并了解详细信息。",
20 | "untitledNote": "无标题"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "媒体图层",
25 | "mediaLayersDescription": "在地图上显示公众贡献。",
26 | "flickrSettings": "Flickr 设置",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter 设置",
29 | "twitterUser": "Twitter 帐户",
30 | "twitterSignIn": "登录到 Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram 设置",
34 | "instagramUser": "Instagram 帐户",
35 | "instagramSignIn": "登录 Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube 设置",
38 | "ytSettingsInfo": "查看用户生成的视频,其中包括网络和专业内容。",
39 | "ytTime": "在过去上传的内容",
40 | "today": "天",
41 | "this_week": "周",
42 | "this_month": "月",
43 | "all_time": "所有时间",
44 | "moreInfo": "更多信息",
45 | "searchTerms": "搜索词",
46 | "search": "搜索",
47 | "flSettingsInfo": "返回与照片标题、描述或标签匹配的结果。",
48 | "twSettingsInfo": "看看现在发生的情况。",
49 | "igSettingsInfo": "Instagram 是与朋友和家庭分享生活的一种快速、时尚而有趣的方式。",
50 | "advancedOperators": "提示: 使用运算符创建高级搜索",
51 | "tweetsFilteredBy": "推文过滤依据:",
52 | "photosFilteredBy": "照片过滤依据:",
53 | "videosFilteredBy": "视频过滤条件:",
54 | "instagramAccountStatus": "启用 Instagram 图层以查看您的状态。",
55 | "twitterAccountStatus": "启用 Twitter 图层查看状态。"
56 | },
57 | "general": {
58 | "map": "地图",
59 | "mapInfo": "地图信息",
60 | "legend": "图例",
61 | "featured": "专题位置",
62 | "layers": "图层",
63 | "share": "共享",
64 | "about": "关于",
65 | "find": "邮政编码、城市等",
66 | "moreInfo": "更多信息",
67 | "dateModified": "上次修改时间",
68 | "noSearchResult": "未找到结果",
69 | "switchAccount": "切换帐户",
70 | "signIn": "登录",
71 | "settings": "设置"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/zh-hk/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "分享",
5 | "heading": "分享此地圖",
6 | "url": "地圖連結",
7 | "embed": "嵌入地圖",
8 | "extent": "分享目前地圖範圍",
9 | "size": "大小(寬度/高度):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "電子郵件"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/zh-hk/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "無法建立地圖",
4 | "views": "次檢視。",
5 | "licenseError": {
6 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
7 | "title": "未經許可"
8 | }
9 | },
10 | "report": {
11 | "flag": "標記為不適用",
12 | "error": "錯誤",
13 | "success": "已標記",
14 | "loading": "正在載入…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "無法提供描述",
18 | "bookmarks": "書簽",
19 | "zoomTo": "縮放到該位置並瞭解更詳細的資訊。",
20 | "untitledNote": "無標題"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "媒體圖層",
25 | "mediaLayersDescription": "在地圖上顯示大眾的貢獻。",
26 | "flickrSettings": "Flickr 設置",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter 設定",
29 | "twitterUser": "Twitter 帳戶",
30 | "twitterSignIn": "登錄到 Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram 設定",
34 | "instagramUser": "Instagram 帳號",
35 | "instagramSignIn": "登錄到 Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube 設定",
38 | "ytSettingsInfo": "查看使用者生成的影片,其中包括網路和專業內容。",
39 | "ytTime": "以前上傳的內容",
40 | "today": "天",
41 | "this_week": "週",
42 | "this_month": "月",
43 | "all_time": "所有時間",
44 | "moreInfo": "更多資訊",
45 | "searchTerms": "搜尋詞彙",
46 | "search": "搜尋",
47 | "flSettingsInfo": "返回與照片標題、描述或標記匹配的結果。",
48 | "twSettingsInfo": "看看現在的情況。",
49 | "igSettingsInfo": "Instagram 是與朋友和家人分享生活的一種快速、時尚而有趣的方式。",
50 | "advancedOperators": "提示: 使用運算符建立進階搜尋。",
51 | "tweetsFilteredBy": "推文篩選依據:",
52 | "photosFilteredBy": "照片篩選依據:",
53 | "videosFilteredBy": "影片篩選條件:",
54 | "instagramAccountStatus": "啟用 Instagram 圖層以查看您的狀態。",
55 | "twitterAccountStatus": "啟用 Twitter 圖層以查看您的狀態。"
56 | },
57 | "general": {
58 | "map": "地圖",
59 | "mapInfo": "地圖資訊",
60 | "legend": "圖例",
61 | "featured": "主題位置",
62 | "layers": "圖層",
63 | "share": "分享",
64 | "about": "關於",
65 | "find": "郵遞區號、城市等",
66 | "moreInfo": "更多資訊",
67 | "dateModified": "上次修改時間",
68 | "noSearchResult": "未找到結果",
69 | "switchAccount": "切換帳戶",
70 | "signIn": "登錄",
71 | "settings": "設定"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/zh-tw/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "分享",
5 | "heading": "分享此地圖",
6 | "url": "地圖連結",
7 | "embed": "嵌入地圖",
8 | "extent": "分享目前地圖範圍",
9 | "size": "大小(寬度/高度):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "電子郵件"
14 | }
15 | }
16 | });
--------------------------------------------------------------------------------
/js/nls/zh-tw/resources.js:
--------------------------------------------------------------------------------
1 | define({
2 | "map": {
3 | "error": "無法建立地圖",
4 | "views": "次檢視。",
5 | "licenseError": {
6 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
7 | "title": "未經許可"
8 | }
9 | },
10 | "report": {
11 | "flag": "標記為不適用",
12 | "error": "錯誤",
13 | "success": "已標記",
14 | "loading": "正在載入…"
15 | },
16 | "mapNotes": {
17 | "notesUnavailable": "無法提供描述",
18 | "bookmarks": "書簽",
19 | "zoomTo": "縮放到該位置並瞭解更詳細的資訊。",
20 | "untitledNote": "無標題"
21 | },
22 | "social": {
23 | "flickr": "Flickr",
24 | "mediaLayers": "媒體圖層",
25 | "mediaLayersDescription": "在地圖上顯示大眾的貢獻。",
26 | "flickrSettings": "Flickr 設置",
27 | "twitter": "Twitter",
28 | "twitterSettings": "Twitter 設定",
29 | "twitterUser": "Twitter 帳戶",
30 | "twitterSignIn": "登錄到 Twitter",
31 | "webcams": "Webcams.travel",
32 | "instagram": "Instagram",
33 | "instagramSettings": "Instagram 設定",
34 | "instagramUser": "Instagram 帳號",
35 | "instagramSignIn": "登錄到 Instagram",
36 | "youtube": "YouTube",
37 | "youtubeSettings": "YouTube 設定",
38 | "ytSettingsInfo": "查看使用者生成的影片,其中包括網路和專業內容。",
39 | "ytTime": "以前上傳的內容",
40 | "today": "天",
41 | "this_week": "週",
42 | "this_month": "月",
43 | "all_time": "所有時間",
44 | "moreInfo": "更多資訊",
45 | "searchTerms": "搜尋詞彙",
46 | "search": "搜尋",
47 | "flSettingsInfo": "返回與照片標題、描述或標記匹配的結果。",
48 | "twSettingsInfo": "看看現在的情況。",
49 | "igSettingsInfo": "Instagram 是與朋友和家人分享生活的一種快速、時尚而有趣的方式。",
50 | "advancedOperators": "提示: 使用運算符建立進階搜尋。",
51 | "tweetsFilteredBy": "推文篩選依據:",
52 | "photosFilteredBy": "照片篩選依據:",
53 | "videosFilteredBy": "影片篩選條件:",
54 | "instagramAccountStatus": "啟用 Instagram 圖層以查看您的狀態。",
55 | "twitterAccountStatus": "啟用 Twitter 圖層以查看您的狀態。"
56 | },
57 | "general": {
58 | "map": "地圖",
59 | "mapInfo": "地圖資訊",
60 | "legend": "圖例",
61 | "featured": "主題位置",
62 | "layers": "圖層",
63 | "share": "分享",
64 | "about": "關於",
65 | "find": "郵遞區號、城市等",
66 | "moreInfo": "更多資訊",
67 | "dateModified": "上次修改時間",
68 | "noSearchResult": "未找到結果",
69 | "switchAccount": "切換帳戶",
70 | "signIn": "登錄",
71 | "settings": "設定"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/respond.min.js:
--------------------------------------------------------------------------------
1 | /*! Respond.js v1.4.2: min/max-width media query polyfill
2 | * Copyright 2013 Scott Jehl
3 | * Licensed under MIT
4 | * http://j.mp/respondjs */
5 |
6 | !function(a){"use strict";a.matchMedia=a.matchMedia||function(a){var b,c=a.documentElement,d=c.firstElementChild||c.firstChild,e=a.createElement("body"),f=a.createElement("div");return f.id="mq-test-1",f.style.cssText="position:absolute;top:-100em",e.style.background="none",e.appendChild(f),function(a){return f.innerHTML='',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){v(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},g=function(a){return a.replace(c.regex.minmaxwh,"").match(c.regex.other)};if(c.ajax=f,c.queue=d,c.unsupportedmq=g,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,comments:/\/\*[^*]*\*+([^/][^*]*\*+)*\//gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,maxw:/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,minmaxwh:/\(\s*m(in|ax)\-(height|width)\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/gi,other:/\([^\)]*\)/g},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var h,i,j,k=a.document,l=k.documentElement,m=[],n=[],o=[],p={},q=30,r=k.getElementsByTagName("head")[0]||l,s=k.getElementsByTagName("base")[0],t=r.getElementsByTagName("link"),u=function(){var a,b=k.createElement("div"),c=k.body,d=l.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=k.createElement("body"),c.style.background="none"),l.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&l.insertBefore(c,l.firstChild),a=b.offsetWidth,f?l.removeChild(c):c.removeChild(b),l.style.fontSize=d,e&&(c.style.fontSize=e),a=j=parseFloat(a)},v=function(b){var c="clientWidth",d=l[c],e="CSS1Compat"===k.compatMode&&d||k.body[c]||d,f={},g=t[t.length-1],p=(new Date).getTime();if(b&&h&&q>p-h)return a.clearTimeout(i),i=a.setTimeout(v,q),void 0;h=p;for(var s in m)if(m.hasOwnProperty(s)){var w=m[s],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?j||u():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?j||u():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(n[w.rules]))}for(var C in o)o.hasOwnProperty(C)&&o[C]&&o[C].parentNode===r&&r.removeChild(o[C]);o.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=k.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,r.insertBefore(E,g.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(k.createTextNode(F)),o.push(E)}},w=function(a,b,d){var e=a.replace(c.regex.comments,"").replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},i=!f&&d;b.length&&(b+="/"),i&&(f=1);for(var j=0;f>j;j++){var k,l,o,p;i?(k=d,n.push(h(a))):(k=e[j].match(c.regex.findStyles)&&RegExp.$1,n.push(RegExp.$2&&h(RegExp.$2))),o=k.split(","),p=o.length;for(var q=0;p>q;q++)l=o[q],g(l)||m.push({media:l.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:n.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}v()},x=function(){if(d.length){var b=d.shift();f(b.href,function(c){w(c,b.href,b.media),p[b.href]=!0,a.setTimeout(function(){x()},0)})}},y=function(){for(var b=0;b
2 |
3 |
4 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/resources/fontello-9bb2ebe7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/public-information-map-template-js/0b6f08da22ee36f7cb57cbbd3d1349e8c8e2b488/resources/fontello-9bb2ebe7.zip
--------------------------------------------------------------------------------
/twitter-callback.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | OAuth Popup Callback
7 |
18 |
19 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------