-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ module.exports = { | |
// "de-CH", | ||
"es", | ||
"en", | ||
// "en-GB", | ||
"fr", | ||
// "fr-CA", | ||
// "fr-CH", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"native": "English (UK)", | ||
"global": "English (UK)" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const format = 'DD/MM/YYYY'; | ||
const locale = import('vue2-datepicker/locale/en'); | ||
locale.formatLocale.firstDayOfWeek = 1; | ||
export default {format, locale}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Utils from '../../utils'; | ||
export default Utils.mergeDeep( | ||
{ | ||
fields: require('./fields.json') | ||
}, | ||
require('./texts.json'), | ||
require('../en/custom.json') | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import { en as locale } from '@musement/iso-duration'; | ||
export default locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"Anonymized Location": "Anonymised Location", | ||
"Center Frequency": "Centre Frequency", | ||
"Cloud Cover": "Cloud Cover", | ||
"Cloud Storage": "Cloud Storage", | ||
"Cloud-Optimized GeoTIFF image": "Cloud-Optimised GeoTIFF image", | ||
"Cloud-Optimized Point Cloud (LASzip)": "Cloud-Optimised Point Cloud (LASzip)", | ||
"Color": "Colour", | ||
"Finalized": "Finalised", | ||
"Grayscale with relief": "Greyscale with relief", | ||
"Grayscale without relief": "Greyscale without relief", | ||
"Instruments": "Instruments", | ||
"Internationalization / Localization": "Internationalisation / Localisation", | ||
"License": "Licence", | ||
"Normalized Radar Backscatter (SAR)": "Normalised Radar Backscatter (SAR)", | ||
"Organization": "Organisation", | ||
"Parent STAC Catalog": "Parent STAC Catalogue", | ||
"Point (at pixel center)": "Point (at pixel centre)", | ||
"Polarizations": "Polarisations", | ||
"RGB color with relief": "RGB colour with relief", | ||
"RGB color without relief": "RGB colour without relief", | ||
"Root STAC Catalog": "Root STAC Catalogue", | ||
"The center wavelength of the band": "The centre wavelength of the band", | ||
"The size of one side of the anonymized bounding box": "The size of one side of the anonymised bounding box", | ||
"Visualization": "Visualisation", | ||
"Visualizations": "Visualisations" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"anonymized": { | ||
"title": "Anonymised" | ||
}, | ||
"catalogs": { | ||
"filterByTitle": "Filter catalogues by title", | ||
"filterByTitleAndMore": "Filter catalogues by title, description or keywords", | ||
"noMatches": "No catalogues match the given search criteria." | ||
}, | ||
"errors": { | ||
"noExternalAccess": "Accessing external catalogues is not allowed!" | ||
}, | ||
"index": { | ||
"catalog": "Catalogue", | ||
"specifyCatalog": "Please specify a STAC Catalogue or API..." | ||
}, | ||
"sidebar": { | ||
"switchCatalog": "Switch Catalogue" | ||
}, | ||
"stacCatalog": "Catalogue | Catalogues" | ||
} |