Skip to content

Commit

Permalink
chore(release): 0.1.10 (#1)
Browse files Browse the repository at this point in the history
* chore(release): 0.1.10

* Add spanish list.

* chore(release): 0.1.11
  • Loading branch information
elisiondan authored Jul 2, 2024
1 parent 2a83b53 commit 1e4a0aa
Show file tree
Hide file tree
Showing 6 changed files with 1,499 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.11](https://github.com/localazy/languages/compare/v0.1.10...v0.1.11) (2024-07-02)

### [0.1.10](https://github.com/localazy/languages/compare/v0.1.9...v0.1.10) (2024-07-02)

### [0.1.9](https://github.com/localazy/languages/compare/v0.1.8...v0.1.9) (2023-08-28)

### [0.1.8](https://github.com/localazy/languages/compare/v0.1.7...v0.1.8) (2023-08-22)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@localazy/languages",
"version": "0.1.9",
"version": "0.1.11",
"description": "Available Localazy Languages",
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/build-language-translations-from-cldr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type ParsedLanguageLocale = {
script?: string;
};

const languages = ['cs'];
const languages = ['cs', 'es'];

const substringBefore = (value: string, before: string, missingDelimiterValue?: string): string => {
const beforeIndex = value.indexOf(before);
Expand Down
3 changes: 3 additions & 0 deletions src/language-lists/translated-language-lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ export { cs_localized_list };
import * as en_localized_list from "./translations/en.json";
export { en_localized_list };

import * as es_localized_list from "./translations/es.json";
export { es_localized_list };

Loading

0 comments on commit 1e4a0aa

Please sign in to comment.