@vannizhang/living-atlas-content-validator 1.5.7 → 1.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Checks if a given description contains any keywords related to data sources.
3
+ *
4
+ * This function iterates over a predefined set of regular expressions and uses the `matches` utility function
5
+ * to determine if any of these expressions match the provided description. If a match is found, the function
6
+ * returns `true`; otherwise, it returns `false`.
7
+ *
8
+ * @param {string} description - The text to be checked for data source keywords.
9
+ * @returns {boolean} - Returns `true` if any data source keywords are found, otherwise `false`.
10
+ */
11
+ export declare const containsDataSource: (description: string) => boolean;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.containsDataSource = void 0;
4
+ const matches_1 = require("../util/matches");
5
+ /**
6
+ * An array of regular expressions used to identify keywords related to data sources in a given text.
7
+ * These keywords include variations of "source", "data source", and "citation".
8
+ */
9
+ const DataSourceKeyWordRegExp = [
10
+ // Matches HTML tags with the word "Source" or "Sources" (case-insensitive)
11
+ /<[^>]+>\s*Sources?\s*<\/[^>]+>/i,
12
+ // Matches the word "source" followed by a colon (case-insensitive)
13
+ /\bsource\b:/i,
14
+ // Matches the word "sources" followed by a colon (case-insensitive)
15
+ /\bsources\b:/i,
16
+ // Matches the phrase "data source" (case-insensitive)
17
+ /\bdata source\b/i,
18
+ // Matches the phrase "data sources" (case-insensitive)
19
+ /\bdata sources\b/i,
20
+ // Matches the phrase "source data" (case-insensitive)
21
+ /\bsource data\b/i,
22
+ // Matches the word "citation" (case-insensitive)
23
+ /\bcitation\b/i,
24
+ // Matches the word "citations" (case-insensitive)
25
+ /\bcitations\b/i,
26
+ ];
27
+ /**
28
+ * Checks if a given description contains any keywords related to data sources.
29
+ *
30
+ * This function iterates over a predefined set of regular expressions and uses the `matches` utility function
31
+ * to determine if any of these expressions match the provided description. If a match is found, the function
32
+ * returns `true`; otherwise, it returns `false`.
33
+ *
34
+ * @param {string} description - The text to be checked for data source keywords.
35
+ * @returns {boolean} - Returns `true` if any data source keywords are found, otherwise `false`.
36
+ */
37
+ const containsDataSource = (description) => {
38
+ for (const regex of DataSourceKeyWordRegExp) {
39
+ if ((0, matches_1.matches)(description, regex, 'i')) {
40
+ return true;
41
+ }
42
+ }
43
+ return false;
44
+ };
45
+ exports.containsDataSource = containsDataSource;
46
+ //# sourceMappingURL=findDataSource.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"findDataSource.js","sourceRoot":"","sources":["../../../src/lib/description/findDataSource.ts"],"names":[],"mappings":";;;AAAA,6CAA0C;AAE1C;;;GAGG;AACH,MAAM,uBAAuB,GAAG;IAC5B,2EAA2E;IAC3E,iCAAiC;IACjC,mEAAmE;IACnE,cAAc;IACd,oEAAoE;IACpE,eAAe;IACf,sDAAsD;IACtD,kBAAkB;IAClB,uDAAuD;IACvD,mBAAmB;IACnB,sDAAsD;IACtD,kBAAkB;IAClB,iDAAiD;IACjD,eAAe;IACf,kDAAkD;IAClD,gBAAgB;CACnB,CAAC;AAEF;;;;;;;;;GASG;AACI,MAAM,kBAAkB,GAAG,CAAC,WAAmB,EAAE,EAAE;IACtD,KAAK,MAAM,KAAK,IAAI,uBAAuB,EAAE;QACzC,IAAI,IAAA,iBAAO,EAAC,WAAW,EAAE,KAAK,EAAE,GAAG,CAAC,EAAE;YAClC,OAAO,IAAI,CAAC;SACf;KACJ;IAED,OAAO,KAAK,CAAC;AACjB,CAAC,CAAC;AARW,QAAA,kBAAkB,sBAQ7B"}
@@ -9,6 +9,7 @@ import { IItem, ValidationInfo } from '../../types';
9
9
  * - Cannot be empty
10
10
  * - Must contain at least one link
11
11
  * - Must have 48 or more words
12
+ * - Should contains "Data Source", "Source" or other similar key words that describe the source of the data.
12
13
  *
13
14
  * Living Atlas specific rules (international):
14
15
  * - Cannot be empty
@@ -12,6 +12,8 @@ const isEmpty_1 = require("../util/isEmpty");
12
12
  const getScoringRules_1 = require("../util/getScoringRules");
13
13
  const stringsConfig_1 = require("../util/stringsConfig");
14
14
  const scoringConfig_1 = require("./scoringConfig");
15
+ const findDataSource_1 = require("./findDataSource");
16
+ const checkIsLayer_1 = require("../util/checkIsLayer");
15
17
  /**
16
18
  * Validate an item's description. A valid description must meet these rules below:
17
19
  *
@@ -22,6 +24,7 @@ const scoringConfig_1 = require("./scoringConfig");
22
24
  * - Cannot be empty
23
25
  * - Must contain at least one link
24
26
  * - Must have 48 or more words
27
+ * - Should contains "Data Source", "Source" or other similar key words that describe the source of the data.
25
28
  *
26
29
  * Living Atlas specific rules (international):
27
30
  * - Cannot be empty
@@ -30,11 +33,22 @@ const scoringConfig_1 = require("./scoringConfig");
30
33
  */
