Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/constants/cycles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export type SundayCycle = typeof SUNDAY_CYCLES[number];
* Odd-numbered years are the Cycle I (year 1); even-numbered ones are the Cycle II (year 2).
*/
export const WeekdayCycles = {
Year1: 'YEAR_1',
Year2: 'YEAR_2',
Cycle1: 'CYCLE_1',
Cycle2: 'CYCLE_2',
} as const;

/**
Expand Down
4 changes: 2 additions & 2 deletions lib/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const locale: Locale = {
sunday_year_a: 'Year A',
sunday_year_b: 'Year B',
sunday_year_c: 'Year C',
weekday_year_1: 'Cycle I',
weekday_year_2: 'Cycle II',
weekday_cycle_1: 'Cycle I',
weekday_cycle_2: 'Cycle II',
psalter_week_1: 'Week I',
psalter_week_2: 'Week II',
psalter_week_3: 'Week III',
Expand Down
4 changes: 2 additions & 2 deletions lib/locales/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export const locale: Locale = {
sunday_year_a: 'Année A',
sunday_year_b: 'Année B',
sunday_year_c: 'Année C',
weekday_year_1: 'Année impaire',
weekday_year_2: 'Année paire',
weekday_cycle_1: 'Année impaire',
weekday_cycle_2: 'Année paire',
psalter_week_1: 'Semaine I des Psaumes',
psalter_week_2: 'Semaine II des Psaumes',
psalter_week_3: 'Semaine III des Psaumes',
Expand Down
4 changes: 2 additions & 2 deletions lib/locales/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const locale: Locale = {
sunday_year_a: 'Anno A',
sunday_year_b: 'Anno B',
sunday_year_c: 'Anno C',
weekday_year_1: 'Anno dispari',
weekday_year_2: 'Anno pari',
weekday_cycle_1: 'Anno dispari',
weekday_cycle_2: 'Anno pari',
psalter_week_1: 'I Settimana del Salterio',
psalter_week_2: 'II Settimana del Salterio',
psalter_week_3: 'III Settimana del Salterio',
Expand Down
4 changes: 2 additions & 2 deletions lib/locales/sk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const locale: Locale = {
sunday_year_a: 'rok A',
sunday_year_b: 'rok B',
sunday_year_c: 'rok C',
weekday_year_1: 'cyklus I.',
weekday_year_2: 'cyklus II.',
weekday_cycle_1: 'cyklus I.',
weekday_cycle_2: 'cyklus II.',
psalter_week_1: '1. týždeň žaltára',
psalter_week_2: '2. týždeň žaltára',
psalter_week_3: '3. týždeň žaltára',
Expand Down
4 changes: 2 additions & 2 deletions lib/types/locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export interface Locale {
sunday_year_a?: string;
sunday_year_b?: string;
sunday_year_c?: string;
weekday_year_1?: string;
weekday_year_2?: string;
weekday_cycle_1?: string;
weekday_cycle_2?: string;
psalter_week_1?: string;
psalter_week_2?: string;
psalter_week_3?: string;
Expand Down
Loading