├── .DS_Store
├── README.md
├── build
├── config
│ ├── defaults.js
│ ├── demoMap.js
│ └── templateConfig.js
├── css
│ ├── styles.css
│ └── theme
│ │ ├── default.css
│ │ ├── menubar.css
│ │ ├── rounded.css
│ │ └── sidetools.css
├── fonts
│ ├── tool-icons.eot
│ ├── tool-icons.svg
│ ├── tool-icons.ttf
│ └── tool-icons.woff
├── images
│ ├── EsriBluePinCircle26.png
│ ├── ajax-loader.gif
│ ├── area_measure.png
│ ├── calcite_nav.png
│ ├── clippy.svg
│ ├── config-themes
│ │ ├── default.png
│ │ ├── menubar.png
│ │ └── sidetools.png
│ ├── dist_measure.png
│ ├── dist_point.png
│ ├── error.png
│ ├── loading-small.png
│ ├── logo.png
│ ├── popup-sprite.png
│ ├── ring.png
│ └── thumb.png
├── index.html
├── js
│ ├── MapUrlParams.js
│ ├── PopupPanel.js
│ ├── PrintConfig.js
│ ├── SearchSources.js
│ ├── ShareDialog.js
│ ├── dijit
│ │ └── templates
│ │ │ └── ShareDialog.html
│ ├── has-config.js
│ ├── 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
│ │ ├── hi
│ │ │ ├── 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
│ ├── template.js
│ └── toolbar.js
└── oauth-callback.html
├── config
├── defaults.js
├── demoMap.js
└── templateConfig.js
├── css
├── styles.css
└── theme
│ ├── default.css
│ ├── menubar.css
│ ├── rounded.css
│ └── sidetools.css
├── fonts
├── tool-icons.eot
├── tool-icons.svg
├── tool-icons.ttf
└── tool-icons.woff
├── gulpfile.js
├── images
├── EsriBluePinCircle26.png
├── ajax-loader.gif
├── area_measure.png
├── calcite_nav.png
├── clippy.svg
├── dist_measure.png
├── dist_point.png
├── error.png
├── loading-small.png
├── logo.png
├── popup-sprite.png
├── ring.png
└── thumb.png
├── index.html
├── js
├── MapUrlParams.js
├── PopupPanel.js
├── PrintConfig.js
├── SearchSources.js
├── ShareDialog.js
├── dijit
│ └── templates
│ │ └── ShareDialog.html
├── has-config.js
├── 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
│ ├── vi
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── zh-CN
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ ├── zh-hk
│ │ ├── ShareDialog.js
│ │ └── resources.js
│ └── zh-tw
│ │ ├── ShareDialog.js
│ │ └── resources.js
├── template.js
└── toolbar.js
├── license.txt
├── oauth-callback.html
├── package.json
└── resources
└── configurationPanel.js
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/.DS_Store
--------------------------------------------------------------------------------
/build/config/defaults.js:
--------------------------------------------------------------------------------
1 | define({
2 | appid: "",
3 | webmap: "14ab61d83557477daac4e36fae8c992e",
4 | oauthappid: "arcgisWebApps",
5 | proxyurl: "",
6 | bingKey: "",
7 | sharinghost: "www.arcgis.com",
8 | altMapText: null,
9 | toolbarLabels: !1,
10 | splashModal: !1,
11 | splashTitle: null,
12 | splashContent: null,
13 | splashButtonText: null,
14 | find: null,
15 | localize: !0,
16 | units: null,
17 | customstyle: null,
18 | customLayout: "default",
19 | theme: "#105e78",
20 | color: "#fff",
21 | iconColor: "#fff",
22 | panelBackground: "#fff",
23 | panelColor: "#000",
24 | logo: null,
25 | logolink: null,
26 | logoAltText: null,
27 | tools: [{
28 | name: "legend",
29 | enabled: !1
30 | }, {
31 | name: "bookmarks",
32 | enabled: !0
33 | }, {
34 | name: "layers",
35 | enabled: !0,
36 | sublayers: !0,
37 | legend: !0,
38 | opacityslider: !0
39 | }, {
40 | name: "basemap",
41 | enabled: !0
42 | }, {
43 | name: "overview",
44 | enabled: !1
45 | }, {
46 | name: "measure",
47 | enabled: !1
48 | }, {
49 | name: "edit",
50 | enabled: !1,
51 | toolbar: !1
52 | }, {
53 | name: "print",
54 | enabled: !0,
55 | legend: !1,
56 | layouts: !1,
57 | format: "pdf"
58 | }, {
59 | name: "details",
60 | enabled: !0
61 | }, {
62 | name: "share",
63 | enabled: !0,
64 | embed: !1
65 | }],
66 | activeTool: null,
67 | search: !0,
68 | locationSearch: !0,
69 | popupPanel: !1,
70 | searchExtent: !1,
71 | searchLayers: [{
72 | id: "",
73 | fields: []
74 | }],
75 | customUrlLayer: {
76 | id: null,
77 | fields: []
78 | },
79 | customUrlParam: null,
80 | showSlider: !0,
81 | locate: !1,
82 | locate_track: !1,
83 | locate_scale: null,
84 | scalebar: !1,
85 | title: "",
86 | subtitle: null,
87 | level: null,
88 | center: null,
89 | markerSymbol: "./images/EsriBluePinCircle26.png",
90 | markerSymbolWidth: 26,
91 | markerSymbolHeight: 26
92 | });
93 |
--------------------------------------------------------------------------------
/build/config/templateConfig.js:
--------------------------------------------------------------------------------
1 | define({queryForWebmap:!0,queryForGroupInfo:!1,queryForGroupItems:!1,useLocalWebmap:!1,localWebmapFile:"config/demoMap",queryForOrg:!0,queryForLocale:!0,groupParams:{q:'group:"${groupid}" AND -type:"Code Attachment"',sortField:"modified",sortOrder:"desc",num:9,start:0},urlItems:["color","extent","center","level","marker","feature","find","sharedTheme","sharedThemeItem","sharinghost","overwritesharing","tool_share_embed","customLayout"],esriEnvironment:!0,overwriteSharing:!1});
--------------------------------------------------------------------------------
/build/css/theme/default.css:
--------------------------------------------------------------------------------
1 | #panelTools,#panelTop{display:block;left:0;top:0}#panelTools{clear:both;min-height:30px;position:relative;width:100%}.panelTool{line-height:26px;margin:2px 0;width:26px}#panelTop{color:#fff;height:75px;overflow:visible;padding:0;position:fixed;width:100%}.esriSimpleSliderTL{border:none;left:0;top:80px}#locateDiv{left:0;position:absolute;top:155px;z-index:10}.noslider #locateDiv{top:80px}#panelContent{right:310px;top:10px}.panelTool{height:26px}@media only screen and (min-width:320px) and (max-device-width:480px){#panelContent{bottom:0;left:0;right:0;top:auto!important;width:100%;z-index:99}.pageContent{width:100%}}@media only screen and (min-width:720px){.esriSimpleSliderTL{left:10px!important;top:10px!important}#locateDiv{left:auto;left:10px;top:90px}#panelTools{display:block!important}#panelContent{top:90px}#panelTop{left:44px;top:10px;width:auto}.no-search #panelContent{top:10px}}.esriControlsBR,.logo-med,.logo-sm{bottom:0;left:0;position:absolute}.esriAttribution{bottom:5px;left:65px;position:absolute}
--------------------------------------------------------------------------------
/build/css/theme/menubar.css:
--------------------------------------------------------------------------------
1 | #panelTop{color:#fff;display:block;height:75px;left:30px;overflow:visible;padding:0;position:fixed;top:0;width:100%;z-index:40}#panelContent{top:75px}.noslider #panelTop{left:0}#panelTitle{border-bottom:none}#panelSearch{margin:7px 34px 10px 4px}.esriSimpleSliderTL{border:none;left:0;top:0}.arcgisSearch .searchBtn,.arcgisSearch .searchCollapsed .searchSubmit,.arcgisSearch .searchGroup .searchInput{-webkit-border-radius:0;border:none;border-radius:0}.arcgisSearch .searchMenu{-webkit-border-radius:0;border-radius:0}#panelTools{padding-left:10px}.panelTool{width:26px}.pageHeader{display:none}#locateDiv{bottom:0;left:0;position:absolute;z-index:30}@media only screen and (min-width:720px){#panelTools{display:block!important}#panelSearch{margin:7px 4px 10px 6px}#panelTop{min-width:270px;width:auto}.no-search #panelContent{bottom:10px}}
--------------------------------------------------------------------------------
/build/css/theme/rounded.css:
--------------------------------------------------------------------------------
1 | #panelTools,#panelTop{display:block;left:0;top:0}#panelTools,.esriSimpleSlider,.pageContent,#locateDiv{border-radius:4px}#panelTools{clear:both;min-height:30px;position:relative;width:100%}.panelTool{line-height:26px;margin:2px 0;width:26px}#panelTop{color:#fff;height:75px;overflow:visible;padding:0;position:fixed;width:100%}.esriSimpleSliderTL{border:none;left:0;top:80px}#locateDiv{left:0;position:absolute;top:155px;z-index:10}.noslider #locateDiv{top:80px}#panelContent{right:310px;top:10px}.panelTool{height:26px}.pageBody{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.pageHeader{border-top-left-radius:4px;border-top-right-radius:4px}@media only screen and (min-width:320px) and (max-device-width:480px){#panelContent{bottom:0;left:0;right:0;top:auto!important;width:100%;z-index:99}.pageContent{width:100%}}@media only screen and (min-width:720px){.esriSimpleSliderTL{left:10px!important;top:10px!important}#locateDiv{left:auto;left:10px;top:90px}#panelTools{display:block!important}#panelContent{top:90px}#panelTop{border-radius:4px;left:44px;top:10px;width:auto}.no-search #panelContent{top:10px}}.esriControlsBR{bottom:0;left:4px;position:absolute}.logo-med,.logo-sm{bottom:0;left:0;position:absolute}.esriAttribution{bottom:5px;left:65px;position:absolute}#modal .modal-header{border-top-left-radius:4px;border-top-right-radius:4px}#modal .copy{border-bottom-left-radius:4px;border-bottom-right-radius:4px}
--------------------------------------------------------------------------------
/build/css/theme/sidetools.css:
--------------------------------------------------------------------------------
1 | #panelTools,#locateDiv{position:absolute;top:125px}#panelTools{display:block;line-height:normal;width:30px}#panelTools.labels{top:135px;width:120px}.panelTool.labels{display:block;height:45px;white-space:nowrap}.btnText{display:inline-block}.panelTool{float:none;width:30px}.noslider #panelTools{top:50px}.haslocate #panelTools{top:155px}.noslider.haslocate #panelTools{top:80px}#locateDiv{left:0;z-index:10}.esriRTL #locateDiv{left:unset;right:0}.esriRTL #panelSearch{float:left!important}.esriRTL #panelLogo,.esriRTL #panelText{float:right!important}#panelTitle{border-bottom:none}#panelContent{z-index:0}#panelTop{color:#fff;display:block;height:50px;left:0;overflow:visible;padding:0;position:fixed;top:0;width:100%;z-index:40}#panelContent{right:300px;top:51px}@media only screen and (min-width:320px) and (max-device-width:480px){#panelContent{bottom:0;left:0;right:0;top:auto!important;width:100%;z-index:99}.pageContent{width:100%}}.notools .esriSimpleSliderTL{top:75px}.esriSimpleSliderTL{border:none;left:0;top:50px;z-index:41!important}.esriRTL .esriSimpleSliderTL{left:unset;right:0}.arcgisSearch .searchGroup .searchInput{-webkit-border-radius:0;border-radius:0}.arcgisSearch .searchCollapsed .searchSubmit{border-radius:0}
--------------------------------------------------------------------------------
/build/fonts/tool-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/fonts/tool-icons.eot
--------------------------------------------------------------------------------
/build/fonts/tool-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/fonts/tool-icons.ttf
--------------------------------------------------------------------------------
/build/fonts/tool-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/fonts/tool-icons.woff
--------------------------------------------------------------------------------
/build/images/EsriBluePinCircle26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/EsriBluePinCircle26.png
--------------------------------------------------------------------------------
/build/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/ajax-loader.gif
--------------------------------------------------------------------------------
/build/images/area_measure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/area_measure.png
--------------------------------------------------------------------------------
/build/images/calcite_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/calcite_nav.png
--------------------------------------------------------------------------------
/build/images/clippy.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/build/images/config-themes/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/config-themes/default.png
--------------------------------------------------------------------------------
/build/images/config-themes/menubar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/config-themes/menubar.png
--------------------------------------------------------------------------------
/build/images/config-themes/sidetools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/config-themes/sidetools.png
--------------------------------------------------------------------------------
/build/images/dist_measure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/dist_measure.png
--------------------------------------------------------------------------------
/build/images/dist_point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/dist_point.png
--------------------------------------------------------------------------------
/build/images/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/error.png
--------------------------------------------------------------------------------
/build/images/loading-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/loading-small.png
--------------------------------------------------------------------------------
/build/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/logo.png
--------------------------------------------------------------------------------
/build/images/popup-sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/popup-sprite.png
--------------------------------------------------------------------------------
/build/images/ring.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/ring.png
--------------------------------------------------------------------------------
/build/images/thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/build/images/thumb.png
--------------------------------------------------------------------------------
/build/js/PopupPanel.js:
--------------------------------------------------------------------------------
1 | define(["dojo/_base/declare","dojo/on","dojo/i18n!esri/nls/jsapi","dojo/dom","dojo/dom-class","dojo/dom-style","dojo/dom-construct","dojo/query","dojo/_base/lang","dojo/_base/window","dijit/registry","dijit/focus","dijit/a11y","esri/domUtils","esri/lang","esri/dijit/Popup"],function(t,o,e,p,i,s,u,n,d,a,l,r,h,c,_,f){return t(null,{declaredClass:"application.PopupPanel",constructor:function(t){var o={popup:null,srcNode:null,toolbar:null};d.mixin(this,o,t)},initPopup:function(){o(this.popup,"selection-change",d.hitch(this,this._displayPopupContent)),o(this.popup,"clear-features",d.hitch(this,this._clearPopupSelection)),o(this.popup,"set-features",d.hitch(this,this._displayPopupContent)),p.byId("popupButtonClose").title=e.widgets.popup.NLS_close,p.byId("popupButtonNext").title=e.widgets.popup.NLS_nextFeature,p.byId("popupButtonPrev").title=e.widgets.popup.NLS_prevFeature,o(n(".popupButton"),"click",d.hitch(this,function(t){"popupButtonClose"===t.target.id?(this._clearPopupSelection(),this._displayPopupWindow(!1)):"popupButtonNext"===t.target.id?this.popup.selectNext():"popupButtonPrev"===t.target.id&&this.popup.selectPrevious()}));var t=e.widgets.popup.NLS_zoomTo||"Zoom to",s=u.create("a",{id:"zoomLink",title:t,href:"javascript: void(0);"},"popupFooter");i.add(s,["action"]),o(s,"click",d.hitch(this,this._zoomToFeature))},_zoomToFeature:function(t){this.popup.getSelectedFeature()&&this.popup._zoomToFeature(t)},_displayPopupContent:function(){var t=this.popup.getSelectedFeature();if(t){this.toolbar&&(this.toolbar.closePage(),o.once(this.toolbar,"updateTool",d.hitch(this,function(t){t&&(this._clearPopupSelection(),this._displayPopupWindow(!1))}))),this._displayPopupWindow(!0);var i=l.byId(this.srcNode);i&&i.set("content",t.getContent());var s=e.widgets.popup.NLS_pagingInfo,u=this.popup.features?this.popup.features.length:0,n="";u>1&&(n=_.substitute({index:this.popup.selectedIndex+1,total:u},s)),this._updatePagingControls(),p.byId("popupTitle").innerHTML=n}else this._displayPopupWindow(!1)},_updatePagingControls:function(){var t=n(".popupButton.prev")[0],o=n(".popupButton.next")[0],e=this.popup.selectedIndex,p=this.popup.features?this.popup.features.length:0;p>1?(0===e?i.add(t,"hidden"):i.remove(t,"hidden"),e===p-1?i.add(o,"hidden"):i.remove(o,"hidden")):(i.add(o,"hidden"),i.add(t,"hidden"))},_displayPopupWindow:function(t){n(".panelPopup").forEach(function(o){if(t)c.show(o);else{c.hide(o);var e=p.byId("search_input");e&&r.focus(e)}})},_clearPopupSelection:function(){this.popup.getSelectedFeature()&&this.popup.clearFeatures()}})});
--------------------------------------------------------------------------------
/build/js/PrintConfig.js:
--------------------------------------------------------------------------------
1 | define(["dojo/_base/declare","dojo/Deferred","dojo/promise/all","dojo/_base/lang","dojo/_base/array","esri/arcgis/utils","esri/lang","esri/tasks/PrintTemplate","esri/request"],function(t,i,e,n,r,a,o,s,l){return t(null,{constructor:function(t){n.mixin(this.printConfig,t)},printConfig:{templates:null,layouts:!1,legendLayers:[],printi18n:null,format:"pdf",printTaskUrl:null,layoutOptions:{titleText:null,scalebarUnit:null,legendLayers:[]}},templates:[],legendLayers:[],createPrintOptions:function(){var t=new i;return e([this._buildPrintLayouts(),this._createPrintLegend()]).then(n.hitch(this,function(i){t.resolve({templates:this.templates,legendLayers:this.legendLayers})})),t.promise},_createPrintLegend:function(){var t=new i,e=a.getLegendLayers(this.printConfig.legendLayers);return this.legendLayers=r.map(e,function(t){return{layerId:t.layer.id}}),t.resolve(!0),t.promise},_buildPrintLayouts:function(){var t=new i;if(this.printConfig.templates)this.templates=this.printConfig.templates,r.forEach(this.templates,n.hitch(this,function(t){"MAP_ONLY"===t.layout&&(t.exportOptions={width:670,height:500,dpi:96}),t.layoutOptions=this.printConfig.layoutOptions})),t.resolve(!0);else if(this.printConfig.layouts)l({url:this.printConfig.printTaskUrl,content:{f:"json"},callbackParamName:"callback"}).then(n.hitch(this,function(i){var e,a,o;if(e=r.filter(i.parameters,function(t,i){return"Layout_Template"===t.name}),0===e.length)return void console.log('print service parameters name for templates must be "Layout_Template"');if(a=e[0].choiceList,(o=r.indexOf(a,"MAP_ONLY"))>-1){var l=a.splice(o,o+1)[0];a.push(l)}this.templates=r.map(a,n.hitch(this,function(t){var i=new s;return i.layout=i.label=t,i.format=this.printConfig.format,i.layoutOptions=this.printConfig.layoutOptions,i})),t.resolve(!0)}));else{var e=new s;e.layout="Letter ANSI A Landscape",e.layoutOptions=this.printConfig.layoutOptions,e.format=this.printConfig.format,e.label=this.printConfig.printi18n.layouts.label1+" ( "+this.printConfig.format+" )";var a=new s;a.layout="Letter ANSI A Portrait",a.layoutOptions=this.printConfig.layoutOptions,a.format=this.printConfig.format,a.label=this.printConfig.printi18n.layouts.label2+" ( "+this.printConfig.format+" )";var o=new s;o.layout="Letter ANSI A Landscape",o.layoutOptions=this.printConfig.layoutOptions,o.format="png32",o.label=this.printConfig.printi18n.layouts.label3+" ( image )";var p=new s;p.layout="Letter ANSI A Portrait",p.layoutOptions=this.printConfig.layoutOptions,p.format="png32",p.label=this.printConfig.printi18n.layouts.label4+" ( image )",this.templates=[e,a,o,p],t.resolve(!0)}return t.promise}})});
--------------------------------------------------------------------------------
/build/js/dijit/templates/ShareDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
15 |
16 |
17 |
19 |
20 |
23 |
24 |
25 |
27 |
28 |
${_i18n.widgets.ShareDialog.size}
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/build/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 view",
10 | size: "Size (width/height):",
11 | facebookTooltip: "Facebook",
12 | twitterTooltip: "Twitter",
13 | gplusTooltip: "Google Plus",
14 | emailTooltip: "Email",
15 | copy: "Copy short url to clipboard",
16 | copied: "Copied"
17 | }
18 | }
19 | }),
20 | "ar": 1,
21 | "bs": 1,
22 | "ca": 1,
23 | "cs": 1,
24 | "da": 1,
25 | "de": 1,
26 | "el": 1,
27 | "es": 1,
28 | "et": 1,
29 | "fi": 1,
30 | "fr": 1,
31 | "he": 1,
32 | "hr": 1,
33 | "hu": 1,
34 | "id": 1,
35 | "it": 1,
36 | "ja": 1,
37 | "ko": 1,
38 | "lt": 1,
39 | "lv": 1,
40 | "nl": 1,
41 | "nb": 1,
42 | "pl": 1,
43 | "pt-br": 1,
44 | "pt-pt": 1,
45 | "ro": 1,
46 | "ru": 1,
47 | "sl": 1,
48 | "sr": 1,
49 | "sv": 1,
50 | "th": 1,
51 | "tr": 1,
52 | "uk": 1,
53 | "vi": 1,
54 | "zh-cn": 1,
55 | "zh-hk": 1,
56 | "zh-tw": 1
57 | });
58 |
--------------------------------------------------------------------------------
/build/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": "فيس بوك",
11 | "twitterTooltip": "تويتر",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "البريد الإلكتروني",
14 | "copy": "نسخ عنوان url قصير إلى الحافظة",
15 | "copied": "تم النسخ"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/ar/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "يتعذر إنشاء الخريطة",
20 | "licenseError": {
21 | "message": "حسابك غير مرخص لاستخدام التطبيقات القابلة للتكوين غير العامة. رجاءً اطلب من مسئولي المؤسسة تعيينك كنوع مستخدم يتضمن التطبيقات الأساسية أو ترخيص التطبيقات الأساسية المضافة.",
22 | "title": "غير مرخص"
23 | },
24 | "overviewDetails": "تعرض خريطة النظرة العامة نطاق الخريطة الحالي من خلال سياق منطقة أكبر."
25 | },
26 | "nav": {
27 | "next": "التالي",
28 | "previous": "السابق",
29 | "close": "إغلاق"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "تعذر العثور على الموقع",
34 | "notWhatYouWanted": "هل هذا ليس ما تحتاجه؟",
35 | "selectAnother": "تحديد موقع أخر",
36 | "currentLocation": "الموقع الحالي",
37 | "title": "الموقع"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "أفقي",
42 | "label2": "عمودي",
43 | "label3": "أفقي",
44 | "label4": "عمودي"
45 | },
46 | "legend": "إضافة وسيلة الإيضاح إلى الناتج",
47 | "title": "عنوان",
48 | "titlePrompt": "إضافة عنوان مخصص"
49 | },
50 | "share": {
51 | "extent": "استخدم نطاق الخريطة الحالي",
52 | "label": "مشاركة هذه الخريطة",
53 | "link": "رابط الخريطة",
54 | "facebook": "فيس بوك",
55 | "twitter": "تويتر"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "النطاق الافتراضي",
60 | "locate": "العثور على الموقع الخاص بي",
61 | "legend": "وسيلة إيضاح",
62 | "bookmarks": "إشارات مرجعية",
63 | "layers": "طبقات",
64 | "basemap": "معرض خريطة الأساس",
65 | "overview": "خريطة النظرة العامة",
66 | "measure": "قياس",
67 | "edit": "تحرير",
68 | "time": "زمن",
69 | "print": "طباعة",
70 | "details": "تفاصيل",
71 | "share": "مشاركة"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 prikaz karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki url u međuspremnik",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/bs/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nije moguće stvoriti kartu",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutačni obuhvat karte unutar konteksta većeg područja."
25 | },
26 | "nav": {
27 | "next": "Sljedeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nije pronađena lokacija",
34 | "notWhatYouWanted": "Niste ovo tražili?",
35 | "selectAnother": "Odaberi drugu lokaciju",
36 | "currentLocation": "Trenutačna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Pejzaž",
42 | "label2": "Okomito",
43 | "label3": "Pejzaž",
44 | "label4": "Okomito"
45 | },
46 | "legend": "Dodaj legendu u izlaz",
47 | "title": "Naziv",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Upotrijebi trenutačni obuhvat karte",
52 | "label": "Podijeli kartu",
53 | "link": "Poveznica karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zadani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Knjižne oznake",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija kartografskih podloga",
65 | "overview": "Pregledna karta",
66 | "measure": "Izmjeri",
67 | "edit": "Uredi",
68 | "time": "Vrijeme",
69 | "print": "Ispis",
70 | "details": "Pojedinosti",
71 | "share": "Odabrani izgled"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 la visualització del mapa actual",
9 | "size": "Mida (amplada/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correu electrònic",
14 | "copy": "Copia l'adreça URL curta al porta-retalls",
15 | "copied": "S'ha copiat"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/cs/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Sdílet",
5 | "heading": "Sdílejte tuto mapu",
6 | "url": "Odkaz na mapu",
7 | "embed": "Vložit mapu",
8 | "extent": "Sdílet aktuální zobrazení mapy",
9 | "size": "Velikost (šířka/výška):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Zkopírovat krátkou URL do schránky",
15 | "copied": "Zkopírováno"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/cs/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nelze vytvořit mapu",
20 | "licenseError": {
21 | "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í.",
22 | "title": "Chybí licence"
23 | },
24 | "overviewDetails": "Přehledová mapa zobrazuje aktuální rozsah mapy v kontextu větší oblasti."
25 | },
26 | "nav": {
27 | "next": "Další",
28 | "previous": "Předchozí",
29 | "close": "Zavřít"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Umístění nebylo nalezeno.",
34 | "notWhatYouWanted": "Nenašli jste, co jste hledali?",
35 | "selectAnother": "Vybrat jiné umístění",
36 | "currentLocation": "Aktuální umístění",
37 | "title": "Umístění"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Na šířku",
42 | "label2": "Na výšku",
43 | "label3": "Na šířku",
44 | "label4": "Na výšku"
45 | },
46 | "legend": "Přidat legendu do výstupu",
47 | "title": "Název",
48 | "titlePrompt": "Přidat vlastní název"
49 | },
50 | "share": {
51 | "extent": "Použít aktuální rozsah mapy",
52 | "label": "Sdílejte tuto mapu",
53 | "link": "Odkaz na mapu",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Výchozí rozsah",
60 | "locate": "Najdi moji polohu",
61 | "legend": "Legenda",
62 | "bookmarks": "Záložky",
63 | "layers": "Vrstvy",
64 | "basemap": "Galerie podkladových map",
65 | "overview": "Přehledová mapa",
66 | "measure": "Měření",
67 | "edit": "Upravit",
68 | "time": "Čas",
69 | "print": "Tisk",
70 | "details": "Podrobnosti",
71 | "share": "Sdílet"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/js/nls/da/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Opdatér",
5 | "heading": "Del dette kort",
6 | "url": "Kort-link",
7 | "embed": "Integrér kort",
8 | "extent": "Del den aktuelle kortvisning",
9 | "size": "Størrelse (bredde/højde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Kopiér kort url til Udklipsholder",
15 | "copied": "Kopieret"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/da/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kan ikke oprette kort",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ikke licenseret"
23 | },
24 | "overviewDetails": "Oversigtskort viser kortets nuværende udstrækning i et større områdes kontekst."
25 | },
26 | "nav": {
27 | "next": "Næste",
28 | "previous": "Forrige",
29 | "close": "Luk"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Placeringen blev ikke fundet",
34 | "notWhatYouWanted": "Var det ikke det, du ville?",
35 | "selectAnother": "Vælg et andet sted",
36 | "currentLocation": "Aktuel position",
37 | "title": "Position"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "På langs",
42 | "label2": "På højkant",
43 | "label3": "På langs",
44 | "label4": "På højkant"
45 | },
46 | "legend": "Føj signaturforklaring til output",
47 | "title": "Titel",
48 | "titlePrompt": "Tilføj brugerdefineret titel"
49 | },
50 | "share": {
51 | "extent": "Gem aktuelt kortområde",
52 | "label": "Del dette kort",
53 | "link": "Kort-link",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standardudstrækning",
60 | "locate": "Find min placering",
61 | "legend": "Signaturforklaring",
62 | "bookmarks": "Bogmærker",
63 | "layers": "Lag",
64 | "basemap": "Baggrundskortgalleri",
65 | "overview": "Oversigtskort",
66 | "measure": "Mål",
67 | "edit": "Redigér",
68 | "time": "Tid",
69 | "print": "Udskriv",
70 | "details": "Oplysninger",
71 | "share": "Opdatér"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 Kartenansicht freigeben",
9 | "size": "Größe (Breite/Höhe):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-Mail",
14 | "copy": "Kurz-URL in die Zwischenablage kopieren",
15 | "copied": "Kopiert"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "Αντιγραφή σύντομου url στο πρόχειρο",
15 | "copied": "Αντιγράφηκε"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 vista de mapa actual",
9 | "size": "Tamaño (ancho/alto):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correo Electrónico",
14 | "copy": "Copiar dirección URL corta en el portapapeles",
15 | "copied": "Copiada"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 praegust kaardivaadet",
9 | "size": "Suurus (laius/kõrgus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Kopeeri lühike URL lõikelauale",
15 | "copied": "Kopeeritud"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/et/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kaarti ei saa luua",
20 | "licenseError": {
21 | "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.",
22 | "title": "Litsents puudub"
23 | },
24 | "overviewDetails": "Ülevaatekaart kuvab kaardi praeguse kuvaulatuse suurema ala kontekstis."
25 | },
26 | "nav": {
27 | "next": "Järgmine",
28 | "previous": "Eelmine",
29 | "close": "Sulge"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Asukohta ei leitud",
34 | "notWhatYouWanted": "Ei ole see, mida soovisite?",
35 | "selectAnother": "Vali muu asukoht",
36 | "currentLocation": "Praegune asukoht",
37 | "title": "Asukoht"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Horisontaalpaigutus",
42 | "label2": "Vertikaalpaigutus",
43 | "label3": "Horisontaalpaigutus",
44 | "label4": "Vertikaalpaigutus"
45 | },
46 | "legend": "Lisa väljundile legend",
47 | "title": "Pealkiri",
48 | "titlePrompt": "Lisa kohandatud pealkiri"
49 | },
50 | "share": {
51 | "extent": "Kasuta praeguse kaardi ulatust",
52 | "label": "Jaga seda kaarti",
53 | "link": "Kaardi link",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Vaikimisi kuvaulatus",
60 | "locate": "Leia minu asukoht",
61 | "legend": "Legendiga kaart",
62 | "bookmarks": "Järjehoidjad",
63 | "layers": "Kihid",
64 | "basemap": "Aluskaartide galerii",
65 | "overview": "Ülevaatekaart",
66 | "measure": "Mõõda",
67 | "edit": "Muuda",
68 | "time": "Aeg",
69 | "print": "Prindi",
70 | "details": "Detailid",
71 | "share": "Jaga"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 nykyinen karttanäkymä",
9 | "size": "Koko (leveys/korkeus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Sähköposti",
14 | "copy": "Kopioi lyhyt URL leikepöydälle",
15 | "copied": "Kopioitu"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/fi/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Karttaa ei voi luoda",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ei lisenssiä"
23 | },
24 | "overviewDetails": "Yleiskatsauskartta näyttää kartan nykyisen laajuuden suuremman alueen kontekstissa."
25 | },
26 | "nav": {
27 | "next": "Seuraava",
28 | "previous": "Edellinen",
29 | "close": "Sulje"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Sijaintia ei löytynyt",
34 | "notWhatYouWanted": "Etkö löytänyt etsimääsi?",
35 | "selectAnother": "Valitse toinen sijainti",
36 | "currentLocation": "Nykyinen sijainti",
37 | "title": "Sijainti"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Maisema",
42 | "label2": "Pysty",
43 | "label3": "Maisema",
44 | "label4": "Pysty"
45 | },
46 | "legend": "Lisää selite tulokseen",
47 | "title": "Otsikko",
48 | "titlePrompt": "Lisää mukautettu otsikko"
49 | },
50 | "share": {
51 | "extent": "Käytä nykyisen kartan laajuutta.",
52 | "label": "Jaa tämä kartta",
53 | "link": "Karttalinkki",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Oletuslaajuus",
60 | "locate": "Etsi sijaintini",
61 | "legend": "Selite",
62 | "bookmarks": "Kirjanmerkit",
63 | "layers": "Karttatasot",
64 | "basemap": "Taustakarttagalleria",
65 | "overview": "Yleiskatsauskartta",
66 | "measure": "Mittaus",
67 | "edit": "Muokkaa",
68 | "time": "Kellonaika",
69 | "print": "Tulosta",
70 | "details": "Yksityiskohdat",
71 | "share": "Jaa"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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": "Incorporer la carte",
8 | "extent": "Partager la vue cartographique courante",
9 | "size": "Taille (largeur/hauteur):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Courrier électronique",
14 | "copy": "Copier une URL courte dans le Presse-papiers",
15 | "copied": "Copiée"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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": "דוא\"ל",
14 | "copy": "העתק כתובת URL קצרה ללוח",
15 | "copied": "הועתק"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/he/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "לא ניתן ליצור מפה",
20 | "licenseError": {
21 | "message": "החשבון שלך אינו מורשה להשתמש באפליקציות הניתנות להגדרה שאינן ציבוריות. בקש ממנהל המערכת בארגון שלך להקצות לך סוג משתמש שכולל את Essential Apps או רישיון הרחבה ל-Essential Apps.",
22 | "title": "ללא רישיון"
23 | },
24 | "overviewDetails": "מפת התמצאות מציגה את התיחום הנוכחי של מפה בהקשר של אזור גדול יותר."
25 | },
26 | "nav": {
27 | "next": "הבא",
28 | "previous": "הקודם",
29 | "close": "סגור"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "לא ניתן למצוא מיקום",
34 | "notWhatYouWanted": "לא מה שחיפשת?",
35 | "selectAnother": "בחר מיקום אחר",
36 | "currentLocation": "מיקום נוכחי",
37 | "title": "מיקום"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "לרוחב",
42 | "label2": "לאורך",
43 | "label3": "לרוחב",
44 | "label4": "לאורך"
45 | },
46 | "legend": "הוסף מקרא לפלט",
47 | "title": "כותרת",
48 | "titlePrompt": "הוסף כותרת מותאמת אישית"
49 | },
50 | "share": {
51 | "extent": "השתמש בתיחום המפה הנוכחי",
52 | "label": "שתף מפה זו",
53 | "link": "קישור למפה",
54 | "facebook": "פייסבוק",
55 | "twitter": "טוויטר"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "תיחום ברירת המחדל",
60 | "locate": "מצא את המיקום שלי",
61 | "legend": "מקרא",
62 | "bookmarks": "סימניות",
63 | "layers": "שכבות",
64 | "basemap": "גלרית מפות בסיס",
65 | "overview": "מפת התמצאות",
66 | "measure": "מדידה",
67 | "edit": "ערוך",
68 | "time": "זמן",
69 | "print": "הדפס",
70 | "details": "פרטים",
71 | "share": "שתף"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/js/nls/hi/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 | "copy": "लघु url क्लिपबोर्ड पर कॉपी करें",
15 | "copied": "प्रतिलिपि बन गई है"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/hi/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "मानचित्र बनाने में अक्षम",
20 | "licenseError": {
21 | "message": "आपके खाते को ऐसे कॉन्फ़िगर करने योग्य ऐप्स का उपयोग करने के लिए लाइसेंस प्राप्त नहीं है जो गैर-सार्वजनिक हैं। कृपया अपने संगठन व्यवस्थापक से आपको एक ऐसा उपयोगकर्ता प्रकार असाइन करने के लिए कहें जिसमें आवश्यक ऐप्स या एड-ऑन आवश्यक ऐप्स लाइसेंस शामिल है।",
22 | "title": "लाइसेंस प्राप्त नहीं है"
23 | },
24 | "overviewDetails": "संक्षिप्त मानचित्र बड़े क्षेत्र के संदर्भ में मानचित्र की वर्तमान सीमा दर्शाता है।"
25 | },
26 | "nav": {
27 | "next": "अगला",
28 | "previous": "पिछला",
29 | "close": "बंद करें"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "स्थान नहीं मिल सका",
34 | "notWhatYouWanted": "वह नहीं है जो आपने चाहा?",
35 | "selectAnother": "अन्य स्थान चुनें",
36 | "currentLocation": "वर्तमान स्थान",
37 | "title": "स्थान"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "लैंडस्केप",
42 | "label2": "पोर्ट्रेट",
43 | "label3": "लैंडस्केप",
44 | "label4": "पोर्ट्रेट"
45 | },
46 | "legend": "आउटपुट में लीजेंड जोड़ें",
47 | "title": "शीर्षक",
48 | "titlePrompt": "कस्टम शीर्षक जोड़ें"
49 | },
50 | "share": {
51 | "extent": "वर्तमान मानचित्र सीमा का प्रयोग करें",
52 | "label": "इस मानचित्र को साझा करें",
53 | "link": "मानचित्र लिंक",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "डिफ़ॉल्ट सीमा",
60 | "locate": "मेरे स्थान का पता लगाएं",
61 | "legend": "लीजेंड",
62 | "bookmarks": "बुकमार्क्स",
63 | "layers": "लेयर्स",
64 | "basemap": "बेसमैप गैलरी",
65 | "overview": "संक्षिप्त मानचित्र",
66 | "measure": "माप",
67 | "edit": "संपादित करें",
68 | "time": "समय",
69 | "print": "प्रिंट करें",
70 | "details": "विवरण",
71 | "share": "साझा करें"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 prikaz karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki url u međuspremnik",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/hr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nije moguće stvoriti kartu",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutačni obuhvat karte unutar konteksta većeg područja."
25 | },
26 | "nav": {
27 | "next": "Sljedeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nije pronađena lokacija",
34 | "notWhatYouWanted": "Niste ovo tražili?",
35 | "selectAnother": "Odaberi drugu lokaciju",
36 | "currentLocation": "Trenutačna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Pejzaž",
42 | "label2": "Okomito",
43 | "label3": "Pejzaž",
44 | "label4": "Okomito"
45 | },
46 | "legend": "Dodaj legendu u izlaz",
47 | "title": "Naziv",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Upotrijebi trenutačni obuhvat karte",
52 | "label": "Podijeli kartu",
53 | "link": "Poveznica karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zadani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Knjižne oznake",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija kartografskih podloga",
65 | "overview": "Pregledna karta",
66 | "measure": "Izmjeri",
67 | "edit": "Uredi",
68 | "time": "Vrijeme",
69 | "print": "Ispis",
70 | "details": "Pojedinosti",
71 | "share": "Odabrani izgled"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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épnézet 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 | "copy": "Rövid URL másolása a vágólapra",
15 | "copied": "Másolt"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 tampilan peta saat ini",
9 | "size": "Ukuran (lebar/tinggi):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email",
14 | "copy": "Salin url pendek ke clipboard",
15 | "copied": "Tersalin"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/id/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Tidak dapat membuat peta",
20 | "licenseError": {
21 | "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.",
22 | "title": "Tidak Dilisensikan"
23 | },
24 | "overviewDetails": "Inset peta menampilkan jangkauan peta saat ini dalam konteks area yang lebih besar."
25 | },
26 | "nav": {
27 | "next": "Berikutnya",
28 | "previous": "Sebelumnya",
29 | "close": "Tutup"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Lokasi tidak dapat ditemukan",
34 | "notWhatYouWanted": "Bukan yang Anda inginkan?",
35 | "selectAnother": "Pilih lokasi lain",
36 | "currentLocation": "Lokasi Saat ini",
37 | "title": "Lokasi"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Lanskap",
42 | "label2": "Potret",
43 | "label3": "Lanskap",
44 | "label4": "Potret"
45 | },
46 | "legend": "Tambah legenda ke output",
47 | "title": "Judul",
48 | "titlePrompt": "Tambah judul kustom"
49 | },
50 | "share": {
51 | "extent": "Gunakan jangkauan peta saat ini",
52 | "label": "Bagikan peta ini",
53 | "link": "Tautan Peta",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Jangkauan default",
60 | "locate": "Temukan lokasi saya",
61 | "legend": "Legenda",
62 | "bookmarks": "Penanda Lokasi",
63 | "layers": "Layer",
64 | "basemap": "Galeri peta dasar",
65 | "overview": "Inset peta",
66 | "measure": "Ukur",
67 | "edit": "Edit",
68 | "time": "Waktu",
69 | "print": "Cetak",
70 | "details": "Detail",
71 | "share": "Bagikan"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 vista mappa corrente",
9 | "size": "Dimensioni (larghezza/altezza):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copia URL breve negli Appunti",
15 | "copied": "Copiato"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "短縮 URL をクリップボードにコピー",
15 | "copied": "コピーしました"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/ja/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "マップを作成できません",
20 | "licenseError": {
21 | "message": "パブリックでないテンプレートを使用するためのライセンスがアカウントに付与されていません。 組織の管理者に Essential Apps またはアドオン Essential Apps ライセンスを含むユーザー タイプを割り当てるよう依頼してください。",
22 | "title": "ライセンスがありません。"
23 | },
24 | "overviewDetails": "概観図は、より大きなエリア内でマップの現在の範囲を表示します。"
25 | },
26 | "nav": {
27 | "next": "次へ",
28 | "previous": "前へ",
29 | "close": "閉じる"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "場所が見つかりませんでした",
34 | "notWhatYouWanted": "他の住所の候補を表示しますか?",
35 | "selectAnother": "他の候補を選択",
36 | "currentLocation": "現在の位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "横",
42 | "label2": "縦",
43 | "label3": "横",
44 | "label4": "縦"
45 | },
46 | "legend": "凡例を出力に追加",
47 | "title": "タイトル",
48 | "titlePrompt": "カスタム タイトルの追加"
49 | },
50 | "share": {
51 | "extent": "現在のマップ範囲を使用",
52 | "label": "このマップを共有",
53 | "link": "マップ リンク",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "デフォルトの表示範囲",
60 | "locate": "現在の場所を検索",
61 | "legend": "凡例",
62 | "bookmarks": "ブックマーク",
63 | "layers": "レイヤー",
64 | "basemap": "ベースマップ ギャラリー",
65 | "overview": "概観図",
66 | "measure": "計測",
67 | "edit": "編集",
68 | "time": "時間",
69 | "print": "印刷",
70 | "details": "詳細",
71 | "share": "共有"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "간단한 URL을 클립보드에 복사",
15 | "copied": "복사됨"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/ko/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "맵을 생성할 수 없음",
20 | "licenseError": {
21 | "message": "귀하의 계정에는 공개 상태가 아닌 구성 설정 앱을 사용할 수 있는 라이선스가 없습니다. 필수 앱 또는 애드온 필수 앱 라이선스가 포함된 사용자 유형을 업무 지시하려면 기관 관리자에게 문의하세요.",
22 | "title": "라이선스가 없음"
23 | },
24 | "overviewDetails": "오버뷰 맵은 더 큰 맵 영역 안에서의 현재 범위를 보여 줍니다."
25 | },
26 | "nav": {
27 | "next": "다음",
28 | "previous": "이전",
29 | "close": "닫기"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "위치를 찾을 수 없습니다.",
34 | "notWhatYouWanted": "원하는 위치가 아닙니까?",
35 | "selectAnother": "다른 위치 선택",
36 | "currentLocation": "현재 위치",
37 | "title": "위치"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "가로",
42 | "label2": "세로",
43 | "label3": "가로",
44 | "label4": "세로"
45 | },
46 | "legend": "범례를 결과에 추가",
47 | "title": "제목",
48 | "titlePrompt": "사용자 정의 제목 추가"
49 | },
50 | "share": {
51 | "extent": "현재 맵 범위 사용",
52 | "label": "이 맵 공유",
53 | "link": "맵 링크",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "기본 범위",
60 | "locate": "내 위치 찾기",
61 | "legend": "범례",
62 | "bookmarks": "북마크",
63 | "layers": "레이어",
64 | "basemap": "베이스맵 갤러리",
65 | "overview": "오버뷰 맵",
66 | "measure": "측정",
67 | "edit": "편집",
68 | "time": "시간",
69 | "print": "인쇄",
70 | "details": "세부정보",
71 | "share": "공유"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 vaizdą",
9 | "size": "Dydis (plotis / aukštis):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "El. paštas",
14 | "copy": "Nukopijuoti URL į mainų sritį",
15 | "copied": "Nukopijuota"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/lt/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Žemėlapio sukurti nepavyko",
20 | "licenseError": {
21 | "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ą.",
22 | "title": "Nelicencijuota"
23 | },
24 | "overviewDetails": "Apžvalgos žemėlapyje rodoma esama žemėlapio aprėptis."
25 | },
26 | "nav": {
27 | "next": "Kitas",
28 | "previous": "Ankstesnis",
29 | "close": "Uždaryti"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Vietos surasti nepavyko",
34 | "notWhatYouWanted": "Ne tai, ko norėjote?",
35 | "selectAnother": "Pasirinkite kitą vietą",
36 | "currentLocation": "Esama vieta",
37 | "title": "Vieta"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Horizontalus",
42 | "label2": "Vertikalus",
43 | "label3": "Horizontalus",
44 | "label4": "Vertikalus"
45 | },
46 | "legend": "Įtraukti legendą į išvestį",
47 | "title": "Pavadinimas",
48 | "titlePrompt": "Pridėti adaptuotą pavadinimą"
49 | },
50 | "share": {
51 | "extent": "Naudoti esamą žemėlapio aprėptį",
52 | "label": "Bendrinti šį žemėlapį",
53 | "link": "Žemėlapio nuoroda",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Numatytoji aprėptis",
60 | "locate": "Rasti mano vietą",
61 | "legend": "Legenda",
62 | "bookmarks": "Žymos",
63 | "layers": "Sluoksniai",
64 | "basemap": "Pagrindo žemėlapių galerija",
65 | "overview": "Apžvalga",
66 | "measure": "Matuoti",
67 | "edit": "Redaguoti",
68 | "time": "Laikas",
69 | "print": "Spausdinti",
70 | "details": "Išsamiau",
71 | "share": "Bendrinti"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/js/nls/lv/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Koplietot",
5 | "heading": "Koplietot šo karti",
6 | "url": "Kartes saite",
7 | "embed": "Iedarināt karti",
8 | "extent": "Koplietot pašreizējo kartes skatu",
9 | "size": "Izmērs (platums/augstums):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pasts",
14 | "copy": "Kopēt īso url starpliktuvē",
15 | "copied": "Nokopēts"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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 kartvisning",
9 | "size": "Størrelse (bredde/høyde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post",
14 | "copy": "Kopier kort URL til utklippstavlen",
15 | "copied": "Kopiert"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/nb/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kan ikke opprette kart",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ikke lisensiert"
23 | },
24 | "overviewDetails": "Oversiktskart viser den gjeldende utstrekningen for kartet innenfor konteksten av et større område."
25 | },
26 | "nav": {
27 | "next": "Neste",
28 | "previous": "Forrige",
29 | "close": "Ja"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Finner ikke lokasjonen",
34 | "notWhatYouWanted": "Ikke det du lette etter?",
35 | "selectAnother": "Velg en annen lokasjon",
36 | "currentLocation": "Gjeldende lokasjon",
37 | "title": "Lokasjon"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Landskap",
42 | "label2": "Stående",
43 | "label3": "Landskap",
44 | "label4": "Stående"
45 | },
46 | "legend": "Legg til kartforklaring i resultatet",
47 | "title": "Tittel",
48 | "titlePrompt": "Legg til egendefinert tittel"
49 | },
50 | "share": {
51 | "extent": "Bruk gjeldende kartutstrekning",
52 | "label": "Del dette kartet",
53 | "link": "Kartkobling",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standard utstrekning",
60 | "locate": "Finn min lokasjon",
61 | "legend": "Tegnforklaring",
62 | "bookmarks": "Bokmerker",
63 | "layers": "Lag",
64 | "basemap": "Bakgrunnskartgalleri",
65 | "overview": "Oversiktskart",
66 | "measure": "Mål",
67 | "edit": "Rediger",
68 | "time": "Tid",
69 | "print": "Skriv ut",
70 | "details": "Detaljer",
71 | "share": "Dele"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 kaartweergave delen",
9 | "size": "Grootte (breedte/hoogte):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Korte URL naar klembord kopiëren",
15 | "copied": "Gekopieerd"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/nl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kaart kan niet gemaakt worden",
20 | "licenseError": {
21 | "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.",
22 | "title": "Geen licentie"
23 | },
24 | "overviewDetails": "De Overview map toont de huidige extent van de kaart binnen de context van een groter gebied."
25 | },
26 | "nav": {
27 | "next": "Volgende",
28 | "previous": "Vorige",
29 | "close": "Sluiten"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Locatie is niet gevonden",
34 | "notWhatYouWanted": "Niet wat u wilde?",
35 | "selectAnother": "Een andere locatie selecteren",
36 | "currentLocation": "Huidige locatie",
37 | "title": "Locatie"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Liggend",
42 | "label2": "Staand",
43 | "label3": "Liggend",
44 | "label4": "Staand"
45 | },
46 | "legend": "Legenda toevoegen aan uitvoer",
47 | "title": "Titel",
48 | "titlePrompt": "Aangepaste titel toevoegen"
49 | },
50 | "share": {
51 | "extent": "Huidig kaartextent gebruiken",
52 | "label": "Deze kaart delen",
53 | "link": "Kaartkoppeling",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standaardextent",
60 | "locate": "Mijn locatie vinden",
61 | "legend": "Legenda",
62 | "bookmarks": "Bladwijzers",
63 | "layers": "Kaartlagen",
64 | "basemap": "basiskaartgalerij",
65 | "overview": "Overzichtskaart",
66 | "measure": "Meten",
67 | "edit": "Bewerken",
68 | "time": "Tijd",
69 | "print": "Afdrukken",
70 | "details": "Details",
71 | "share": "Delen"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/js/nls/pl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Udostępnianie",
5 | "heading": "Udostępnij tę mapę",
6 | "url": "Łącze do mapy",
7 | "embed": "Osadź mapę",
8 | "extent": "Udostępnij bieżący widok mapy",
9 | "size": "Rozmiar (szerokość/wysokość):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Adres e-mail",
14 | "copy": "Kopiuj skrócony adres URL do schowka",
15 | "copied": "Skopiowane"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/pl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nie można utworzyć mapy",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nie licencjonowano"
23 | },
24 | "overviewDetails": "Mapa przeglądowa wyświetla aktualny zasięg mapy w kontekście większego obszaru."
25 | },
26 | "nav": {
27 | "next": "Dalej",
28 | "previous": "Powrót",
29 | "close": "Zamknij"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nie można odnaleźć lokalizacji",
34 | "notWhatYouWanted": "Oczekiwano innej lokalizacji?",
35 | "selectAnother": "Wybierz inną lokalizację",
36 | "currentLocation": "Bieżąca lokalizacja",
37 | "title": "Lokalizacja"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Krajobraz",
42 | "label2": "Pionowo",
43 | "label3": "Krajobraz",
44 | "label4": "Pionowo"
45 | },
46 | "legend": "Dodaj legendę do danych wynikowych",
47 | "title": "Tytuł",
48 | "titlePrompt": "Dodaj niestandardowy tytuł"
49 | },
50 | "share": {
51 | "extent": "Użyj zasięgu bieżącej mapy",
52 | "label": "Udostępnij tę mapę",
53 | "link": "Łącze do mapy",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zasięg domyślny",
60 | "locate": "Znajdź moją lokalizację",
61 | "legend": "Legenda",
62 | "bookmarks": "Zakładki",
63 | "layers": "Warstwy",
64 | "basemap": "Galeria map bazowych",
65 | "overview": "Mapa przeglądowa",
66 | "measure": "Zmierz",
67 | "edit": "Edytuj",
68 | "time": "Czas",
69 | "print": "Drukuj",
70 | "details": "Szczegóły",
71 | "share": "Udostępnianie"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 visualização de mapa atual",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copiar URL curta na área de transferência",
15 | "copied": "Copiado"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/pt-pt/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partilhar",
5 | "heading": "Partilhar este mapa",
6 | "url": "Ligação do Mapa",
7 | "embed": "Incorporar Mapa",
8 | "extent": "Partilhar atual vista de mapa",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correio Eletrónico",
14 | "copy": "Copiar url curto para a área de transferência",
15 | "copied": "Copiado"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/pt-pt/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Não foi possível criar mapa",
20 | "licenseError": {
21 | "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.",
22 | "title": "Não licenciado"
23 | },
24 | "overviewDetails": "O mapa de vista geral exibe a extensão atual do mapa no contexto de uma área mais alargada."
25 | },
26 | "nav": {
27 | "next": "Seguinte",
28 | "previous": "Anterior",
29 | "close": "Fechar"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "A localização não pode ser encontrada",
34 | "notWhatYouWanted": "Não é o que pretendia?",
35 | "selectAnother": "Selecionar outro local",
36 | "currentLocation": "Localização Atual",
37 | "title": "Localização"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Paisagem",
42 | "label2": "Retrato",
43 | "label3": "Paisagem",
44 | "label4": "Retrato"
45 | },
46 | "legend": "Adicionar legenda à saída",
47 | "title": "Título",
48 | "titlePrompt": "Adicionar título personalizado"
49 | },
50 | "share": {
51 | "extent": "Utilizar extensão de mapa atual",
52 | "label": "Partilhar este mapa",
53 | "link": "Ligação do Mapa",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Extensão padrão",
60 | "locate": "Encontrar o meu local",
61 | "legend": "Legenda",
62 | "bookmarks": "Marcadores",
63 | "layers": "Camadas",
64 | "basemap": "Galeria de mapas base",
65 | "overview": "Vista Geral de Mapa",
66 | "measure": "Medir",
67 | "edit": "Editar",
68 | "time": "Tempo",
69 | "print": "Imprimir",
70 | "details": "Detalhes",
71 | "share": "Partilhar"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/js/nls/ro/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partajare",
5 | "heading": "Partajare această hartă",
6 | "url": "Link către hartă",
7 | "embed": "Încorporare hartă",
8 | "extent": "Partajare vizualizare curentă de hartă",
9 | "size": "Dimensiune (lăţime/înălţime):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copiere URL scurt în clipboard",
15 | "copied": "Copiat"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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": "Электронная почта",
14 | "copy": "Копировать краткий url-адрес в буфер обмена",
15 | "copied": "Скопировано"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/sl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Deli",
5 | "heading": "Deli to karto",
6 | "url": "Povezava do karte",
7 | "embed": "Vdelana karta",
8 | "extent": "Deli trenutni pogled karte",
9 | "size": "Velikost (širina/višina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google+",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki URL v odložišče",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/sl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Karte ni mogoče ustvariti",
20 | "licenseError": {
21 | "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.",
22 | "title": "Brez licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutni obseg karte znotraj konteksta večjega območja."
25 | },
26 | "nav": {
27 | "next": "Naslednji",
28 | "previous": "Prejšnji",
29 | "close": "Zapri"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Lokacije ni bilo mogoče najti",
34 | "notWhatYouWanted": "Ni tisto, kar ste želeli?",
35 | "selectAnother": "Izberite drugo lokacijo",
36 | "currentLocation": "Trenutna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Ležeče",
42 | "label2": "Pokončno",
43 | "label3": "Ležeče",
44 | "label4": "Pokončno"
45 | },
46 | "legend": "Dodaj legendo k izpisu",
47 | "title": "Ime",
48 | "titlePrompt": "Dodaj ime po meri"
49 | },
50 | "share": {
51 | "extent": "Uporabi trenutni obseg karte",
52 | "label": "Deli karto",
53 | "link": "Povezava karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Privzeti obseg",
60 | "locate": "Najdi mojo lokacijo",
61 | "legend": "Legenda",
62 | "bookmarks": "Zaznamki",
63 | "layers": "Sloji",
64 | "basemap": "Galerija temeljnih kart",
65 | "overview": "Pregledna karta",
66 | "measure": "Meritve",
67 | "edit": "Uredi",
68 | "time": "Čas",
69 | "print": "Tiskanje",
70 | "details": "Podrobnosti",
71 | "share": "Deli"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 prikaz mape",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-Pošta",
14 | "copy": "Kopiraj skraćenu URL adresu u ostavu",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/sr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kreiranje mape nije moguće",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licencu"
23 | },
24 | "overviewDetails": "Pregledna mapa prikazuje trenutni obuhvat mape u kontekstu veće površine."
25 | },
26 | "nav": {
27 | "next": "Sledeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Pronalaženje lokacije nije moguće",
34 | "notWhatYouWanted": "Niste pronašli ono što ste tražili?",
35 | "selectAnother": "Izaberite drugu lokaciju",
36 | "currentLocation": "Trenutna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Položeno",
42 | "label2": "Uspravno",
43 | "label3": "Položeno",
44 | "label4": "Uspravno"
45 | },
46 | "legend": "Dodaj legendu u rezultate",
47 | "title": "Naslov",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Koristi trenutni obuhvat mape",
52 | "label": "Podeli ovu mapu",
53 | "link": "Link ka mapi",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Podrazumevani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Obeleživači",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija pozadinskih mapa",
65 | "overview": "Pregled mape",
66 | "measure": "Izmeri",
67 | "edit": "Izmeni",
68 | "time": "Vreme",
69 | "print": "Odštampaj",
70 | "details": "Detalji",
71 | "share": "Podeli"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 kartvy",
9 | "size": "Storlek (bredd/höjd):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post",
14 | "copy": "Kopiera kort URL till Urklipp",
15 | "copied": "Kopierad"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/sv/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Det går inte att skapa kartan",
20 | "licenseError": {
21 | "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.",
22 | "title": "Inte licensierad"
23 | },
24 | "overviewDetails": "Översiktskartan visar den nuvarande utbredningen för kartan inom ramen för ett större område."
25 | },
26 | "nav": {
27 | "next": "Nästa",
28 | "previous": "Föregående",
29 | "close": "Stäng"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Det gick inte att hitta platsen",
34 | "notWhatYouWanted": "Är det inte vad du vill ha?",
35 | "selectAnother": "Välj en annan plats",
36 | "currentLocation": "Aktuell plats",
37 | "title": "Plats"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Liggande",
42 | "label2": "Stående",
43 | "label3": "Liggande",
44 | "label4": "Stående"
45 | },
46 | "legend": "Lägg till teckenförklaring i utdata",
47 | "title": "Titel",
48 | "titlePrompt": "Lägg till anpassad titel"
49 | },
50 | "share": {
51 | "extent": "Använd aktuell kartutbredning",
52 | "label": "Dela den här kartan",
53 | "link": "Kartlänk",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standardutbredning",
60 | "locate": "Hitta min plats",
61 | "legend": "Teckenförklaring",
62 | "bookmarks": "Bokmärken",
63 | "layers": "Lager",
64 | "basemap": "Galleri för baskarta",
65 | "overview": "Översiktskarta",
66 | "measure": "Mät",
67 | "edit": "Redigera",
68 | "time": "Tid",
69 | "print": "Skriv ut",
70 | "details": "Detaljer",
71 | "share": "Dela"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "คัดลอก URL ย่อไปที่คลิปบอร์ด",
15 | "copied": "คัดลอก"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/th/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "ไม่สามารถสร้างแผนที่ได้",
20 | "licenseError": {
21 | "message": "บัญชีผู้ใช้ของคุณไม่มีใบอนุญาตในการใช้งานแอปที่กำหนดค่าได้ซึ่งไม่ใช่แบบสาธารณะ โปรดขอให้ผู้ดูแลองค์กรของคุณกำหนดประเภทผู้ใช้ที่มีใบอนุญาตแอป Essential หรือแอดออนแอป Essential ให้กับคุณ",
22 | "title": "ไม่มีใบอนุญาต"
23 | },
24 | "overviewDetails": "แผนที่ภาพรวมแสดงขอบเขตปัจจุบันของแผนที่ภายในบริบทของพื้นที่ที่กว้างกว่า"
25 | },
26 | "nav": {
27 | "next": "ถัดไป",
28 | "previous": "ก่อนหน้า",
29 | "close": "ปิด"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "ไม่พบตำแหน่งนี้",
34 | "notWhatYouWanted": "ไม่ใช่สิ่งที่คุณต้องการใช่หรือไม่?",
35 | "selectAnother": "เลือกตำแหน่งอื่นๆ",
36 | "currentLocation": "ตำแหน่งปัจจุบัน",
37 | "title": "ตำแหน่ง"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "แนวนอน",
42 | "label2": "แนวตั้ง",
43 | "label3": "แนวนอน",
44 | "label4": "แนวตั้ง"
45 | },
46 | "legend": "เพิ่มคำอธิบายแผนที่ไปยังส่วนผลลัพธ์",
47 | "title": "ชื่อ",
48 | "titlePrompt": "เพิ่มชื่อที่ต้องการ"
49 | },
50 | "share": {
51 | "extent": "ใช้ขอบเขตแผนที่ที่แสดงอยู่ในปัจจุบัน",
52 | "label": "แชร์แผนที่นี้",
53 | "link": "เชื่อมโยงแผนที่",
54 | "facebook": "เฟสบุ๊ค",
55 | "twitter": "ทวิตเตอร์"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "ขนาดเริ่มต้น",
60 | "locate": "ค้นหาตำแหน่งของฉัน",
61 | "legend": "คำอธิบายสัญลักษณ์",
62 | "bookmarks": "บุ๊คมาร์ค",
63 | "layers": "เลเยอร์",
64 | "basemap": "แกลเลอรีแผนที่ฐาน",
65 | "overview": "ดูภาพรวมแผนที่",
66 | "measure": "วัด",
67 | "edit": "แก้ไข",
68 | "time": "เวลา",
69 | "print": "พิมพ์",
70 | "details": "รายละเอียด",
71 | "share": "แบ่งปัน"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 görünümünü paylaş",
9 | "size": "Boyut (genişlik/yükseklik):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-posta",
14 | "copy": "Kısa url’yi panoya kopyala",
15 | "copied": "Kopyalandı"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/tr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Harita oluşturulamıyor",
20 | "licenseError": {
21 | "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.",
22 | "title": "Lisanslı Değil"
23 | },
24 | "overviewDetails": "Genel görünüm haritaları daha geniş bir kapsam içindeki geçerli harita yayılımını gösterir."
25 | },
26 | "nav": {
27 | "next": "Sonraki",
28 | "previous": "Önceki",
29 | "close": "Kapat"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Konum bulunamadı",
34 | "notWhatYouWanted": "İstediğiniz bu değil mi?",
35 | "selectAnother": "Başka bir konum seç",
36 | "currentLocation": "Mevcut Konum",
37 | "title": "Konum"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Yatay",
42 | "label2": "Dikey",
43 | "label3": "Yatay",
44 | "label4": "Dikey"
45 | },
46 | "legend": "Çıktıya gösterim ekle",
47 | "title": "Başlık",
48 | "titlePrompt": "Özel başlık ekle"
49 | },
50 | "share": {
51 | "extent": "Geçerli harita yayılımını kullan",
52 | "label": "Bu haritayı paylaş",
53 | "link": "Harita Bağlantısı",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Varsayılan yayılım",
60 | "locate": "Konumumu bul",
61 | "legend": "Gösterim",
62 | "bookmarks": "Yer imleri",
63 | "layers": "Katmanlar",
64 | "basemap": "Altlık haritası galerisi",
65 | "overview": "Genel bakış haritası",
66 | "measure": "Ölçü",
67 | "edit": "Düzenle",
68 | "time": "Zaman",
69 | "print": "Yazdır",
70 | "details": "Detaylar",
71 | "share": "Paylaş"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "Копіювати короткий URL до буферу обміну",
15 | "copied": "Скопійовано"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/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ẻ chế độ xem 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 | "copy": "Sao chép url ngắn sang bộ nhớ tạm",
15 | "copied": "Đã sao chép"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/vi/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Không thể tạo bản đồ",
20 | "licenseError": {
21 | "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ợ.",
22 | "title": "Không được cấp phép"
23 | },
24 | "overviewDetails": "Bản đồ toàn cảnh hiển thị phạm vi bản đồ hiện tại trong bối cảnh khu vực rộng hơn."
25 | },
26 | "nav": {
27 | "next": "Tiếp theo",
28 | "previous": "Trước",
29 | "close": "Đóng"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Không thể tìm thấy vị trí",
34 | "notWhatYouWanted": "Không phải cái bạn muốn?",
35 | "selectAnother": "Chọn một vị trí khác",
36 | "currentLocation": "Vị trí Hiện tại",
37 | "title": "Vị trí"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Cảnh quan",
42 | "label2": "Hướng dọc",
43 | "label3": "Cảnh quan",
44 | "label4": "Hướng dọc"
45 | },
46 | "legend": "Thêm chú giải vào kết quả đầu ra",
47 | "title": "Tiêu đề",
48 | "titlePrompt": "Thêm tiêu đề tùy chỉnh"
49 | },
50 | "share": {
51 | "extent": "Sử dụng phạm vi bản đồ hiện tại",
52 | "label": "Chia sẻ bản đồ này",
53 | "link": "Liên kết Bản đồ",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Phạm vi mặc định",
60 | "locate": "Tìm vị trí của tôi",
61 | "legend": "Chú giải",
62 | "bookmarks": "Đánh dấu",
63 | "layers": "Lớp",
64 | "basemap": "Bộ sưu tập ảnh bản đồ nền",
65 | "overview": "Bản đồ tổng quan",
66 | "measure": "Đo lường",
67 | "edit": "Chỉnh sửa",
68 | "time": "Thời gian",
69 | "print": "In",
70 | "details": "Chi tiết",
71 | "share": "Chia sẻ"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 +",
13 | "emailTooltip": "电子邮件",
14 | "copy": "复制短 URL 到剪贴板",
15 | "copied": "已复制"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/zh-cn/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "无法创建地图",
20 | "licenseError": {
21 | "message": "您的帐户无权使用非公共的可配置应用程序。 请联系您的组织管理员为您分配包含基本应用程序或附加基本应用程序许可的用户类型。",
22 | "title": "未经许可"
23 | },
24 | "overviewDetails": "鹰眼图显示大面积环境中的当前地图范围。"
25 | },
26 | "nav": {
27 | "next": "下一页",
28 | "previous": "上一页",
29 | "close": "关闭"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "无法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "选择其他位置",
36 | "currentLocation": "当前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "横向",
42 | "label2": "纵向",
43 | "label3": "横向",
44 | "label4": "纵向"
45 | },
46 | "legend": "向输出添加图例",
47 | "title": "标题",
48 | "titlePrompt": "添加自定义标题"
49 | },
50 | "share": {
51 | "extent": "使用当前地图范围",
52 | "label": "共享此地图",
53 | "link": "地图链接",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "默认范围",
60 | "locate": "查找我的位置",
61 | "legend": "图例",
62 | "bookmarks": "书签",
63 | "layers": "图层",
64 | "basemap": "底图库",
65 | "overview": "鹰眼图",
66 | "measure": "测量",
67 | "edit": "编辑",
68 | "time": "时间",
69 | "print": "打印",
70 | "details": "详细信息",
71 | "share": "共享"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "將簡短的 url 複製到剪貼簿",
15 | "copied": "已複製"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/zh-hk/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "無法建立地圖",
20 | "licenseError": {
21 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
22 | "title": "未經許可"
23 | },
24 | "overviewDetails": "總覽圖顯示較大區域內容中之地圖的目前範圍。"
25 | },
26 | "nav": {
27 | "next": "下一頁",
28 | "previous": "上一頁",
29 | "close": "關閉"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "無法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "選擇其他位置",
36 | "currentLocation": "目前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "橫向",
42 | "label2": "縱向",
43 | "label3": "橫向",
44 | "label4": "縱向"
45 | },
46 | "legend": "在輸出新增圖例",
47 | "title": "標題",
48 | "titlePrompt": "新增自訂標題"
49 | },
50 | "share": {
51 | "extent": "使用目前地圖範圍",
52 | "label": "共用此地圖",
53 | "link": "地圖連結",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "預設範圍",
60 | "locate": "查詢我的位置",
61 | "legend": "圖例",
62 | "bookmarks": "書簽",
63 | "layers": "圖層",
64 | "basemap": "底圖庫",
65 | "overview": "鷹眼圖",
66 | "measure": "測量",
67 | "edit": "編輯",
68 | "time": "時間",
69 | "print": "列印",
70 | "details": "詳細資訊",
71 | "share": "分享"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/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 | "copy": "將簡短的 url 複製到剪貼簿",
15 | "copied": "已複製"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/build/js/nls/zh-tw/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "無法建立地圖",
20 | "licenseError": {
21 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
22 | "title": "未經許可"
23 | },
24 | "overviewDetails": "總覽圖顯示較大區域內容中之地圖的目前範圍。"
25 | },
26 | "nav": {
27 | "next": "下一頁",
28 | "previous": "上一頁",
29 | "close": "關閉"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "無法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "選擇其他位置",
36 | "currentLocation": "目前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "橫向",
42 | "label2": "縱向",
43 | "label3": "橫向",
44 | "label4": "縱向"
45 | },
46 | "legend": "在輸出新增圖例",
47 | "title": "標題",
48 | "titlePrompt": "新增自訂標題"
49 | },
50 | "share": {
51 | "extent": "使用目前地圖範圍",
52 | "label": "共用此地圖",
53 | "link": "地圖連結",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "預設範圍",
60 | "locate": "查詢我的位置",
61 | "legend": "圖例",
62 | "bookmarks": "書簽",
63 | "layers": "圖層",
64 | "basemap": "底圖庫",
65 | "overview": "鷹眼圖",
66 | "measure": "測量",
67 | "edit": "編輯",
68 | "time": "時間",
69 | "print": "列印",
70 | "details": "詳細資訊",
71 | "share": "分享"
72 | }
73 | });
--------------------------------------------------------------------------------
/build/oauth-callback.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/css/theme/default.css:
--------------------------------------------------------------------------------
1 | #panelTools {
2 | position: relative;
3 | left: 0;
4 | top: 0;
5 | min-height: 30px;
6 | width: 100%;
7 | display: block;
8 | clear: both;
9 | }
10 |
11 | .panelTool {
12 | margin: 2px 0 2px 0;
13 | width: 26px;
14 | height: 26px;
15 | line-height: 26px;
16 | }
17 |
18 | #panelTop {
19 | position: fixed;
20 | left: 0;
21 | top: 0;
22 | width: 100%;
23 | color: #ffffff;
24 | padding: 0;
25 | display: block;
26 | overflow: visible;
27 | height: 75px;
28 | }
29 |
30 | .esriSimpleSliderTL {
31 | top: auto;
32 | left: auto;
33 | top: 80px;
34 | left: 0;
35 | border: none;
36 | }
37 |
38 | #locateDiv {
39 | position: absolute;
40 | z-index: 10;
41 | top: 155px;
42 | left: 0;
43 | }
44 |
45 | .noslider #locateDiv {
46 | top: 80px;
47 | }
48 |
49 | #panelContent {
50 | top: 10px;
51 | right: 310px;
52 | }
53 |
54 | .panelTool {
55 | height: 26px;
56 | }
57 |
58 | @media only screen and (min-width:320px) and (max-device-width:480px) {
59 | #panelContent {
60 | top: auto !important;
61 | right: 0;
62 | left: 0;
63 | bottom: 0;
64 | width: 100%;
65 | z-index: 99;
66 | }
67 | .pageContent {
68 | width: 100%;
69 | }
70 | }
71 |
72 | @media only screen and (min-width: 720px) {
73 | .esriSimpleSliderTL {
74 | top: 10px !important;
75 | left: 10px !important;
76 | }
77 | #locateDiv {
78 | left: auto;
79 | left: 10px;
80 | top: 90px;
81 | }
82 | #panelTools {
83 | display: block !important;
84 | }
85 | #panelContent {
86 | top: 90px;
87 | }
88 | #panelTop {
89 | width: auto;
90 | left: 44px;
91 | top: 10px;
92 | }
93 | .no-search #panelContent {
94 | top: 10px;
95 | }
96 | }
97 |
98 | .esriControlsBR {
99 | position: absolute;
100 | left: 0;
101 | bottom: 0;
102 | }
103 |
104 | .logo-med {
105 | position: absolute;
106 | left: 0;
107 | bottom: 0;
108 | }
109 |
110 | .logo-sm {
111 | position: absolute;
112 | left: 0;
113 | bottom: 0;
114 | }
115 |
116 | .esriAttribution {
117 | position: absolute;
118 | left: 65px;
119 | bottom: 5px;
120 | }
--------------------------------------------------------------------------------
/css/theme/menubar.css:
--------------------------------------------------------------------------------
1 | #panelTop {
2 | position: fixed;
3 | left: 30px;
4 | top: 0;
5 | width: 100%;
6 | color: #ffffff;
7 | padding: 0;
8 | display: block;
9 | overflow: visible;
10 | height: 75px;
11 | z-index: 40;
12 | }
13 |
14 | #panelContent {
15 | top: 75px;
16 | }
17 |
18 | .noslider #panelTop {
19 | left: 0;
20 | }
21 |
22 | #panelTitle {
23 | border-bottom: none;
24 | }
25 |
26 | #panelSearch {
27 | margin: 7px 34px 10px 4px;
28 | }
29 |
30 | .esriSimpleSliderTL {
31 | top: 0;
32 | left: 0;
33 | border: none;
34 | }
35 |
36 | .arcgisSearch .searchBtn {
37 | border: none;
38 | border-radius: 0;
39 | -webkit-border-radius: 0;
40 | }
41 |
42 | .arcgisSearch .searchMenu {
43 | border-radius: 0;
44 | -webkit-border-radius: 0;
45 | }
46 |
47 | .arcgisSearch .searchGroup .searchInput {
48 | border-radius: 0;
49 | -webkit-border-radius: 0;
50 | border: none;
51 | }
52 |
53 | .arcgisSearch .searchCollapsed .searchSubmit {
54 | border-radius: 0;
55 | -webkit-border-radius: 0;
56 | border: none;
57 | }
58 |
59 | #panelTools {
60 | padding-left: 10px;
61 | }
62 |
63 | .panelTool {
64 | width: 26px;
65 | }
66 |
67 | .pageHeader {
68 | display: none;
69 | }
70 |
71 | #locateDiv {
72 | position: absolute;
73 | bottom: 0;
74 | z-index: 30;
75 | left: 0;
76 | }
77 |
78 | @media only screen and (min-width: 720px) {
79 | #panelTools {
80 | display: block !important;
81 | }
82 | #panelSearch {
83 | margin: 7px 4px 10px 6px;
84 | }
85 | #panelTop {
86 | width: auto;
87 | min-width: 270px;
88 | }
89 | .no-search #panelContent {
90 | bottom: 10px;
91 | }
92 | }
--------------------------------------------------------------------------------
/css/theme/sidetools.css:
--------------------------------------------------------------------------------
1 | #panelTools {
2 | position: absolute;
3 | display: block;
4 | width: 30px;
5 | top: 125px;
6 | line-height: normal;
7 | }
8 |
9 | #panelTools.labels {
10 | width: 120px;
11 | top: 135px;
12 | }
13 |
14 | .panelTool.labels {
15 | display: block;
16 | height: 45px;
17 | white-space: nowrap;
18 | }
19 |
20 | .btnText {
21 | display: inline-block;
22 | }
23 |
24 | .panelTool {
25 | float: none;
26 | width: 30px;
27 | }
28 |
29 | .noslider #panelTools {
30 | top: 50px;
31 | }
32 |
33 | .haslocate #panelTools {
34 | top: 155px;
35 | }
36 |
37 | .noslider.haslocate #panelTools {
38 | top: 80px;
39 | }
40 |
41 | #locateDiv {
42 | position: absolute;
43 | z-index: 10;
44 | top: 125px;
45 | left: 0;
46 | }
47 |
48 | .esriRTL #locateDiv {
49 | left: unset;
50 | right: 0;
51 | }
52 |
53 | .esriRTL #panelSearch {
54 | float: left !important;
55 | }
56 |
57 | .esriRTL #panelText,
58 | .esriRTL #panelLogo {
59 | float: right !important;
60 | }
61 |
62 |
63 | #panelTitle {
64 | border-bottom: none;
65 | }
66 |
67 | #panelContent {
68 | z-index: 0;
69 | }
70 |
71 | #panelTop {
72 | position: fixed;
73 | left: 0px;
74 | top: 0px;
75 | width: 100%;
76 | color: #ffffff;
77 | padding: 0px;
78 | display: block;
79 | overflow: visible;
80 | height: 50px;
81 | z-index: 40;
82 | }
83 |
84 | #panelContent {
85 | top: 51px;
86 | right: 300px;
87 | }
88 |
89 | @media only screen and (min-width:320px) and (max-device-width:480px) {
90 | #panelContent {
91 | top: auto !important;
92 | right: 0;
93 | left: 0;
94 | bottom: 0;
95 | width: 100%;
96 | z-index: 99;
97 | }
98 |
99 | .pageContent {
100 | width: 100%;
101 | }
102 | }
103 |
104 | .notools .esriSimpleSliderTL {
105 | top: 75px;
106 | }
107 |
108 | .esriSimpleSliderTL {
109 | top: auto;
110 | left: auto;
111 | top: 50px;
112 | left: 0;
113 | border: none;
114 | z-index: 41 !important;
115 | }
116 |
117 | .esriRTL .esriSimpleSliderTL {
118 | left: unset;
119 | right: 0;
120 | }
121 |
122 | .arcgisSearch .searchGroup .searchInput {
123 | border-radius: 0;
124 | -webkit-border-radius: 0;
125 | }
126 |
127 | .arcgisSearch .searchCollapsed .searchSubmit {
128 | border-radius: 0;
129 | }
130 |
--------------------------------------------------------------------------------
/fonts/tool-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/fonts/tool-icons.eot
--------------------------------------------------------------------------------
/fonts/tool-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/fonts/tool-icons.ttf
--------------------------------------------------------------------------------
/fonts/tool-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/fonts/tool-icons.woff
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | var gulp = require("gulp");
2 | var htmlreplace = require("gulp-html-replace");
3 | var cssminify = require("gulp-more-css");
4 | var jsminify = require("gulp-minify");
5 | var imagemin = require("gulp-imagemin");
6 |
7 | /**
8 | * Copy files in nls folder
9 | */
10 | gulp.task("copynls", function () {
11 | gulp.src(["js/nls/**/*"])
12 | .pipe(gulp.dest("build/js/nls"));
13 | });
14 | gulp.task("copyhtml", function () {
15 | gulp.src(["oauth-callback.html"])
16 | .pipe(gulp.dest("build/"));
17 | });
18 | gulp.task("copyfonts", function () {
19 | gulp.src(["fonts/*"])
20 | .pipe(gulp.dest("build/fonts/"));
21 | });
22 | gulp.task("copydijit", function () {
23 | gulp.src(["js/dijit/**/*"])
24 | .pipe(gulp.dest("build/js/dijit/"));
25 | });
26 | /**
27 | * Optimize images
28 | */
29 | gulp.task("imagemin", function () {
30 | gulp.src("images/**/*").pipe(imagemin()).pipe(gulp.dest("build/images"));
31 | });
32 | /**
33 | * minify javascript
34 | */
35 | gulp.task("compress", function () {
36 | gulp.src("js/*.js").pipe(jsminify({
37 | ext: {
38 | src: "js/*.js",
39 | min: ".js"
40 | },
41 | noSource: true
42 | })).pipe(gulp.dest("build/js/"));
43 | });
44 | /**
45 | * Minify json config files
46 | */
47 | gulp.task("compressjson", function () {
48 | gulp.src("config/*.js").pipe(jsminify({
49 | ext: {
50 | src: "config/*.js",
51 | min: ".js"
52 | },
53 | noSource: true
54 | })).pipe(gulp.dest("build/config/"));
55 | });
56 |
57 |
58 | /**
59 | * minify css (Using concatenate + minify above instead )
60 | */
61 | gulp.task("minifycss", function () {
62 | return gulp.src("css/**/*.css").pipe(cssminify()).pipe(gulp.dest("build/css"));
63 | });
64 |
65 |
66 | /**
67 | * Replace css stylesheets in index.html with
68 | * concatenated css file. Looks for comments
69 | * in index.html with build:css and endbuild
70 | */
71 | gulp.task("replace", function () {
72 | gulp.src("index.html").pipe(htmlreplace({
73 | "css": "css/styles.css"
74 | })).pipe(gulp.dest("build/"));
75 | });
76 |
77 | //"optimize",
78 | gulp.task("default", ["compress", "copyhtml", "copyfonts", "copydijit", "compressjson", "imagemin", "copynls", "minifycss", "replace"]);
--------------------------------------------------------------------------------
/images/EsriBluePinCircle26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/EsriBluePinCircle26.png
--------------------------------------------------------------------------------
/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/ajax-loader.gif
--------------------------------------------------------------------------------
/images/area_measure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/area_measure.png
--------------------------------------------------------------------------------
/images/calcite_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/calcite_nav.png
--------------------------------------------------------------------------------
/images/clippy.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/images/dist_measure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/dist_measure.png
--------------------------------------------------------------------------------
/images/dist_point.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/dist_point.png
--------------------------------------------------------------------------------
/images/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/error.png
--------------------------------------------------------------------------------
/images/loading-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/loading-small.png
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/logo.png
--------------------------------------------------------------------------------
/images/popup-sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/popup-sprite.png
--------------------------------------------------------------------------------
/images/ring.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/ring.png
--------------------------------------------------------------------------------
/images/thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Esri/Viewer/44e3e67929434d7a47e006a59e1d5ce747e7027f/images/thumb.png
--------------------------------------------------------------------------------
/js/dijit/templates/ShareDialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
15 |
16 |
17 |
19 |
20 |
23 |
24 |
25 |
27 |
28 |
${_i18n.widgets.ShareDialog.size}
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/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 view",
10 | size: "Size (width/height):",
11 | facebookTooltip: "Facebook",
12 | twitterTooltip: "Twitter",
13 | gplusTooltip: "Google Plus",
14 | emailTooltip: "Email",
15 | copy: "Copy short url to clipboard",
16 | copied: "Copied"
17 | }
18 | }
19 | }),
20 | "ar": 1,
21 | "bs": 1,
22 | "ca": 1,
23 | "cs": 1,
24 | "da": 1,
25 | "de": 1,
26 | "el": 1,
27 | "es": 1,
28 | "et": 1,
29 | "fi": 1,
30 | "fr": 1,
31 | "he": 1,
32 | "hr": 1,
33 | "hu": 1,
34 | "id": 1,
35 | "it": 1,
36 | "ja": 1,
37 | "ko": 1,
38 | "lt": 1,
39 | "lv": 1,
40 | "nl": 1,
41 | "nb": 1,
42 | "pl": 1,
43 | "pt-br": 1,
44 | "pt-pt": 1,
45 | "ro": 1,
46 | "ru": 1,
47 | "sl": 1,
48 | "sr": 1,
49 | "sv": 1,
50 | "th": 1,
51 | "tr": 1,
52 | "uk": 1,
53 | "vi": 1,
54 | "zh-cn": 1,
55 | "zh-hk": 1,
56 | "zh-tw": 1
57 | });
58 |
--------------------------------------------------------------------------------
/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": "فيس بوك",
11 | "twitterTooltip": "تويتر",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "البريد الإلكتروني",
14 | "copy": "نسخ عنوان url قصير إلى الحافظة",
15 | "copied": "تم النسخ"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/ar/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "يتعذر إنشاء الخريطة",
20 | "licenseError": {
21 | "message": "حسابك غير مرخص لاستخدام التطبيقات القابلة للتكوين غير العامة. رجاءً اطلب من مسئولي المؤسسة تعيينك كنوع مستخدم يتضمن التطبيقات الأساسية أو ترخيص التطبيقات الأساسية المضافة.",
22 | "title": "غير مرخص"
23 | },
24 | "overviewDetails": "تعرض خريطة النظرة العامة نطاق الخريطة الحالي من خلال سياق منطقة أكبر."
25 | },
26 | "nav": {
27 | "next": "التالي",
28 | "previous": "السابق",
29 | "close": "إغلاق"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "تعذر العثور على الموقع",
34 | "notWhatYouWanted": "هل هذا ليس ما تحتاجه؟",
35 | "selectAnother": "تحديد موقع أخر",
36 | "currentLocation": "الموقع الحالي",
37 | "title": "الموقع"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "أفقي",
42 | "label2": "عمودي",
43 | "label3": "أفقي",
44 | "label4": "عمودي"
45 | },
46 | "legend": "إضافة وسيلة الإيضاح إلى الناتج",
47 | "title": "عنوان",
48 | "titlePrompt": "إضافة عنوان مخصص"
49 | },
50 | "share": {
51 | "extent": "استخدم نطاق الخريطة الحالي",
52 | "label": "مشاركة هذه الخريطة",
53 | "link": "رابط الخريطة",
54 | "facebook": "فيس بوك",
55 | "twitter": "تويتر"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "النطاق الافتراضي",
60 | "locate": "العثور على الموقع الخاص بي",
61 | "legend": "وسيلة إيضاح",
62 | "bookmarks": "إشارات مرجعية",
63 | "layers": "طبقات",
64 | "basemap": "معرض خريطة الأساس",
65 | "overview": "خريطة النظرة العامة",
66 | "measure": "قياس",
67 | "edit": "تحرير",
68 | "time": "زمن",
69 | "print": "طباعة",
70 | "details": "تفاصيل",
71 | "share": "مشاركة"
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 prikaz karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki url u međuspremnik",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/bs/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nije moguće stvoriti kartu",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutačni obuhvat karte unutar konteksta većeg područja."
25 | },
26 | "nav": {
27 | "next": "Sljedeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nije pronađena lokacija",
34 | "notWhatYouWanted": "Niste ovo tražili?",
35 | "selectAnother": "Odaberi drugu lokaciju",
36 | "currentLocation": "Trenutačna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Pejzaž",
42 | "label2": "Okomito",
43 | "label3": "Pejzaž",
44 | "label4": "Okomito"
45 | },
46 | "legend": "Dodaj legendu u izlaz",
47 | "title": "Naziv",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Upotrijebi trenutačni obuhvat karte",
52 | "label": "Podijeli kartu",
53 | "link": "Poveznica karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zadani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Knjižne oznake",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija kartografskih podloga",
65 | "overview": "Pregledna karta",
66 | "measure": "Izmjeri",
67 | "edit": "Uredi",
68 | "time": "Vrijeme",
69 | "print": "Ispis",
70 | "details": "Pojedinosti",
71 | "share": "Odabrani izgled"
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 la visualització del mapa actual",
9 | "size": "Mida (amplada/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correu electrònic",
14 | "copy": "Copia l'adreça URL curta al porta-retalls",
15 | "copied": "S'ha copiat"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/cs/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Sdílet",
5 | "heading": "Sdílejte tuto mapu",
6 | "url": "Odkaz na mapu",
7 | "embed": "Vložit mapu",
8 | "extent": "Sdílet aktuální zobrazení mapy",
9 | "size": "Velikost (šířka/výška):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Zkopírovat krátkou URL do schránky",
15 | "copied": "Zkopírováno"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/cs/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nelze vytvořit mapu",
20 | "licenseError": {
21 | "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í.",
22 | "title": "Chybí licence"
23 | },
24 | "overviewDetails": "Přehledová mapa zobrazuje aktuální rozsah mapy v kontextu větší oblasti."
25 | },
26 | "nav": {
27 | "next": "Další",
28 | "previous": "Předchozí",
29 | "close": "Zavřít"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Umístění nebylo nalezeno.",
34 | "notWhatYouWanted": "Nenašli jste, co jste hledali?",
35 | "selectAnother": "Vybrat jiné umístění",
36 | "currentLocation": "Aktuální umístění",
37 | "title": "Umístění"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Na šířku",
42 | "label2": "Na výšku",
43 | "label3": "Na šířku",
44 | "label4": "Na výšku"
45 | },
46 | "legend": "Přidat legendu do výstupu",
47 | "title": "Název",
48 | "titlePrompt": "Přidat vlastní název"
49 | },
50 | "share": {
51 | "extent": "Použít aktuální rozsah mapy",
52 | "label": "Sdílejte tuto mapu",
53 | "link": "Odkaz na mapu",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Výchozí rozsah",
60 | "locate": "Najdi moji polohu",
61 | "legend": "Legenda",
62 | "bookmarks": "Záložky",
63 | "layers": "Vrstvy",
64 | "basemap": "Galerie podkladových map",
65 | "overview": "Přehledová mapa",
66 | "measure": "Měření",
67 | "edit": "Upravit",
68 | "time": "Čas",
69 | "print": "Tisk",
70 | "details": "Podrobnosti",
71 | "share": "Sdílet"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/da/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Opdatér",
5 | "heading": "Del dette kort",
6 | "url": "Kort-link",
7 | "embed": "Integrér kort",
8 | "extent": "Del den aktuelle kortvisning",
9 | "size": "Størrelse (bredde/højde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Kopiér kort url til Udklipsholder",
15 | "copied": "Kopieret"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/da/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kan ikke oprette kort",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ikke licenseret"
23 | },
24 | "overviewDetails": "Oversigtskort viser kortets nuværende udstrækning i et større områdes kontekst."
25 | },
26 | "nav": {
27 | "next": "Næste",
28 | "previous": "Forrige",
29 | "close": "Luk"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Placeringen blev ikke fundet",
34 | "notWhatYouWanted": "Var det ikke det, du ville?",
35 | "selectAnother": "Vælg et andet sted",
36 | "currentLocation": "Aktuel position",
37 | "title": "Position"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "På langs",
42 | "label2": "På højkant",
43 | "label3": "På langs",
44 | "label4": "På højkant"
45 | },
46 | "legend": "Føj signaturforklaring til output",
47 | "title": "Titel",
48 | "titlePrompt": "Tilføj brugerdefineret titel"
49 | },
50 | "share": {
51 | "extent": "Gem aktuelt kortområde",
52 | "label": "Del dette kort",
53 | "link": "Kort-link",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standardudstrækning",
60 | "locate": "Find min placering",
61 | "legend": "Signaturforklaring",
62 | "bookmarks": "Bogmærker",
63 | "layers": "Lag",
64 | "basemap": "Baggrundskortgalleri",
65 | "overview": "Oversigtskort",
66 | "measure": "Mål",
67 | "edit": "Redigér",
68 | "time": "Tid",
69 | "print": "Udskriv",
70 | "details": "Oplysninger",
71 | "share": "Opdatér"
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 Kartenansicht freigeben",
9 | "size": "Größe (Breite/Höhe):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-Mail",
14 | "copy": "Kurz-URL in die Zwischenablage kopieren",
15 | "copied": "Kopiert"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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 | "copy": "Αντιγραφή σύντομου url στο πρόχειρο",
15 | "copied": "Αντιγράφηκε"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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 vista de mapa actual",
9 | "size": "Tamaño (ancho/alto):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correo Electrónico",
14 | "copy": "Copiar dirección URL corta en el portapapeles",
15 | "copied": "Copiada"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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 praegust kaardivaadet",
9 | "size": "Suurus (laius/kõrgus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Kopeeri lühike URL lõikelauale",
15 | "copied": "Kopeeritud"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/et/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kaarti ei saa luua",
20 | "licenseError": {
21 | "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.",
22 | "title": "Litsents puudub"
23 | },
24 | "overviewDetails": "Ülevaatekaart kuvab kaardi praeguse kuvaulatuse suurema ala kontekstis."
25 | },
26 | "nav": {
27 | "next": "Järgmine",
28 | "previous": "Eelmine",
29 | "close": "Sulge"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Asukohta ei leitud",
34 | "notWhatYouWanted": "Ei ole see, mida soovisite?",
35 | "selectAnother": "Vali muu asukoht",
36 | "currentLocation": "Praegune asukoht",
37 | "title": "Asukoht"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Horisontaalpaigutus",
42 | "label2": "Vertikaalpaigutus",
43 | "label3": "Horisontaalpaigutus",
44 | "label4": "Vertikaalpaigutus"
45 | },
46 | "legend": "Lisa väljundile legend",
47 | "title": "Pealkiri",
48 | "titlePrompt": "Lisa kohandatud pealkiri"
49 | },
50 | "share": {
51 | "extent": "Kasuta praeguse kaardi ulatust",
52 | "label": "Jaga seda kaarti",
53 | "link": "Kaardi link",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Vaikimisi kuvaulatus",
60 | "locate": "Leia minu asukoht",
61 | "legend": "Legendiga kaart",
62 | "bookmarks": "Järjehoidjad",
63 | "layers": "Kihid",
64 | "basemap": "Aluskaartide galerii",
65 | "overview": "Ülevaatekaart",
66 | "measure": "Mõõda",
67 | "edit": "Muuda",
68 | "time": "Aeg",
69 | "print": "Prindi",
70 | "details": "Detailid",
71 | "share": "Jaga"
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 nykyinen karttanäkymä",
9 | "size": "Koko (leveys/korkeus):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Sähköposti",
14 | "copy": "Kopioi lyhyt URL leikepöydälle",
15 | "copied": "Kopioitu"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/fi/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Karttaa ei voi luoda",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ei lisenssiä"
23 | },
24 | "overviewDetails": "Yleiskatsauskartta näyttää kartan nykyisen laajuuden suuremman alueen kontekstissa."
25 | },
26 | "nav": {
27 | "next": "Seuraava",
28 | "previous": "Edellinen",
29 | "close": "Sulje"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Sijaintia ei löytynyt",
34 | "notWhatYouWanted": "Etkö löytänyt etsimääsi?",
35 | "selectAnother": "Valitse toinen sijainti",
36 | "currentLocation": "Nykyinen sijainti",
37 | "title": "Sijainti"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Maisema",
42 | "label2": "Pysty",
43 | "label3": "Maisema",
44 | "label4": "Pysty"
45 | },
46 | "legend": "Lisää selite tulokseen",
47 | "title": "Otsikko",
48 | "titlePrompt": "Lisää mukautettu otsikko"
49 | },
50 | "share": {
51 | "extent": "Käytä nykyisen kartan laajuutta.",
52 | "label": "Jaa tämä kartta",
53 | "link": "Karttalinkki",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Oletuslaajuus",
60 | "locate": "Etsi sijaintini",
61 | "legend": "Selite",
62 | "bookmarks": "Kirjanmerkit",
63 | "layers": "Karttatasot",
64 | "basemap": "Taustakarttagalleria",
65 | "overview": "Yleiskatsauskartta",
66 | "measure": "Mittaus",
67 | "edit": "Muokkaa",
68 | "time": "Kellonaika",
69 | "print": "Tulosta",
70 | "details": "Yksityiskohdat",
71 | "share": "Jaa"
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": "Incorporer la carte",
8 | "extent": "Partager la vue cartographique courante",
9 | "size": "Taille (largeur/hauteur):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Courrier électronique",
14 | "copy": "Copier une URL courte dans le Presse-papiers",
15 | "copied": "Copiée"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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": "דוא\"ל",
14 | "copy": "העתק כתובת URL קצרה ללוח",
15 | "copied": "הועתק"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/he/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "לא ניתן ליצור מפה",
20 | "licenseError": {
21 | "message": "החשבון שלך אינו מורשה להשתמש באפליקציות הניתנות להגדרה שאינן ציבוריות. בקש ממנהל המערכת בארגון שלך להקצות לך סוג משתמש שכולל את Essential Apps או רישיון הרחבה ל-Essential Apps.",
22 | "title": "ללא רישיון"
23 | },
24 | "overviewDetails": "מפת התמצאות מציגה את התיחום הנוכחי של מפה בהקשר של אזור גדול יותר."
25 | },
26 | "nav": {
27 | "next": "הבא",
28 | "previous": "הקודם",
29 | "close": "סגור"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "לא ניתן למצוא מיקום",
34 | "notWhatYouWanted": "לא מה שחיפשת?",
35 | "selectAnother": "בחר מיקום אחר",
36 | "currentLocation": "מיקום נוכחי",
37 | "title": "מיקום"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "לרוחב",
42 | "label2": "לאורך",
43 | "label3": "לרוחב",
44 | "label4": "לאורך"
45 | },
46 | "legend": "הוסף מקרא לפלט",
47 | "title": "כותרת",
48 | "titlePrompt": "הוסף כותרת מותאמת אישית"
49 | },
50 | "share": {
51 | "extent": "השתמש בתיחום המפה הנוכחי",
52 | "label": "שתף מפה זו",
53 | "link": "קישור למפה",
54 | "facebook": "פייסבוק",
55 | "twitter": "טוויטר"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "תיחום ברירת המחדל",
60 | "locate": "מצא את המיקום שלי",
61 | "legend": "מקרא",
62 | "bookmarks": "סימניות",
63 | "layers": "שכבות",
64 | "basemap": "גלרית מפות בסיס",
65 | "overview": "מפת התמצאות",
66 | "measure": "מדידה",
67 | "edit": "ערוך",
68 | "time": "זמן",
69 | "print": "הדפס",
70 | "details": "פרטים",
71 | "share": "שתף"
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 prikaz karte",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki url u međuspremnik",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/hr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nije moguće stvoriti kartu",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutačni obuhvat karte unutar konteksta većeg područja."
25 | },
26 | "nav": {
27 | "next": "Sljedeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nije pronađena lokacija",
34 | "notWhatYouWanted": "Niste ovo tražili?",
35 | "selectAnother": "Odaberi drugu lokaciju",
36 | "currentLocation": "Trenutačna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Pejzaž",
42 | "label2": "Okomito",
43 | "label3": "Pejzaž",
44 | "label4": "Okomito"
45 | },
46 | "legend": "Dodaj legendu u izlaz",
47 | "title": "Naziv",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Upotrijebi trenutačni obuhvat karte",
52 | "label": "Podijeli kartu",
53 | "link": "Poveznica karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zadani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Knjižne oznake",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija kartografskih podloga",
65 | "overview": "Pregledna karta",
66 | "measure": "Izmjeri",
67 | "edit": "Uredi",
68 | "time": "Vrijeme",
69 | "print": "Ispis",
70 | "details": "Pojedinosti",
71 | "share": "Odabrani izgled"
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épnézet 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 | "copy": "Rövid URL másolása a vágólapra",
15 | "copied": "Másolt"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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 tampilan peta saat ini",
9 | "size": "Ukuran (lebar/tinggi):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Email",
14 | "copy": "Salin url pendek ke clipboard",
15 | "copied": "Tersalin"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/id/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Tidak dapat membuat peta",
20 | "licenseError": {
21 | "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.",
22 | "title": "Tidak Dilisensikan"
23 | },
24 | "overviewDetails": "Inset peta menampilkan jangkauan peta saat ini dalam konteks area yang lebih besar."
25 | },
26 | "nav": {
27 | "next": "Berikutnya",
28 | "previous": "Sebelumnya",
29 | "close": "Tutup"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Lokasi tidak dapat ditemukan",
34 | "notWhatYouWanted": "Bukan yang Anda inginkan?",
35 | "selectAnother": "Pilih lokasi lain",
36 | "currentLocation": "Lokasi Saat ini",
37 | "title": "Lokasi"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Lanskap",
42 | "label2": "Potret",
43 | "label3": "Lanskap",
44 | "label4": "Potret"
45 | },
46 | "legend": "Tambah legenda ke output",
47 | "title": "Judul",
48 | "titlePrompt": "Tambah judul kustom"
49 | },
50 | "share": {
51 | "extent": "Gunakan jangkauan peta saat ini",
52 | "label": "Bagikan peta ini",
53 | "link": "Tautan Peta",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Jangkauan default",
60 | "locate": "Temukan lokasi saya",
61 | "legend": "Legenda",
62 | "bookmarks": "Penanda Lokasi",
63 | "layers": "Layer",
64 | "basemap": "Galeri peta dasar",
65 | "overview": "Inset peta",
66 | "measure": "Ukur",
67 | "edit": "Edit",
68 | "time": "Waktu",
69 | "print": "Cetak",
70 | "details": "Detail",
71 | "share": "Bagikan"
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 vista mappa corrente",
9 | "size": "Dimensioni (larghezza/altezza):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copia URL breve negli Appunti",
15 | "copied": "Copiato"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/it/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Impossibile creare la mappa",
20 | "licenseError": {
21 | "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.",
22 | "title": "Non Licenziato"
23 | },
24 | "overviewDetails": "Mappa d'insieme mostra l'estensione corrente della mappa usata nel contesto di un'area più ampia."
25 | },
26 | "nav": {
27 | "next": "Avanti",
28 | "previous": "Precedente",
29 | "close": "Chiudi"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Posizione non trovata",
34 | "notWhatYouWanted": "Non è quanto desiderato?",
35 | "selectAnother": "Selezionare un'altra posizione",
36 | "currentLocation": "Posizione corrente",
37 | "title": "Posizione"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Paesaggio",
42 | "label2": "Ritratto",
43 | "label3": "Paesaggio",
44 | "label4": "Ritratto"
45 | },
46 | "legend": "Aggiungi legenda all'output",
47 | "title": "Titolo",
48 | "titlePrompt": "Aggiungi titolo personalizzato"
49 | },
50 | "share": {
51 | "extent": "Usa estensione mappa corrente",
52 | "label": "Condividi la mappa",
53 | "link": "Collegamento a mappa",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Estensione predefinita",
60 | "locate": "Trova posizione personale",
61 | "legend": "Legenda",
62 | "bookmarks": "Segnalibri",
63 | "layers": "Livelli",
64 | "basemap": "Galleria di mappe di base",
65 | "overview": "Mappa d'insieme",
66 | "measure": "Misura",
67 | "edit": "Modifica",
68 | "time": "Ora",
69 | "print": "Stampa",
70 | "details": "Dettagli",
71 | "share": "Condividi"
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 | "copy": "短縮 URL をクリップボードにコピー",
15 | "copied": "コピーしました"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/ja/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "マップを作成できません",
20 | "licenseError": {
21 | "message": "パブリックでないテンプレートを使用するためのライセンスがアカウントに付与されていません。 組織の管理者に Essential Apps またはアドオン Essential Apps ライセンスを含むユーザー タイプを割り当てるよう依頼してください。",
22 | "title": "ライセンスがありません。"
23 | },
24 | "overviewDetails": "概観図は、より大きなエリア内でマップの現在の範囲を表示します。"
25 | },
26 | "nav": {
27 | "next": "次へ",
28 | "previous": "前へ",
29 | "close": "閉じる"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "場所が見つかりませんでした",
34 | "notWhatYouWanted": "他の住所の候補を表示しますか?",
35 | "selectAnother": "他の候補を選択",
36 | "currentLocation": "現在の位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "横",
42 | "label2": "縦",
43 | "label3": "横",
44 | "label4": "縦"
45 | },
46 | "legend": "凡例を出力に追加",
47 | "title": "タイトル",
48 | "titlePrompt": "カスタム タイトルの追加"
49 | },
50 | "share": {
51 | "extent": "現在のマップ範囲を使用",
52 | "label": "このマップを共有",
53 | "link": "マップ リンク",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "デフォルトの表示範囲",
60 | "locate": "現在の場所を検索",
61 | "legend": "凡例",
62 | "bookmarks": "ブックマーク",
63 | "layers": "レイヤー",
64 | "basemap": "ベースマップ ギャラリー",
65 | "overview": "概観図",
66 | "measure": "計測",
67 | "edit": "編集",
68 | "time": "時間",
69 | "print": "印刷",
70 | "details": "詳細",
71 | "share": "共有"
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 | "copy": "간단한 URL을 클립보드에 복사",
15 | "copied": "복사됨"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/ko/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "맵을 생성할 수 없음",
20 | "licenseError": {
21 | "message": "귀하의 계정에는 공개 상태가 아닌 구성 설정 앱을 사용할 수 있는 라이선스가 없습니다. 필수 앱 또는 애드온 필수 앱 라이선스가 포함된 사용자 유형을 업무 지시하려면 기관 관리자에게 문의하세요.",
22 | "title": "라이선스가 없음"
23 | },
24 | "overviewDetails": "오버뷰 맵에 더 큰 맵 영역 안에서의 현재 범위를 보여 줍니다."
25 | },
26 | "nav": {
27 | "next": "다음",
28 | "previous": "이전",
29 | "close": "닫기"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "위치를 찾을 수 없습니다.",
34 | "notWhatYouWanted": "원하는 위치가 아닙니까?",
35 | "selectAnother": "다른 위치 선택",
36 | "currentLocation": "현재 위치",
37 | "title": "위치"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "가로",
42 | "label2": "세로",
43 | "label3": "가로",
44 | "label4": "세로"
45 | },
46 | "legend": "범례를 결과에 추가",
47 | "title": "제목",
48 | "titlePrompt": "사용자 정의 제목 추가"
49 | },
50 | "share": {
51 | "extent": "현재 맵 범위 사용",
52 | "label": "이 맵 공유",
53 | "link": "맵 링크",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "기본 범위",
60 | "locate": "내 위치 찾기",
61 | "legend": "범례",
62 | "bookmarks": "책갈피",
63 | "layers": "레이어",
64 | "basemap": "베이스맵 갤러리",
65 | "overview": "오버뷰 맵",
66 | "measure": "측정",
67 | "edit": "편집",
68 | "time": "시간",
69 | "print": "인쇄",
70 | "details": "세부정보",
71 | "share": "공유"
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 vaizdą",
9 | "size": "Dydis (plotis / aukštis):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "El. paštas",
14 | "copy": "Nukopijuoti URL į mainų sritį",
15 | "copied": "Nukopijuota"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/lt/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Žemėlapio sukurti nepavyko",
20 | "licenseError": {
21 | "message": "Jūsų paskyra nelicencijuota naudoti ne viešas konfigūruojamas aplikacijas. Kreipkitės į organizacijos administratorių, kad paskirtų jums vartotojo tipą, kuris turi svarbiausias aplikacijas, arba suteiktų jums papildomą svarbiausių aplikacijų licenciją.",
22 | "title": "Nelicencijuota"
23 | },
24 | "overviewDetails": "Apžvalgos žemėlapyje rodoma esama žemėlapio aprėptis."
25 | },
26 | "nav": {
27 | "next": "Kitas",
28 | "previous": "Ankstesnis",
29 | "close": "Uždaryti"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Vietos surasti nepavyko",
34 | "notWhatYouWanted": "Ne tai, ko norėjote?",
35 | "selectAnother": "Pasirinkite kitą vietą",
36 | "currentLocation": "Esama vieta",
37 | "title": "Vieta"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Horizontalus",
42 | "label2": "Vertikalus",
43 | "label3": "Horizontalus",
44 | "label4": "Vertikalus"
45 | },
46 | "legend": "Įtraukti legendą į išvestį",
47 | "title": "Pavadinimas",
48 | "titlePrompt": "Pridėti adaptuotą pavadinimą"
49 | },
50 | "share": {
51 | "extent": "Naudoti esamą žemėlapio aprėptį",
52 | "label": "Bendrinti šį žemėlapį",
53 | "link": "Žemėlapio nuoroda",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Numatytoji aprėptis",
60 | "locate": "Rasti mano vietą",
61 | "legend": "Legenda",
62 | "bookmarks": "Žymos",
63 | "layers": "Sluoksniai",
64 | "basemap": "Pagrindo žemėlapių galerija",
65 | "overview": "Apžvalga",
66 | "measure": "Matuoti",
67 | "edit": "Redaguoti",
68 | "time": "Laikas",
69 | "print": "Spausdinti",
70 | "details": "Išsamiau",
71 | "share": "Bendrinti"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/lv/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Koplietot",
5 | "heading": "Koplietot šo karti",
6 | "url": "Kartes saite",
7 | "embed": "Iedarināt karti",
8 | "extent": "Koplietot pašreizējo kartes skatu",
9 | "size": "Izmērs (platums/augstums):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-pasts",
14 | "copy": "Kopēt īso url starpliktuvē",
15 | "copied": "Nokopēts"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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 kartvisning",
9 | "size": "Størrelse (bredde/høyde):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post",
14 | "copy": "Kopier kort URL til utklippstavlen",
15 | "copied": "Kopiert"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/nb/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kan ikke opprette kart",
20 | "licenseError": {
21 | "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.",
22 | "title": "Ikke lisensiert"
23 | },
24 | "overviewDetails": "Oversiktskart viser den gjeldende utstrekningen for kartet innenfor konteksten av et større område."
25 | },
26 | "nav": {
27 | "next": "Neste",
28 | "previous": "Forrige",
29 | "close": "Ja"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Finner ikke lokasjonen",
34 | "notWhatYouWanted": "Ikke det du lette etter?",
35 | "selectAnother": "Velg en annen lokasjon",
36 | "currentLocation": "Gjeldende lokasjon",
37 | "title": "Lokasjon"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Landskap",
42 | "label2": "Stående",
43 | "label3": "Landskap",
44 | "label4": "Stående"
45 | },
46 | "legend": "Legg til kartforklaring i resultatet",
47 | "title": "Tittel",
48 | "titlePrompt": "Legg til egendefinert tittel"
49 | },
50 | "share": {
51 | "extent": "Bruk gjeldende kartutstrekning",
52 | "label": "Del dette kartet",
53 | "link": "Kartkobling",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standard utstrekning",
60 | "locate": "Finn min lokasjon",
61 | "legend": "Tegnforklaring",
62 | "bookmarks": "Bokmerker",
63 | "layers": "Lag",
64 | "basemap": "Bakgrunnskartgalleri",
65 | "overview": "Oversiktskart",
66 | "measure": "Mål",
67 | "edit": "Rediger",
68 | "time": "Tid",
69 | "print": "Skriv ut",
70 | "details": "Detaljer",
71 | "share": "Dele"
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 kaartweergave delen",
9 | "size": "Grootte (breedte/hoogte):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Korte URL naar klembord kopiëren",
15 | "copied": "Gekopieerd"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/nl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kaart kan niet gemaakt worden",
20 | "licenseError": {
21 | "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.",
22 | "title": "Geen licentie"
23 | },
24 | "overviewDetails": "De Overview map toont de huidige extent van de kaart binnen de context van een groter gebied."
25 | },
26 | "nav": {
27 | "next": "Volgende",
28 | "previous": "Vorige",
29 | "close": "Sluiten"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Locatie is niet gevonden",
34 | "notWhatYouWanted": "Niet wat u wilde?",
35 | "selectAnother": "Een andere locatie selecteren",
36 | "currentLocation": "Huidige locatie",
37 | "title": "Locatie"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Liggend",
42 | "label2": "Staand",
43 | "label3": "Liggend",
44 | "label4": "Staand"
45 | },
46 | "legend": "Legenda toevoegen aan uitvoer",
47 | "title": "Titel",
48 | "titlePrompt": "Aangepaste titel toevoegen"
49 | },
50 | "share": {
51 | "extent": "Huidig kaartextent gebruiken",
52 | "label": "Deze kaart delen",
53 | "link": "Kaartkoppeling",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standaardextent",
60 | "locate": "Mijn locatie vinden",
61 | "legend": "Legenda",
62 | "bookmarks": "Bladwijzers",
63 | "layers": "Kaartlagen",
64 | "basemap": "basiskaartgalerij",
65 | "overview": "Overzichtskaart",
66 | "measure": "Meten",
67 | "edit": "Bewerken",
68 | "time": "Tijd",
69 | "print": "Afdrukken",
70 | "details": "Details",
71 | "share": "Delen"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/pl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Udostępnianie",
5 | "heading": "Udostępnij tę mapę",
6 | "url": "Łącze do mapy",
7 | "embed": "Osadź mapę",
8 | "extent": "Udostępnij bieżący widok mapy",
9 | "size": "Rozmiar (szerokość/wysokość):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Adres e-mail",
14 | "copy": "Kopiuj skrócony adres URL do schowka",
15 | "copied": "Skopiowane"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/pl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Nie można utworzyć mapy",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nie licencjonowano"
23 | },
24 | "overviewDetails": "Mapa przeglądowa wyświetla aktualny zasięg mapy w kontekście większego obszaru."
25 | },
26 | "nav": {
27 | "next": "Dalej",
28 | "previous": "Powrót",
29 | "close": "Zamknij"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Nie można odnaleźć lokalizacji",
34 | "notWhatYouWanted": "Oczekiwano innej lokalizacji?",
35 | "selectAnother": "Wybierz inną lokalizację",
36 | "currentLocation": "Bieżąca lokalizacja",
37 | "title": "Lokalizacja"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Krajobraz",
42 | "label2": "Pionowo",
43 | "label3": "Krajobraz",
44 | "label4": "Pionowo"
45 | },
46 | "legend": "Dodaj legendę do danych wynikowych",
47 | "title": "Tytuł",
48 | "titlePrompt": "Dodaj niestandardowy tytuł"
49 | },
50 | "share": {
51 | "extent": "Użyj zasięgu bieżącej mapy",
52 | "label": "Udostępnij tę mapę",
53 | "link": "Łącze do mapy",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Zasięg domyślny",
60 | "locate": "Znajdź moją lokalizację",
61 | "legend": "Legenda",
62 | "bookmarks": "Zakładki",
63 | "layers": "Warstwy",
64 | "basemap": "Galeria map bazowych",
65 | "overview": "Mapa przeglądowa",
66 | "measure": "Zmierz",
67 | "edit": "Edytuj",
68 | "time": "Czas",
69 | "print": "Drukuj",
70 | "details": "Szczegóły",
71 | "share": "Udostępnianie"
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 visualização de mapa atual",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copiar URL curta na área de transferência",
15 | "copied": "Copiado"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/pt-PT/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partilhar",
5 | "heading": "Partilhar este mapa",
6 | "url": "Ligação do Mapa",
7 | "embed": "Incorporar Mapa",
8 | "extent": "Partilhar atual vista de mapa",
9 | "size": "Tamanho (largura/altura):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "Correio Eletrónico",
14 | "copy": "Copiar url curto para a área de transferência",
15 | "copied": "Copiado"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/pt-PT/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Não foi possível criar mapa",
20 | "licenseError": {
21 | "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.",
22 | "title": "Não licenciado"
23 | },
24 | "overviewDetails": "O mapa de vista geral exibe a extensão atual do mapa no contexto de uma área mais alargada."
25 | },
26 | "nav": {
27 | "next": "Seguinte",
28 | "previous": "Anterior",
29 | "close": "Fechar"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "A localização não pode ser encontrada",
34 | "notWhatYouWanted": "Não é o que pretendia?",
35 | "selectAnother": "Selecionar outro local",
36 | "currentLocation": "Localização Atual",
37 | "title": "Localização"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Paisagem",
42 | "label2": "Retrato",
43 | "label3": "Paisagem",
44 | "label4": "Retrato"
45 | },
46 | "legend": "Adicionar legenda à saída",
47 | "title": "Título",
48 | "titlePrompt": "Adicionar título personalizado"
49 | },
50 | "share": {
51 | "extent": "Utilizar extensão de mapa atual",
52 | "label": "Partilhar este mapa",
53 | "link": "Ligação do Mapa",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Extensão padrão",
60 | "locate": "Encontrar o meu local",
61 | "legend": "Legenda",
62 | "bookmarks": "Marcadores",
63 | "layers": "Camadas",
64 | "basemap": "Galeria de mapas base",
65 | "overview": "Vista Geral de Mapa",
66 | "measure": "Medir",
67 | "edit": "Editar",
68 | "time": "Tempo",
69 | "print": "Imprimir",
70 | "details": "Detalhes",
71 | "share": "Partilhar"
72 | }
73 | });
--------------------------------------------------------------------------------
/js/nls/ro/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Partajare",
5 | "heading": "Partajare această hartă",
6 | "url": "Link către hartă",
7 | "embed": "Încorporare hartă",
8 | "extent": "Partajare vizualizare curentă de hartă",
9 | "size": "Dimensiune (lăţime/înălţime):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-mail",
14 | "copy": "Copiere URL scurt în clipboard",
15 | "copied": "Copiat"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/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": "Электронная почта",
14 | "copy": "Копировать краткий url-адрес в буфер обмена",
15 | "copied": "Скопировано"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/sl/ShareDialog.js:
--------------------------------------------------------------------------------
1 | define({
2 | "widgets": {
3 | "ShareDialog": {
4 | "title": "Deli",
5 | "heading": "Deli to karto",
6 | "url": "Povezava do karte",
7 | "embed": "Vdelana karta",
8 | "extent": "Deli trenutni pogled karte",
9 | "size": "Velikost (širina/višina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google+",
13 | "emailTooltip": "E-pošta",
14 | "copy": "Kopiraj kratki URL v odložišče",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/sl/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Karte ni mogoče ustvariti",
20 | "licenseError": {
21 | "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.",
22 | "title": "Brez licence"
23 | },
24 | "overviewDetails": "Pregledna karta prikazuje trenutni obseg karte znotraj konteksta večjega območja."
25 | },
26 | "nav": {
27 | "next": "Naslednji",
28 | "previous": "Prejšnji",
29 | "close": "Zapri"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Lokacije ni bilo mogoče najti",
34 | "notWhatYouWanted": "Ni tisto, kar ste želeli?",
35 | "selectAnother": "Izberite drugo lokacijo",
36 | "currentLocation": "Trenutna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Ležeče",
42 | "label2": "Pokončno",
43 | "label3": "Ležeče",
44 | "label4": "Pokončno"
45 | },
46 | "legend": "Dodaj legendo k izpisu",
47 | "title": "Ime",
48 | "titlePrompt": "Dodaj ime po meri"
49 | },
50 | "share": {
51 | "extent": "Uporabi trenutni obseg karte",
52 | "label": "Deli karto",
53 | "link": "Povezava karte",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Privzeti obseg",
60 | "locate": "Najdi mojo lokacijo",
61 | "legend": "Legenda",
62 | "bookmarks": "Zaznamki",
63 | "layers": "Sloji",
64 | "basemap": "Galerija temeljnih kart",
65 | "overview": "Pregledna karta",
66 | "measure": "Meritve",
67 | "edit": "Uredi",
68 | "time": "Čas",
69 | "print": "Tiskanje",
70 | "details": "Podrobnosti",
71 | "share": "Deli"
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 prikaz mape",
9 | "size": "Veličina (širina/visina):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-Pošta",
14 | "copy": "Kopiraj skraćenu URL adresu u ostavu",
15 | "copied": "Kopirano"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/sr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Kreiranje mape nije moguće",
20 | "licenseError": {
21 | "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.",
22 | "title": "Nema licencu"
23 | },
24 | "overviewDetails": "Pregledna mapa prikazuje trenutni obuhvat mape u kontekstu veće površine."
25 | },
26 | "nav": {
27 | "next": "Sledeće",
28 | "previous": "Prethodno",
29 | "close": "Zatvori"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Pronalaženje lokacije nije moguće",
34 | "notWhatYouWanted": "Niste pronašli ono što ste tražili?",
35 | "selectAnother": "Izaberite drugu lokaciju",
36 | "currentLocation": "Trenutna lokacija",
37 | "title": "Lokacija"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Položeno",
42 | "label2": "Uspravno",
43 | "label3": "Položeno",
44 | "label4": "Uspravno"
45 | },
46 | "legend": "Dodaj legendu u rezultate",
47 | "title": "Naslov",
48 | "titlePrompt": "Dodaj prilagođeni naslov"
49 | },
50 | "share": {
51 | "extent": "Koristi trenutni obuhvat mape",
52 | "label": "Podeli ovu mapu",
53 | "link": "Link ka mapi",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Podrazumevani obuhvat",
60 | "locate": "Pronađi moju lokaciju",
61 | "legend": "Legenda",
62 | "bookmarks": "Obeleživači",
63 | "layers": "Slojevi",
64 | "basemap": "Galerija pozadinskih mapa",
65 | "overview": "Pregled mape",
66 | "measure": "Izmeri",
67 | "edit": "Izmeni",
68 | "time": "Vreme",
69 | "print": "Odštampaj",
70 | "details": "Detalji",
71 | "share": "Podeli"
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 kartvy",
9 | "size": "Storlek (bredd/höjd):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-post",
14 | "copy": "Kopiera kort URL till Urklipp",
15 | "copied": "Kopierad"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/sv/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Det går inte att skapa kartan",
20 | "licenseError": {
21 | "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.",
22 | "title": "Inte licensierad"
23 | },
24 | "overviewDetails": "Översiktskartan visar den nuvarande utbredningen för kartan inom ramen för ett större område."
25 | },
26 | "nav": {
27 | "next": "Nästa",
28 | "previous": "Föregående",
29 | "close": "Stäng"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Det gick inte att hitta platsen",
34 | "notWhatYouWanted": "Är det inte vad du vill ha?",
35 | "selectAnother": "Välj en annan plats",
36 | "currentLocation": "Aktuell plats",
37 | "title": "Plats"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Liggande",
42 | "label2": "Stående",
43 | "label3": "Liggande",
44 | "label4": "Stående"
45 | },
46 | "legend": "Lägg till teckenförklaring i utdata",
47 | "title": "Titel",
48 | "titlePrompt": "Lägg till anpassad titel"
49 | },
50 | "share": {
51 | "extent": "Använd aktuell kartutbredning",
52 | "label": "Dela den här kartan",
53 | "link": "Kartlänk",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Standardutbredning",
60 | "locate": "Hitta min plats",
61 | "legend": "Teckenförklaring",
62 | "bookmarks": "Bokmärken",
63 | "layers": "Lager",
64 | "basemap": "Galleri för baskarta",
65 | "overview": "Översiktskarta",
66 | "measure": "Mät",
67 | "edit": "Redigera",
68 | "time": "Tid",
69 | "print": "Skriv ut",
70 | "details": "Detaljer",
71 | "share": "Dela"
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 | "copy": "คัดลอก URL ย่อไปที่คลิปบอร์ด",
15 | "copied": "คัดลอก"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/th/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "ไม่สามารถสร้างแผนที่ได้",
20 | "licenseError": {
21 | "message": "บัญชีผู้ใช้ของคุณไม่มีใบอนุญาตในการใช้งานแอปที่กำหนดค่าได้ซึ่งไม่ใช่แบบสาธารณะ โปรดขอให้ผู้ดูแลองค์กรของคุณกำหนดประเภทผู้ใช้ที่มีใบอนุญาตแอป Essential หรือแอดออนแอป Essential ให้กับคุณ",
22 | "title": "ไม่มีใบอนุญาต"
23 | },
24 | "overviewDetails": "แผนที่ภาพรวมแสดงขอบเขตปัจจุบันของแผนที่ภายในบริบทของพื้นที่ที่กว้างกว่า"
25 | },
26 | "nav": {
27 | "next": "ถัดไป",
28 | "previous": "ก่อนหน้า",
29 | "close": "ปิด"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "ไม่พบตำแหน่งนี้",
34 | "notWhatYouWanted": "ไม่ใช่สิ่งที่คุณต้องการใช่หรือไม่?",
35 | "selectAnother": "เลือกตำแหน่งอื่นๆ",
36 | "currentLocation": "ตำแหน่งปัจจุบัน",
37 | "title": "ตำแหน่ง"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "แนวนอน",
42 | "label2": "แนวตั้ง",
43 | "label3": "แนวนอน",
44 | "label4": "แนวตั้ง"
45 | },
46 | "legend": "เพิ่มคำอธิบายแผนที่ไปยังส่วนผลลัพธ์",
47 | "title": "ชื่อ",
48 | "titlePrompt": "เพิ่มชื่อที่ต้องการ"
49 | },
50 | "share": {
51 | "extent": "ใช้ขอบเขตแผนที่ที่แสดงอยู่ในปัจจุบัน",
52 | "label": "แชร์แผนที่นี้",
53 | "link": "เชื่อมโยงแผนที่",
54 | "facebook": "เฟสบุ๊ค",
55 | "twitter": "ทวิตเตอร์"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "ขนาดเริ่มต้น",
60 | "locate": "ค้นหาตำแหน่งของฉัน",
61 | "legend": "คำอธิบายสัญลักษณ์",
62 | "bookmarks": "บุ๊คมาร์ค",
63 | "layers": "เลเยอร์",
64 | "basemap": "แกลเลอรีแผนที่ฐาน",
65 | "overview": "ดูภาพรวมแผนที่",
66 | "measure": "วัด",
67 | "edit": "แก้ไข",
68 | "time": "เวลา",
69 | "print": "พิมพ์",
70 | "details": "รายละเอียด",
71 | "share": "แบ่งปัน"
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 görünümünü paylaş",
9 | "size": "Boyut (genişlik/yükseklik):",
10 | "facebookTooltip": "Facebook",
11 | "twitterTooltip": "Twitter",
12 | "gplusTooltip": "Google Plus",
13 | "emailTooltip": "E-posta",
14 | "copy": "Kısa url’yi panoya kopyala",
15 | "copied": "Kopyalandı"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/tr/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Harita oluşturulamıyor",
20 | "licenseError": {
21 | "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.",
22 | "title": "Lisanslı Değil"
23 | },
24 | "overviewDetails": "Genel görünüm haritaları daha geniş bir kapsam içindeki geçerli harita yayılımını gösterir."
25 | },
26 | "nav": {
27 | "next": "Sonraki",
28 | "previous": "Önceki",
29 | "close": "Kapat"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Konum bulunamadı",
34 | "notWhatYouWanted": "İstediğiniz bu değil mi?",
35 | "selectAnother": "Başka bir konum seç",
36 | "currentLocation": "Mevcut Konum",
37 | "title": "Konum"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Yatay",
42 | "label2": "Dikey",
43 | "label3": "Yatay",
44 | "label4": "Dikey"
45 | },
46 | "legend": "Çıktıya gösterim ekle",
47 | "title": "Başlık",
48 | "titlePrompt": "Özel başlık ekle"
49 | },
50 | "share": {
51 | "extent": "Geçerli harita yayılımını kullan",
52 | "label": "Bu haritayı paylaş",
53 | "link": "Harita Bağlantısı",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Varsayılan yayılım",
60 | "locate": "Konumumu bul",
61 | "legend": "Gösterim",
62 | "bookmarks": "Yer imleri",
63 | "layers": "Katmanlar",
64 | "basemap": "Altlık haritası galerisi",
65 | "overview": "Genel bakış haritası",
66 | "measure": "Ölçü",
67 | "edit": "Düzenle",
68 | "time": "Zaman",
69 | "print": "Yazdır",
70 | "details": "Detaylar",
71 | "share": "Paylaş"
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ẻ chế độ xem 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 | "copy": "Sao chép url ngắn sang bộ nhớ tạm",
15 | "copied": "Đã sao chép"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/vi/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "Không thể tạo bản đồ",
20 | "licenseError": {
21 | "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ợ.",
22 | "title": "Không được cấp phép"
23 | },
24 | "overviewDetails": "Bản đồ toàn cảnh hiển thị phạm vi bản đồ hiện tại trong bối cảnh khu vực rộng hơn."
25 | },
26 | "nav": {
27 | "next": "Tiếp theo",
28 | "previous": "Trước",
29 | "close": "Đóng"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "Không thể tìm thấy vị trí",
34 | "notWhatYouWanted": "Không phải cái bạn muốn?",
35 | "selectAnother": "Chọn một vị trí khác",
36 | "currentLocation": "Vị trí Hiện tại",
37 | "title": "Vị trí"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "Cảnh quan",
42 | "label2": "Hướng dọc",
43 | "label3": "Cảnh quan",
44 | "label4": "Hướng dọc"
45 | },
46 | "legend": "Thêm chú giải vào kết quả đầu ra",
47 | "title": "Tiêu đề",
48 | "titlePrompt": "Thêm tiêu đề tùy chỉnh"
49 | },
50 | "share": {
51 | "extent": "Sử dụng phạm vi bản đồ hiện tại",
52 | "label": "Chia sẻ bản đồ này",
53 | "link": "Liên kết Bản đồ",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "Phạm vi mặc định",
60 | "locate": "Tìm vị trí của tôi",
61 | "legend": "Chú giải",
62 | "bookmarks": "Đánh dấu",
63 | "layers": "Lớp",
64 | "basemap": "Bộ sưu tập ảnh bản đồ nền",
65 | "overview": "Bản đồ tổng quan",
66 | "measure": "Đo lường",
67 | "edit": "Chỉnh sửa",
68 | "time": "Thời gian",
69 | "print": "In",
70 | "details": "Chi tiết",
71 | "share": "Chia sẻ"
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 +",
13 | "emailTooltip": "电子邮件",
14 | "copy": "复制短 URL 到剪贴板",
15 | "copied": "已复制"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/zh-CN/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "无法创建地图",
20 | "licenseError": {
21 | "message": "您的帐户无权使用非公共的可配置应用程序。 请联系您的组织管理员为您分配包含基本应用程序或附加基本应用程序许可的用户类型。",
22 | "title": "未经许可"
23 | },
24 | "overviewDetails": "鹰眼图显示大面积环境中的当前地图范围。"
25 | },
26 | "nav": {
27 | "next": "下一页",
28 | "previous": "上一页",
29 | "close": "关闭"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "无法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "选择其他位置",
36 | "currentLocation": "当前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "横向",
42 | "label2": "纵向",
43 | "label3": "横向",
44 | "label4": "纵向"
45 | },
46 | "legend": "向输出添加图例",
47 | "title": "标题",
48 | "titlePrompt": "添加自定义标题"
49 | },
50 | "share": {
51 | "extent": "使用当前地图范围",
52 | "label": "共享此地图",
53 | "link": "地图链接",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "默认范围",
60 | "locate": "查找我的位置",
61 | "legend": "图例",
62 | "bookmarks": "书签",
63 | "layers": "图层",
64 | "basemap": "底图库",
65 | "overview": "鹰眼图",
66 | "measure": "测量",
67 | "edit": "编辑",
68 | "time": "时间",
69 | "print": "打印",
70 | "details": "详细信息",
71 | "share": "共享"
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 | "copy": "將簡短的 url 複製到剪貼簿",
15 | "copied": "已複製"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/zh-hk/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "無法建立地圖",
20 | "licenseError": {
21 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
22 | "title": "未經許可"
23 | },
24 | "overviewDetails": "總覽圖顯示較大區域內容中之地圖的目前範圍。"
25 | },
26 | "nav": {
27 | "next": "下一頁",
28 | "previous": "上一頁",
29 | "close": "關閉"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "無法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "選擇其他位置",
36 | "currentLocation": "目前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "橫向",
42 | "label2": "縱向",
43 | "label3": "橫向",
44 | "label4": "縱向"
45 | },
46 | "legend": "在輸出新增圖例",
47 | "title": "標題",
48 | "titlePrompt": "新增自訂標題"
49 | },
50 | "share": {
51 | "extent": "使用目前地圖範圍",
52 | "label": "共用此地圖",
53 | "link": "地圖連結",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "預設範圍",
60 | "locate": "查詢我的位置",
61 | "legend": "圖例",
62 | "bookmarks": "書簽",
63 | "layers": "圖層",
64 | "basemap": "底圖庫",
65 | "overview": "鷹眼圖",
66 | "measure": "測量",
67 | "edit": "編輯",
68 | "time": "時間",
69 | "print": "列印",
70 | "details": "詳細資訊",
71 | "share": "分享"
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 | "copy": "將簡短的 url 複製到剪貼簿",
15 | "copied": "已複製"
16 | }
17 | }
18 | });
--------------------------------------------------------------------------------
/js/nls/zh-tw/resources.js:
--------------------------------------------------------------------------------
1 | /*global define */
2 | /*
3 | | Copyright 2014 Esri
4 | |
5 | | Licensed under the Apache License, Version 2.0 (the "License");
6 | | you may not use this file except in compliance with the License.
7 | | You may obtain a copy of the License at
8 | |
9 | | http://www.apache.org/licenses/LICENSE-2.0
10 | |
11 | | Unless required by applicable law or agreed to in writing, software
12 | | distributed under the License is distributed on an "AS IS" BASIS,
13 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | | See the License for the specific language governing permissions and
15 | | limitations under the License.
16 | */
17 | define({
18 | "map": {
19 | "error": "無法建立地圖",
20 | "licenseError": {
21 | "message": "您的帳號未經授權,無法使用非公開的可配置應用程式。 請聯繫您的組織管理員,請其將包含基礎應用程式或附加元件基礎應用程式授權的使用者類型指派給您。",
22 | "title": "未經許可"
23 | },
24 | "overviewDetails": "總覽圖顯示較大區域內容中之地圖的目前範圍。"
25 | },
26 | "nav": {
27 | "next": "下一頁",
28 | "previous": "上一頁",
29 | "close": "關閉"
30 | },
31 | "tools": {
32 | "search": {
33 | "error": "無法找到位置",
34 | "notWhatYouWanted": "不是您想要的位置?",
35 | "selectAnother": "選擇其他位置",
36 | "currentLocation": "目前位置",
37 | "title": "位置"
38 | },
39 | "print": {
40 | "layouts": {
41 | "label1": "橫向",
42 | "label2": "縱向",
43 | "label3": "橫向",
44 | "label4": "縱向"
45 | },
46 | "legend": "在輸出新增圖例",
47 | "title": "標題",
48 | "titlePrompt": "新增自訂標題"
49 | },
50 | "share": {
51 | "extent": "使用目前地圖範圍",
52 | "label": "共用此地圖",
53 | "link": "地圖連結",
54 | "facebook": "Facebook",
55 | "twitter": "Twitter"
56 | }
57 | },
58 | "tooltips": {
59 | "home": "預設範圍",
60 | "locate": "查詢我的位置",
61 | "legend": "圖例",
62 | "bookmarks": "書簽",
63 | "layers": "圖層",
64 | "basemap": "底圖庫",
65 | "overview": "鷹眼圖",
66 | "measure": "測量",
67 | "edit": "編輯",
68 | "time": "時間",
69 | "print": "列印",
70 | "details": "詳細資訊",
71 | "share": "分享"
72 | }
73 | });
--------------------------------------------------------------------------------
/oauth-callback.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "viewer",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "js/main.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "",
11 | "license": "ISC",
12 | "devDependencies": {
13 | "gulp": "^3.9.1",
14 | "gulp-clean-css": "^3.0.4",
15 | "gulp-concat-css": "^2.3.0",
16 | "gulp-html-replace": "^1.6.2",
17 | "gulp-imagemin": "^3.2.0",
18 | "gulp-minify": "0.0.15",
19 | "gulp-more-css": "^1.0.0"
20 | },
21 | "dependencies": {
22 | "gulp-shorthand": "^1.1.0"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------