31
34
  const isValidDescription = (item) => {
32
35
  const { description } = item;
36
+ // check and see if the input item is Layer
37
+ const isLayer = (0, checkIsLayer_1.checkIsLayer)(item);
33
38
  // scoring rules locale
34
39
  const locale = (0, getScoringRules_1.getScoringRulesLocale)(item.culture);
35
- const weightFactors = locale === 'en'
36
- ? scoringConfig_1.scoringConfig.weightFactors.DEFAULT
37
- : scoringConfig_1.scoringConfig.weightFactors.INTERNATIONAL;
40
+ let weightFactors = scoringConfig_1.scoringConfig.weightFactors.DEFAULT;
41
+ // locale === 'en'
42
+ // ? scoringConfig.weightFactors.DEFAULT
43
+ // : scoringConfig.weightFactors.INTERNATIONAL;
44
+ if (locale !== 'en') {
45
+ // for non-english items, use the International weight factors
46
+ weightFactors = scoringConfig_1.scoringConfig.weightFactors.INTERNATIONAL;
47
+ }
48
+ else if (isLayer) {
49
+ // for Layers, use the Layers weight factors
50
+ weightFactors = scoringConfig_1.scoringConfig.weightFactors.LAYERS;
51
+ }
38
52
  // // scoring rules
39
53
  // const SCORING = getScoringRules(item, scoringRulesConfig);
40
54
  const stringsConfig = (0, stringsConfig_1.getStringsConfig)();
@@ -55,6 +69,11 @@ const isValidDescription = (item) => {
55
69
  weightFactor: 0,
56
70
  critical: true,
57
71
  };
72
+ /**
73
+ * We should check the Description and see if it contains key words like "Data Source" or similar
74
+ * for all layer items (English-based)
75
+ */
76
+ const shouldCheckDataSource = locale === 'en' && isLayer;
58
77
  // remove html tags
59
78
  const sanitizedStr = (0, sanitize_html_1.default)(description, {
60
79
  allowedTags: [],
@@ -98,6 +117,16 @@ const isValidDescription = (item) => {
98
117
  // issues.score += SCORING.MIN_LENGTH_SCORE;
99
118
  issues.weightFactor += weightFactors.MIN_LENGTH_FACTOR;
100
119
  }
120
+ // For non-internation items that are also Layers, we need to check if the description
121
+ // contains the key word similar to "data source"
122
+ if (shouldCheckDataSource && (0, findDataSource_1.containsDataSource)(description) === false) {
123
+ issues.messages.push({
124
+ message: stringsConfig.description.CONTAINS_SOURCE_MESSAGE,
125
+ });
126
+ }
127
+ else {
128
+ issues.weightFactor += weightFactors.HAS_SOURCE;
129
+ }
101
130
  if (locale === 'international') {
102
131
  issues.critical = false;
103
132
  }
@@ -1 +1 @@
1
- {"version":3,"file":"isValidDescription.js","sourceRoot":"","sources":["../../../src/lib/description/isValidDescription.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"isValidDescription.js","sourceRoot":"","sources":["../../../src/lib/description/isValidDescription.ts"],"names":[],"mappings":"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"}
@@ -5,11 +5,19 @@ export declare const scoringConfig: {
5
5
  MUST_EXIST_FACTOR: number;
6
6
  MIN_LENGTH_FACTOR: number;
7
7
  HAS_LINK_FACTOR: number;
8
+ HAS_SOURCE: number;
9
+ };
10
+ LAYERS: {
11
+ MUST_EXIST_FACTOR: number;
12
+ MIN_LENGTH_FACTOR: number;
13
+ HAS_LINK_FACTOR: number;
14
+ HAS_SOURCE: number;
8
15
  };
9
16
  INTERNATIONAL: {
10
17
  MUST_EXIST_FACTOR: number;
11
18
  MIN_LENGTH_FACTOR: number;
12
19
  HAS_LINK_FACTOR: number;
20
+ HAS_SOURCE: number;
13
21
  };
14
22
  };
15
23
  };
@@ -9,11 +9,19 @@ exports.scoringConfig = {
9
9
  MUST_EXIST_FACTOR: 0.125,
10
10
  MIN_LENGTH_FACTOR: 0.625,
11
11
  HAS_LINK_FACTOR: 0.25,
12
+ HAS_SOURCE: 0,
13
+ },
14
+ LAYERS: {
15
+ MUST_EXIST_FACTOR: 0.125,
16
+ MIN_LENGTH_FACTOR: 0.375,
17
+ HAS_LINK_FACTOR: 0.25,
18
+ HAS_SOURCE: 0.25,
12
19
  },
13
20
  INTERNATIONAL: {
14
21
  MUST_EXIST_FACTOR: 0.75,
15
22
  MIN_LENGTH_FACTOR: 0,
16
23
  HAS_LINK_FACTOR: 0.25,
24
+ HAS_SOURCE: 0,
17
25
  },
18
26
  },
19
27
  };
@@ -1 +1 @@
1
- {"version":3,"file":"scoringConfig.js","sourceRoot":"","sources":["../../../src/lib/description/scoringConfig.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAElC,QAAA,aAAa,GAAG;IACzB,MAAM,EAAE,CAAC;IACT,aAAa,EAAE;QACX,OAAO,EAAE;YACL,iBAAiB,EAAE,KAAK;YACxB,iBAAiB,EAAE,KAAK;YACxB,eAAe,EAAE,IAAI;SACxB;QACD,aAAa,EAAE;YACX,iBAAiB,EAAE,IAAI;YACvB,iBAAiB,EAAE,CAAC;YACpB,eAAe,EAAE,IAAI;SACxB;KACJ;CACJ,CAAC"}
1
+ {"version":3,"file":"scoringConfig.js","sourceRoot":"","sources":["../../../src/lib/description/scoringConfig.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAElC,QAAA,aAAa,GAAG;IACzB,MAAM,EAAE,CAAC;IACT,aAAa,EAAE;QACX,OAAO,EAAE;YACL,iBAAiB,EAAE,KAAK;YACxB,iBAAiB,EAAE,KAAK;YACxB,eAAe,EAAE,IAAI;YACrB,UAAU,EAAE,CAAC;SAChB;QACD,MAAM,EAAE;YACJ,iBAAiB,EAAE,KAAK;YACxB,iBAAiB,EAAE,KAAK;YACxB,eAAe,EAAE,IAAI;YACrB,UAAU,EAAE,IAAI;SACnB;QACD,aAAa,EAAE;YACX,iBAAiB,EAAE,IAAI;YACvB,iBAAiB,EAAE,CAAC;YACpB,eAAe,EAAE,IAAI;YACrB,UAAU,EAAE,CAAC;SAChB;KACJ;CACJ,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { IItem } from '../../types';
2
+ /**
3
+ * check if the input item is one of the layers item types
4
+ * @param item
5
+ * @returns
6
+ */
7
+ export declare const checkIsLayer: (item: IItem) => boolean;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.checkIsLayer = void 0;
4
+ /**
5
+ * check if the input item is one of the layers item types
6
+ * @param item
7
+ * @returns
8
+ */
9
+ const checkIsLayer = (item) => {
10
+ return (item.type === 'Scene Service' ||
11
+ item.type === 'Feature Service' ||
12
+ item.type === 'Map Service' ||
13
+ item.type === 'Vector Tile Service' ||
14
+ item.type === 'Image Service' ||
15
+ item.type === 'WMS' ||
16
+ item.type === 'Group Layer');
17
+ };
18
+ exports.checkIsLayer = checkIsLayer;
19
+ //# sourceMappingURL=checkIsLayer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkIsLayer.js","sourceRoot":"","sources":["../../../src/lib/util/checkIsLayer.ts"],"names":[],"mappings":";;;AAEA;;;;GAIG;AACI,MAAM,YAAY,GAAG,CAAC,IAAW,EAAW,EAAE;IACjD,OAAO,CACH,IAAI,CAAC,IAAI,KAAK,eAAe;QAC7B,IAAI,CAAC,IAAI,KAAK,iBAAiB;QAC/B,IAAI,CAAC,IAAI,KAAK,aAAa;QAC3B,IAAI,CAAC,IAAI,KAAK,qBAAqB;QACnC,IAAI,CAAC,IAAI,KAAK,eAAe;QAC7B,IAAI,CAAC,IAAI,KAAK,KAAK;QACnB,IAAI,CAAC,IAAI,KAAK,aAAa,CAC9B,CAAC;AACN,CAAC,CAAC;AAVW,QAAA,YAAY,gBAUvB"}
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "Eine gute Beschreibung beantwortet direkt die Fragen \"Was ist das?\" und \"Was zeigt dieser Layer, diese Karte bzw. diese App?\" Zum Behandeln der grundlegenden Fragen nach dem \"Wer, Was, Wann, Wo, Warum und Wie\" (natürlich nicht unbedingt in dieser Reihenfolge) reichen in der Regel ein paar kurze Absätze aus. Vermeiden Sie die Verwendung von Jargon oder Abkürzungen ohne zugehörige Erläuterung. Stellen Sie Weblinks zu Quellinformationen und detaillierten Erläuterungen bereit.",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "Eine gute Beschreibung beantwortet direkt die Fragen \"Was ist das?\" und \"Was zeigt dieser Layer, diese Karte bzw. diese App?\" Zum Behandeln der grundlegenden Fragen nach dem \"Wer, Was, Wann, Wo, Warum und Wie\" (natürlich nicht unbedingt in dieser Reihenfolge) reichen in der Regel ein paar kurze Absätze aus. Vermeiden Sie die Verwendung von Jargon oder Abkürzungen ohne zugehörige Erläuterung. Stellen Sie Weblinks zu Quellinformationen und detaillierten Erläuterungen bereit. Verwenden Sie dazu den Link-Editor in ArcGIS Online und HTTPS-Links. Geben Sie das Jahr oder die Version der Daten an. Machen Sie Angaben zum abgedeckten geographischen Bereich. Stellen Sie für Layer eine einfache Liste der Attributfeld-Aliasnamen bereit. ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "Es werden Punkte vergeben, wenn etwa 4-5 Sätze mit durchschnittlich 12 Wörtern pro Satz vorhanden sind. Es werden Punkte vergeben, wenn Links zu detaillierteren Informationen bereitgestellt wurden.",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "Es werden Punkte vergeben, wenn etwa 4-5 Sätze mit durchschnittlich 12 Wörtern pro Satz vorhanden sind. Es werden Punkte vergeben, wenn Links zu detaillierteren Informationen bereitgestellt wurden. Es werden Punkte für die Angabe \"Quelle: [Quellinformationen oder Link]\" oder \"Bibliografische Angaben: [Quellinformationen oder Link]\" vergeben.",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "Es werden Punkte vergeben, wenn eine Beschreibung vorhanden ist. Es werden Punkte vergeben, wenn Links zu detaillierteren Informationen bereitgestellt wurden.",
17
17
  "LABEL": "Beschreibung verbessern",
18
18
  "TITLE": "Beschreibung prüfen",
19
19
  "EMPTY_STRING_MESSAGE": "Eine Beschreibung ist erforderlich",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "Die Beschreibung ist zu kurz. Fügen Sie weitere Informationen hinzu.",
21
- "CONTAINS_LINKS_MESSAGE": "Fügen Sie Links zu Quellen/weiteren Informationen hinzu."
21
+ "CONTAINS_LINKS_MESSAGE": "(HTTPS-)Links zu Inhaltsquellen/Informationen hinzufügen",
22
+ "CONTAINS_SOURCE_MESSAGE": "Der Beschreibung Quellinformation im Format \"Quelle: [Quellinformationen oder Link]\" hinzufügen"
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "Für eine saubere, fokussierte Karte sind im Allgemeinen etwa 1-5 Layer erforderlich. Wenn ein Element immer mehr Layer erfordert, dann weist dies in der Regel darauf hin, dass das Informationsprodukt profitieren könnte, wenn sich der Ersteller noch einmal Gedanken machen würde. Es wird mehr Zeit benötigt, um zu klären und herauszuarbeiten, wie das Ergebnis aussehen soll.",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "Für ein sauberes, fokussiertes Layer-Element sind im Allgemeinen etwa 1-5 Layer erforderlich. Durch Veröffentlichung eines Layer-Elements mit Dutzenden von Layern kann der Browser unnötig belastet werden. Wägen Sie daher ab, ob vom Benutzer immer alle Layer verwendet werden. Wenn erwartungsgemäß nur einige der Layer in Ihrem Element verwendet werden, müssen alle unerwünschten Layer deaktiviert oder aus der Webkarte bzw. App entfernt werden.",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "Die maximale Punktzahl wird für einen Layer vergeben. Mit steigender Anzahl der Layer wird die Punktzahl reduziert.",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "Verweisen Sie auf Nutzungsbedingungen, die für Ihre Organisation oder den Datenanbieter erforderlich sind. <p>Verwenden Sie beim Hinzufügen von Hyperlinks bitte den Link-Editor in ArcGIS Online.</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "Verweisen Sie auf Nutzungsbedingungen, die für Ihre Organisation oder den Datenanbieter erforderlich sind. <p>Verwenden Sie beim Hinzufügen von Hyperlinks bitte den Link-Editor in ArcGIS Online sowie HTTPS-Links.</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "Verweisen Sie auf Nutzungsbedingungen, die für Ihre Organisation oder den Datenanbieter erforderlich sind.",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "Es werden Punkte vergeben, wenn hier mehr als ein Wort vorhanden ist. Punkte werden auch vergeben für: Text, der einen Hyperlink (zu detaillierteren Informationen zur genaueren Erläuterung der Beschränkungen) enthält.",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "Es werden Punkte vergeben, wenn Informationen zu Zugriff und Verwendung vorhanden ist. Punkte werden auch vergeben für: Text, der einen Hyperlink (zu detaillierteren Informationen zur genaueren Erläuterung der Beschränkungen) enthält.",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "Nutzungsbedingungen prüfen",
42
43
  "EMPTY_STRING_MESSAGE": "Nutzungsbedingungen hinzufügen",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "Weitere Informationen zu Nutzungsbedingungen hinzufügen",
44
- "CONTAINS_NO_LINKS_MESSAGE": " Links zu Quellen/weiteren Informationen hinzufügen"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "(HTTPS-)Links zu Nutzungsbedingungen/Informationen hinzufügen"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "Wenn Sie bereit sind, dann geben Sie Ihr Element öffentlich frei, damit es anderen in Living Atlas angezeigt wird.",
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "A good description directly answers the questions \"What is this?\" and \"What does this layer/map/app show?\" A couple of short paragraphs is usually enough to cover the basic questions of \"who, what, when, where, why and how\" (not necessarily in that order, of course). Avoid using jargon or abbreviations unless they are explained. Provide source information and in-depth explanations via web links.",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "A good description directly answers the questions \"What is this?\" and \"What does this layer/map/app show?\" A couple of short paragraphs is usually enough to cover the basic questions of \"who, what, when, where, why and how\" (not necessarily in that order, of course). Avoid using jargon or abbreviations unless they are explained. Provide source information and in-depth explanations via web links using the link editor in ArcGIS Online and provide HTTPS links. Provide the year or version of the data. Indicate the geographic area covered. For layers, provide a simple list of attribute field aliases included. ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "Points are awarded for having roughly 4-5 sentences, 12 words per sentence average. Points are awarded for providing links to more detailed information.",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "Points are awarded for having roughly 4-5 sentences, 12 words per sentence average. Points are awarded for providing links to more detailed information. Points are awarded for providing \"Source: [source information or link]\" or \"Citation: [source information or link]\".",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "Points are awarded for having a description. Points are awarded for providing links to more detailed information.",
17
17
  "LABEL": "Improve Description",
18
18
  "TITLE": "Check Description",
19
19
  "EMPTY_STRING_MESSAGE": "A description is required",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "Description is too short, add more information.",
21
- "CONTAINS_LINKS_MESSAGE": "Add links to sources / more information."
21
+ "CONTAINS_LINKS_MESSAGE": "Add (HTTPS) links to content sources / information",
22
+ "CONTAINS_SOURCE_MESSAGE": "Add source information to the description using the format \"Source: [source information or link]\""
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "It generally takes about 1-5 layers to make a clean, focused layer item. Publishing a layer item with dozens of layers can put unnecessary loads on the browser, and you must consider whether the user wants to use all these layers all the time. If the user will likely want to use only a few of the layers in your item, they will need to turn off or remove all the unwanted layers from their web map or app.",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "Generally speaking, it takes about 1-5 layers to make a clean, focused map. When an item requires increasingly more layers, it usually indicates the information product may benefit from additional creator ideation. More time is needed to clarify and distill what needs to be built.",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "One layer gets maximum points, with reduced points as the layer count increases.",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "Communicate any Terms of Use required by your organization or the data provider. <p>When adding hyperlinks, please use the link editor in ArcGIS Online.</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "Communicate any Terms of Use required by your organization or the data provider. <p>When adding hyperlinks, please use the link editor in ArcGIS Online and provide HTTPS links.</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "Communicate any Terms of Use required by your organization or by the data provider.",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "Points are awarded for having more than one word here. Also rewarded: text that includes a hyperlink (to more detailed information explaining the constraints more fully).",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "Points are awarded for having access and use information. Also rewarded: text that includes a hyperlink (to more detailed information explaining the constraints more fully).",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "Check Terms of Use",
42
43
  "EMPTY_STRING_MESSAGE": "Add Terms of Use",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "Add more information to Terms of Use",
44
- "CONTAINS_NO_LINKS_MESSAGE": " Add links to sources / more information"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "Add (HTTPS) links to Terms of Use resources / information"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "When ready, publicly share your item so others can see it in Living Atlas.",
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "Una buena descripción responde directamente a las preguntas \"¿Qué es esto?\" y \"¿Qué muestra esta capa/mapa/aplicación?\". Un par de párrafos breves suelen bastar para cubrir las preguntas básicas de \"quién, qué, cuándo, dónde, por qué y cómo\" (no necesariamente en ese orden, por supuesto). Evite utilizar jerga o abreviaturas a menos que se expliquen. Facilite información sobre las fuentes y explicaciones detalladas a través de enlaces web.",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "Una buena descripción responde directamente a las preguntas \"¿Qué es esto?\" y \"¿Qué muestra esta capa/mapa/aplicación?\". Un par de párrafos breves suelen bastar para cubrir las preguntas básicas de \"quién, qué, cuándo, dónde, por qué y cómo\" (no necesariamente en ese orden, por supuesto). Evite utilizar jerga o abreviaturas a menos que se expliquen. Facilite información sobre las fuentes y explicaciones detalladas a través de enlaces web mediante el uso del editor de vínculos de ArcGIS Online y proporcione vínculos HTTPS. Proporcione el año o la versión de los datos. Indique el área geográfica cubierta. Para las capas, proporcione una lista simple de alias de campo de atributo incluidos. ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "Se otorgan puntos por tener aproximadamente 4-5 frases, 12 palabras por frase de media. Se otorgan puntos por proporcionar enlaces a información más detallada.",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "Se otorgan puntos por tener aproximadamente 4-5 frases, 12 palabras por frase de media. Se otorgan puntos por proporcionar enlaces a información más detallada. Los puntos se conceden por proporcionar \"Fuente: [vínculo o información de fuente]\" o \"Citación: [vínculo o información de fuente]\".",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "Se otorgan puntos por tener una descripción. Se otorgan puntos por proporcionar enlaces a información más detallada.",
17
17
  "LABEL": "Mejorar la descripción",
18
18
  "TITLE": "Comprobar la descripción",
19
19
  "EMPTY_STRING_MESSAGE": "Se requiere una descripción",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "La descripción es demasiado corta, agregue más información.",
21
- "CONTAINS_LINKS_MESSAGE": "Agregue enlaces a fuentes / más información."
21
+ "CONTAINS_LINKS_MESSAGE": "Agregar vínculos (HTTPS) a fuentes de contenido / información",
22
+ "CONTAINS_SOURCE_MESSAGE": "Agregar información de la fuente a la descripción mediante el uso del formato \"Fuente: [vínculo o información de fuente]\""
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "En general, se necesitan entre 1 y 5 capas para hacer un mapa limpio y bien enfocado. Cuando un elemento requiere cada vez más capas, suele indicar que el producto informativo puede beneficiarse de una mayor conceptualización por parte del creador. Se necesita más tiempo para aclarar y sintetizar lo que hay que construir.",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "Normalmente se requieren cerca de 1-5 capas para crear un elemento de capa limpio y enfocado. La publicación de un elemento de capa con docenas de capas puede suponer una carga innecesaria para el navegador y debe considerar si el usuario quiere utilizar todas estas capas en todo momento. Cuando sea probable que el usuario quiera utilizar unas cuantas capas en su elemento solamente, tendrá que desactivar o quitar todas las capas no deseadas de su aplicación o mapa web.",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "Una capa obtiene el máximo de puntos, que se reducen a medida que aumenta el número de capas.",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "Comunique cualquier condición de uso exigida por su organización o el proveedor de datos. <p>Para agregar hipervínculos, utilice el editor de enlaces de ArcGIS Online.</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "Comunique cualquier condición de uso exigida por su organización o el proveedor de datos. <p>Para agregar hipervínculos, utilice el editor de enlaces de ArcGIS Online y proporcione vínculos HTTPS.</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "Comunique cualquier condición de uso exigida por su organización o el proveedor de datos.",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "Se conceden puntos por tener más de una palabra aquí. También se recompensa: texto que incluya un hipervínculo (a información más detallada que explique con más detalle las restricciones).",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "Se otorgan puntos por tener información de acceso y uso. También se recompensa: texto que incluya un hipervínculo (a información más detallada que explique con más detalle las restricciones).",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "Comprobar los términos de uso",
42
43
  "EMPTY_STRING_MESSAGE": "Agregar términos de uso",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "Agregar más información a los términos de uso",
44
- "CONTAINS_NO_LINKS_MESSAGE": " Agregar enlaces a fuentes / más información"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "Agregar vínculos (HTTPS) a los recursos / información de las Condiciones de uso"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "Cuando esté listo, comparta públicamente su artículo para que otros puedan verlo en Living Atlas.",
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "Une description efficace répond directement aux questions \"De quoi s’agit-il ?\" et \"Que montre cette couche/carte/application ?\". Quelques brefs paragraphes suffisent généralement à couvrir les questions fondamentales \"qui, quoi, quand, où, pourquoi et comment\" (pas nécessairement dans cet ordre, bien entendu). Évitez d’employer du jargon ou des abréviations, sauf si vous en proposez une explication. Fournissez des informations sur la source et des explications détaillées par le biais de liens Web.",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "Une description efficace répond directement aux questions \"De quoi s’agit-il ?\" et \"Que montre cette couche/carte/application ?\". Quelques brefs paragraphes suffisent généralement à couvrir les questions fondamentales \"qui, quoi, quand, où, pourquoi et comment\" (pas nécessairement dans cet ordre, bien entendu). Évitez d’employer du jargon ou des abréviations, sauf si vous en proposez une explication. Fournissez des informations sur la source et des explications détaillées par le biais de liens Web en proposant des liens HTTPS à l’aide de l’éditeur de liens d’ArcGIS Online. Indiquez l’année ou la version des données. Précisez la zone géographique couverte. Pour les couches, fournissez une liste simple des alias de champ attributaire inclus. ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "Vous obtenez des points si vous saisissez environ 4 à 5 phrases, comprenant chacune 12 mots en moyenne. Vous obtenez des points si vous fournissez des liens vers des informations plus détaillées.",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "Vous obtenez des points si vous saisissez environ 4 à 5 phrases, comprenant chacune 12 mots en moyenne. Vous obtenez des points si vous fournissez des liens vers des informations plus détaillées. Vous obtenez des points si vous indiquez \"Source : [informations sur la source ou lien]\" ou \"Informations de référence : [informations sur la source ou lien]\".",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "Vous obtenez des points si vous indiquez une description. Vous obtenez des points si vous fournissez des liens vers des informations plus détaillées.",
17
17
  "LABEL": "Améliorer la description",
18
18
  "TITLE": "Vérifier la description",
19
19
  "EMPTY_STRING_MESSAGE": "La description est obligatoire",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "La description est trop courte. Ajoutez davantage d’informations.",
21
- "CONTAINS_LINKS_MESSAGE": "Ajoutez des liens vers les sources et/ou des informations complémentaires."
21
+ "CONTAINS_LINKS_MESSAGE": "Ajoutez des liens (HTTPS) vers les sources et/ou des informations complémentaires",
22
+ "CONTAINS_SOURCE_MESSAGE": "Ajoutez des informations sur la source à la description au format \"Source : [informations sur la source ou lien]\""
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "En règle générale, une carte claire et précise repose sur 1 à 5 couches environ. Si un élément nécessite toujours plus de couches, cela signifie généralement que le concept du produit d’information n’est pas encore tout à fait abouti dans l’esprit de ses créateurs. Ces derniers ont probablement besoin de davantage de temps pour clarifier et perfectionner leur création.",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "En règle générale, un élément de couche clair et précis repose sur 1 à 5 couches environ. La publication d’un élément de couche comportant des dizaines de couches peut augmenter inutilement la charge du navigateur. Il est donc judicieux de déterminer si l’utilisateur se servira systématiquement de l’ensemble des couches. S’il est probable que l’utilisateur n’ait besoin de se servir que de quelques couches de l’élément, il devra désactiver ou supprimer toutes les couches qui ne l’intéressent pas dans son application ou sa carte Web.",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "Vous obtenez le nombre maximal de points si vous n’utilisez qu’une seule couche. Le nombre de points diminue progressivement à mesure que le nombre de couches augmente.",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "Indiquez les éventuelles conditions d’utilisation imposées par votre organisation ou par le fournisseur de données. <p>Pour ajouter des hyperliens, utilisez l’éditeur de liens d’ArcGIS Online.</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "Indiquez les éventuelles conditions d’utilisation imposées par votre organisation ou par le fournisseur de données. <p>Pour ajouter des hyperliens, utilisez l’éditeur de liens d’ArcGIS Online et proposez des liens HTTPS.</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "Indiquez les éventuelles conditions d’utilisation imposées par votre organisation ou par le fournisseur de données.",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "Vous obtenez des points si vous saisissez plusieurs mots ici. Un texte qui inclut un hyperlien (vers des informations plus détaillées décrivant davantage les contraintes) vous permet d’obtenir des points supplémentaires.",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "Vous obtenez des points si vous indiquez des informations relatives à l’accès et à l’utilisation. Un texte qui inclut un hyperlien (vers des informations plus détaillées décrivant davantage les contraintes) vous permet d’obtenir des points supplémentaires.",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "Vérifier les conditions d’utilisation",
42
43
  "EMPTY_STRING_MESSAGE": "Ajoutez des conditions d’utilisation",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "Ajoutez davantage d’informations dans les conditions d’utilisation",
44
- "CONTAINS_NO_LINKS_MESSAGE": " Ajoutez des liens vers les sources et/ou des informations complémentaires"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "Ajoutez des liens (HTTPS) vers des ressources et/ou des informations relatives aux conditions d’utilisation"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "Lorsque vous êtes prêt, partagez publiquement l’élément pour que d’autres utilisateurs puissent le voir dans le Living Atlas.",
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "よい説明文は、「これは何ですか?」や「このレイヤー / マップ / アプリは何を表示しますか?」という質問に直接答えます。 「誰が、何を、いつ、どこで、なぜ、どのように」(当然ながら、必ずしもこの順序とは限りません) という基本的な質問に対応するには、通常、いくつかの短い段落で十分です。 専門用語や略語は、その説明がない限り使用しないでください。 Web リンクを介してソース情報と詳細な説明を提供してください。",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "よい説明文は、「これは何ですか?」や「このレイヤー / マップ / アプリは何を表示しますか?」という質問に直接答えます。 「誰が、何を、いつ、どこで、なぜ、どのように」(当然ながら、必ずしもこの順序とは限りません) という基本的な質問に対応するには、通常、いくつかの短い段落で十分です。 専門用語や略語は、その説明がない限り使用しないでください。 ArcGIS Online のリンク エディターを使用して Web リンク経由でソース情報と詳細な説明を提供し、HTTPS リンクを指定してください。 データの年度またはバージョンを指定してください。 カバーしている地理範囲を指定してください。 レイヤーの場合は、含まれている属性フィールド エイリアスの単純なリストを指定してください。 ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "4 ~ 5 文 (1 文あたり平均 12 語) ほどが入力されていると、ポイントが与えられます。 より詳細な情報へのリンクを提供すると、ポイントが与えられます。",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "4 ~ 5 文 (1 文あたり平均 12 語) ほどが入力されていると、ポイントが与えられます。 より詳細な情報へのリンクを提供すると、ポイントが与えられます。 「ソース: [ソース情報またはリンク]」または「引用: [ソース情報またはリンク]」を提供すると、ポイントが与えられます。",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "説明が入力されていると、ポイントが与えられます。 より詳細な情報へのリンクを提供すると、ポイントが与えられます。",
17
17
  "LABEL": "説明の改善",
18
18
  "TITLE": "説明の確認",
19
19
  "EMPTY_STRING_MESSAGE": "説明は必須です",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "説明が短すぎます。さらに情報を追加してください。",
21
- "CONTAINS_LINKS_MESSAGE": "ソース / 詳細情報へのリンクを追加してください。"
21
+ "CONTAINS_LINKS_MESSAGE": "コンテンツのソース/情報への (HTTPS) リンクを追加する",
22
+ "CONTAINS_SOURCE_MESSAGE": "「ソース: [ソース情報またはリンク]」形式を使用してソース情報を説明に追加する"
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "一般的に、きれいで的を絞ったマップを作成するには、およそ 1 ~ 5 個のレイヤーが必要です。 アイテムがますます多くのレイヤーを必要とする場合、通常、その情報プロダクトが、追加のクリエイターのアイデアによる恩恵を受ける可能性があることを示しています。 何を構築する必要があるかを明確にして絞り込むには、さらに時間が必要です。",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "通常、きれいで的を絞ったレイヤー アイテムを作成するには、およそ 1 ~ 5 個のレイヤーが必要です。 多数のレイヤーを含むレイヤー アイテムを公開すると、ブラウザーに必要以上の負荷がかかることがあるため、ユーザーがこれらすべてのレイヤーを常時使用するを考慮する必要があります。 ユーザーがアイテム内のごく一部のレイヤーしか使用しないと思われる場合は、不要なレイヤーをすべてオフにするか、Web マップまたはアプリから削除する必要があります。",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "レイヤーが 1 つの場合に最大のポイントが得られ、レイヤーの数が増えるほどポイントが減少します。",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "組織またはデータ プロバイダーが必要とする利用規約を記述してください。 <p>ハイパーリンクを追加する場合は、ArcGIS Online のリンク エディターを使用してください。</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "組織またはデータ プロバイダーが必要とする利用規約を記述してください。 <p>ハイパーリンクを追加する場合は、ArcGIS Online のリンク エディターを使用し、HTTPS リンクを指定してください。</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "組織またはデータ プロバイダーが必要とする利用規約を記述してください。",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "ここに 2 語以上が入力されていると、ポイントが与えられます。 テキストに (制約をより詳しく説明する、より詳細な情報への) ハイパーリンクが含まれる場合も、ポイントが得られます。",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "アクセスおよび使用情報が入力されていると、ポイントが与えられます。 テキストに (制約をより詳しく説明する、より詳細な情報への) ハイパーリンクが含まれる場合も、ポイントが得られます。",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "利用規約の確認",
42
43
  "EMPTY_STRING_MESSAGE": "利用規約を追加する",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "利用規約にさらに情報を追加する",
44
- "CONTAINS_NO_LINKS_MESSAGE": " ソース / 詳細情報へのリンクを追加する"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "利用規約のリソース/情報への (HTTPS) リンクを追加する"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "準備ができたら、他のユーザーが Living Atlas で表示できるように、アイテムをパブリックに共有します。",
@@ -10,18 +10,19 @@
10
10
  "MINIMUM_WORD_COUNT_MESSAGE": ""
11
11
  },
12
12
  "description": {
13
- "TOOLTIP_GUIDANCE_DEFAULT": "Uma boa descrição responde diretamente às perguntas “O que é isso?” e \"O que esta camada/mapa/aplicativo mostra?\" Alguns parágrafos curtos geralmente são suficientes para cobrir as questões básicas de “quem, o quê, quando, onde, por que e como” (não necessariamente nessa ordem, é claro). Evite usar jargões ou abreviações, a menos que sejam explicados. Forneça informações de origem e explicações detalhadas por meio de links da web.",
13
+ "TOOLTIP_GUIDANCE_DEFAULT": "Uma boa descrição responde diretamente às perguntas “O que é isso?” e \"O que esta camada/mapa/aplicativo mostra?\" Alguns parágrafos curtos geralmente são suficientes para cobrir as questões básicas de “quem, o quê, quando, onde, por que e como” (não necessariamente nessa ordem, é claro). Evite usar jargões ou abreviações, a menos que sejam explicados. Forneça informações de origem e explicações detalhadas por meio de links da web usando o editor de links no ArcGIS Online e forneça links HTTPS. Forneça o ano ou versão dos dados. Indique a área geográfica abrangida. Para camadas, forneça uma lista simples de nomes alternativos de campos de atributos incluídos. ",
14
14
  "TOOLTIP_GUIDANCE_INTL": "",
15
- "TOOLTIP_SCORING_MSG_DEFAULT": "Os pontos são concedidos por ter cerca de 4 a 5 frases, com média de 12 palavras por frase. Os pontos são concedidos por fornecer links para informações mais detalhadas.",
15
+ "TOOLTIP_SCORING_MSG_DEFAULT": "Os pontos são concedidos por ter cerca de 4 a 5 frases, com média de 12 palavras por frase. Os pontos são concedidos por fornecer links para informações mais detalhadas. Os pontos são concedidos por fornecer \"Fonte: [informações ou link da fonte]\" ou \"Citação: [informações ou link da fonte]\".",
16
16
  "TOOLTIP_SCORING_MSG_INTL": "Os pontos são concedidos por ter uma descrição. Os pontos são concedidos por fornecer links para informações mais detalhadas.",
17
17
  "LABEL": "Melhorar a Descrição",
18
18
  "TITLE": "Verificar a Descrição",
19
19
  "EMPTY_STRING_MESSAGE": "Uma descrição é exigida",
20
20
  "MINIMUM_WORD_COUNT_MESSAGE": "A descrição é muito curta, adicione mais informações.",
21
- "CONTAINS_LINKS_MESSAGE": "Adicione links para fontes/mais informações."
21
+ "CONTAINS_LINKS_MESSAGE": "Adicionar (HTTPS) links para fontes de conteúdo / informações",
22
+ "CONTAINS_SOURCE_MESSAGE": "Adicione informações da fonte à descrição usando o formato \"Fonte: [informações da fonte ou link]\""
22
23
  },
23
24
  "layers": {
24
- "TOOLTIP_GUIDANCE_DEFAULT": "De modo geral, são necessárias cerca de 1 a 5 camadas para criar um mapa limpo e focado. Quando um item requer cada vez mais camadas, isso geralmente indica que o produto de informação pode se beneficiar de ideias adicionais do criador. É necessário mais tempo para esclarecer e destilar o que precisa ser construído.",
25
+ "TOOLTIP_GUIDANCE_DEFAULT": "Geralmente, são necessárias cerca de 1 a 5 camadas para criar um item de camada limpo e focado. Publicar um item de camada com dezenas de camadas pode colocar cargas desnecessárias no navegador, e você deve considerar se o usuário deseja usar todas essas camadas o tempo todo. Se o usuário provavelmente quiser usar apenas algumas camadas do seu item, ele precisará desativar ou remover todas as camadas indesejadas do mapa da web, ou aplicativo.",
25
26
  "TOOLTIP_GUIDANCE_INTL": "",
26
27
  "TOOLTIP_SCORING_MSG_DEFAULT": "Uma camada obtém o máximo de pontos, com pontos reduzidos à medida que a contagem de camadas aumenta.",
27
28
  "TOOLTIP_SCORING_MSG_INTL": "",
@@ -33,7 +34,7 @@
33
34
  "BEST_MESSAGE": ""
34
35
  },
35
36
  "licenseInfo": {
36
- "TOOLTIP_GUIDANCE_DEFAULT": "Comunique quaisquer Termos de Uso exigidos pela sua organização ou pelo provedor de dados. <p>Ao adicionar hiperlinks, utilize o editor de links no ArcGIS Online.</p>",
37
+ "TOOLTIP_GUIDANCE_DEFAULT": "Comunique quaisquer Termos de Uso exigidos pela sua organização ou pelo provedor de dados. <p>Ao adicionar hiperlinks, utilize o editor de links no ArcGIS Online e forneça links de HTTPS.</p>",
37
38
  "TOOLTIP_GUIDANCE_INTL": "Comunique quaisquer Termos de Uso exigidos pela sua organização ou pelo provedor de dados.",
38
39
  "TOOLTIP_SCORING_MSG_DEFAULT": "Os pontos são concedidos por ter mais de uma palavra aqui. Também recompensado: texto que inclui um hiperlink (para informações mais detalhadas que explicam as restrições de forma mais completa).",
39
40
  "TOOLTIP_SCORING_MSG_INTL": "Os pontos são concedidos por ter acesso e uso de informações. Também recompensado: texto que inclui um hiperlink (para informações mais detalhadas que explicam as restrições de forma mais completa).",
@@ -41,7 +42,7 @@
41
42
  "TITLE": "Verificar os Termos de Uso",
42
43
  "EMPTY_STRING_MESSAGE": "Adicionar Termos de Uso",
43
44
  "MINIMUM_WORD_COUNT_MESSAGE": "Adicione mais informações aos Termos de Uso",
44
- "CONTAINS_NO_LINKS_MESSAGE": " Adicione links para fontes/mais informações"
45
+ "CONTAINS_NO_LINKS_MESSAGE": "Adicionar (HTTPS) links para recursos do Termo de Uso / informações"
45
46
  },
46
47
  "sharing": {
47
48
  "TOOLTIP_GUIDANCE_DEFAULT": "Quando estiver pronto, compartilhe publicamente seu item para que outras pessoas possam vê-lo no Living Atlas.",
@@ -1 +1 @@
1
- {"lastCompiledTime":1716244841551}
1
+ {"lastCompiledTime":1718037663843}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vannizhang/living-atlas-content-validator",
3
- "version": "1.5.7",
3
+ "version": "1.5.9",
4
4
  "description": "Validation and Scoring rules for curating content in the ArcGIS Living Atlas",
5
5
  "repository": {
6
6
  "type": "git",