-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implementation (Languages): #28476 Support the different Menu actions…
… in the table. (#28669) ### Proposed Changes * add the menu options to the locale table and the confirmation messages. * Push Publish * Set As Default * Delete ### Screenshots https://github.com/dotCMS/core/assets/31667212/646d62f0-b6d3-4f8d-b9e4-173e955160b8
- Loading branch information
Showing
19 changed files
with
806 additions
and
205 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
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
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 |
---|---|---|
@@ -1,10 +1,24 @@ | ||
export interface DotLanguage { | ||
id: number; | ||
languageCode: string; | ||
export interface DotAddLanguage { | ||
country: string; | ||
countryCode: string; | ||
language: string; | ||
country: string; | ||
languageCode: string; | ||
} | ||
|
||
export interface DotLanguage extends DotAddLanguage { | ||
id: number; | ||
defaultLanguage?: boolean; | ||
translated?: boolean; | ||
isoCode?: string; | ||
variables?: { count: number; total: number }; | ||
} | ||
|
||
export interface DotISOItem { | ||
code: string; | ||
name: string; | ||
} | ||
|
||
export interface DotLanguagesISO { | ||
countries: DotISOItem[]; | ||
languages: DotISOItem[]; | ||
} |
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 |
---|---|---|
@@ -1 +0,0 @@ | ||
export * from './lib/resolvers/dot-locales-list.resolver'; | ||
56 changes: 0 additions & 56 deletions
56
...libs/portlets/dot-locales/data-access/src/lib/resolvers/dot-locales-list.resolver.spec.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...-web/libs/portlets/dot-locales/data-access/src/lib/resolvers/dot-locales-list.resolver.ts
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.