mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
Add localization support (#333)
* Add updated i18n config and en locale
This commit is contained in:
parent
11863fd4c1
commit
8430b1ec95
90 changed files with 2679 additions and 908 deletions
|
|
@ -7,3 +7,4 @@ export * from './get-header-color';
|
|||
export * from './parse-search-params';
|
||||
export * from './format-duration-string';
|
||||
export * from './rgb-to-rgba';
|
||||
export * from './sentence-case';
|
||||
|
|
|
|||
3
src/renderer/utils/sentence-case.ts
Normal file
3
src/renderer/utils/sentence-case.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export const sentenceCase = (string: string) => {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue