Skip to content

Commit

Permalink
fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maliroteh-sf committed Dec 21, 2023
1 parent 4978ab3 commit 6423a0d
Show file tree
Hide file tree
Showing 41 changed files with 785 additions and 399 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,47 +358,58 @@
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - My Service Appointments</shortDescription>
<shortDescription
>Card modal - design tab - example cards - My Service Appointments</shortDescription>
<value>My Service Appointments</value>
</labels>
<labels>
<fullName>MobileDashboard_card_modal_design_tab_example_cannot_complete</fullName>
<fullName
>MobileDashboard_card_modal_design_tab_example_cannot_complete</fullName>
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - Cannot Complete</shortDescription>
<shortDescription
>Card modal - design tab - example cards - Cannot Complete</shortDescription>
<value>Cannot Complete</value>
</labels>
<labels>
<fullName>MobileDashboard_card_modal_design_tab_example_canceled</fullName>
<fullName
>MobileDashboard_card_modal_design_tab_example_canceled</fullName>
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - Canceled</shortDescription>
<shortDescription
>Card modal - design tab - example cards - Canceled</shortDescription>
<value>Canceled</value>
</labels>
<labels>
<fullName>MobileDashboard_card_modal_design_tab_example_completed</fullName>
<fullName
>MobileDashboard_card_modal_design_tab_example_completed</fullName>
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - Completed</shortDescription>
<shortDescription
>Card modal - design tab - example cards - Completed</shortDescription>
<value>Completed</value>
</labels>
<labels>
<fullName>MobileDashboard_card_modal_design_tab_example_scheduled</fullName>
<fullName
>MobileDashboard_card_modal_design_tab_example_scheduled</fullName>
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - Scheduled</shortDescription>
<shortDescription
>Card modal - design tab - example cards - Scheduled</shortDescription>
<value>Scheduled</value>
</labels>
<labels>
<fullName>MobileDashboard_card_modal_design_tab_example_in_progress</fullName>
<fullName
>MobileDashboard_card_modal_design_tab_example_in_progress</fullName>
<language>en_US</language>
<protected>true</protected>
<categories>MobileDashboard</categories>
<shortDescription>Card modal - design tab - example cards - In Progress</shortDescription>
<shortDescription
>Card modal - design tab - example cards - In Progress</shortDescription>
<value>In Progress</value>
</labels>
<labels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ <h1>
}
</p>
<c-summary-component
settings={sideExampleSettings}
demo-mode="true">
settings={sideExampleSettings}
demo-mode="true"
>
</c-summary-component>
</div>
<div class="layout-radio">
Expand All @@ -153,7 +154,8 @@ <h1>
</p>
<c-summary-component
settings={stackExampleSettings}
demo-mode="true">
demo-mode="true"
>
</c-summary-component>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,48 +247,55 @@ export default class EditCardModal extends LightningModal {
{
index: 0,
count: 1,
label: this.LABELS.MobileDashboard_card_modal_design_tab_example_cannot_complete,
icon: 'utility:error',
color: '#B72020',
label:
this.LABELS
.MobileDashboard_card_modal_design_tab_example_cannot_complete,
icon: "utility:error",
color: "#B72020"
},
{
index: 1,
count: 2,
label: this.LABELS.MobileDashboard_card_modal_design_tab_example_canceled,
icon: 'utility:warning',
color: '#8C4B02',
label:
this.LABELS.MobileDashboard_card_modal_design_tab_example_canceled,
icon: "utility:warning",
color: "#8C4B02"
},
{
index: 2,
count: 5,
label: this.LABELS.MobileDashboard_card_modal_design_tab_example_completed,
icon: 'utility:success',
color: '#2E844A',
label:
this.LABELS.MobileDashboard_card_modal_design_tab_example_completed,
icon: "utility:success",
color: "#2E844A"
},
{
index: 3,
count: 6,
label: this.LABELS.MobileDashboard_card_modal_design_tab_example_scheduled,
icon: 'utility:clock',
color: '#747474',
label:
this.LABELS.MobileDashboard_card_modal_design_tab_example_scheduled,
icon: "utility:clock",
color: "#747474"
},
{
index: 4,
count: 4,
label: this.LABELS.MobileDashboard_card_modal_design_tab_example_in_progress,
icon: 'utility:event',
color: '#747474',
},
],
label:
this.LABELS
.MobileDashboard_card_modal_design_tab_example_in_progress,
icon: "utility:event",
color: "#747474"
}
]
};
}

get sideExampleSettings() {
return { ...this.exampleSettings, Layout__c: 'SIDE' };
return { ...this.exampleSettings, Layout__c: "SIDE" };
}

get stackExampleSettings() {
return { ...this.exampleSettings, Layout__c: 'STACK' };
return { ...this.exampleSettings, Layout__c: "STACK" };
}

detectSubFilterDrag = async () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<nameFieldLabel>Όνομα ρύθμισης πίνακα εργαλείων για κινητές συσκευές</nameFieldLabel>
<nameFieldLabel
>Όνομα ρύθμισης πίνακα εργαλείων για κινητές συσκευές</nameFieldLabel>
<standardFields>
<name>Name</name>
<label>Όνομα ρύθμισης πίνακα εργαλείων για κινητές συσκευές</label>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<nameFieldLabel>Nazwa ustawienia pulpitu dla urządzeń przenośnych</nameFieldLabel>
<nameFieldLabel
>Nazwa ustawienia pulpitu dla urządzeń przenośnych</nameFieldLabel>
<standardFields>
<name>Name</name>
<label>Nazwa ustawienia pulpitu dla urządzeń przenośnych</label>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<nameFieldLabel>Название параметра мобильной панели мониторинга</nameFieldLabel>
<nameFieldLabel
>Название параметра мобильной панели мониторинга</nameFieldLabel>
<standardFields>
<name>Name</name>
<label>Название параметра мобильной панели мониторинга</label>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<nameFieldLabel>Názov nastavenia mobilného ovládacieho panela</nameFieldLabel>
<nameFieldLabel
>Názov nastavenia mobilného ovládacieho panela</nameFieldLabel>
<standardFields>
<name>Name</name>
<label>Názov nastavenia mobilného ovládacieho panela</label>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<CustomObjectTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<nameFieldLabel>Ime nastavitve nadzorne plošče za mobilne naprave</nameFieldLabel>
<nameFieldLabel
>Ime nastavitve nadzorne plošče za mobilne naprave</nameFieldLabel>
<standardFields>
<name>Name</name>
<label>Ime nastavitve nadzorne plošče za mobilne naprave</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_settings_description</name>
<label>Конфигурирайте картите на таблото си. За по-добра производителност ограничете картите на таблото до пет.</label>
<label
>Конфигурирайте картите на таблото си. За по-добра производителност ограничете картите на таблото до пет.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_add_card_button</name>
Expand Down Expand Up @@ -86,7 +87,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_filter_field_infobubble</name>
<label>След като изберете обект, дефинирайте кои записи да бъдат включени в картата.</label>
<label
>След като изберете обект, дефинирайте кои записи да бъдат включени в картата.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_filter_logic_and</name>
Expand Down Expand Up @@ -121,8 +123,10 @@
<label>Логаритъм по избор</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_custom_logic_field_infobubble</name>
<label>Дайте логиката на условието. Използвайте цифри за препратка към всяко условие. Използвайте И или ИЛИ за идентифициране на комбинацията от условия. Добавете скоби, за да групирате части от низа. Например „1 И (2 ИЛИ 3)“ оценява дали първото условие е вярно и дали второто или третото е вярно.</label>
<name
>MobileDashboard_card_modal_details_custom_logic_field_infobubble</name>
<label
>Дайте логиката на условието. Използвайте цифри за препратка към всяко условие. Използвайте И или ИЛИ за идентифициране на комбинацията от условия. Добавете скоби, за да групирате части от низа. Например „1 И (2 ИЛИ 3)“ оценява дали първото условие е вярно и дали второто или третото е вярно.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_name</name>
Expand All @@ -137,16 +141,20 @@
<label>Една до друга</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_side_description</name>
<label>Спестява място вертикално. Препоръчва се за кратки имена на полета.</label>
<name
>MobileDashboard_card_modal_design_tab_layout_side_description</name>
<label
>Спестява място вертикално. Препоръчва се за кратки имена на полета.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_stack_title</name>
<label>Насложени</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_stack_description</name>
<label>Използва повече място вертикално. Препоръчва се за дълги имена на полета.</label>
<name
>MobileDashboard_card_modal_design_tab_layout_stack_description</name>
<label
>Използва повече място вертикално. Препоръчва се за дълги имена на полета.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_card_data_title</name>
Expand Down Expand Up @@ -382,15 +390,17 @@
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_save_card</name>
<label>Не успяхме да запишем промените ви. Опитайте отново по-късно.</label>
<label
>Не успяхме да запишем промените ви. Опитайте отново по-късно.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_delete_card</name>
<label>Не успяхме да изтрием картата. Опитайте отново по-късно.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_duplicate_card</name>
<label>Не успяхме да дублираме картата. Опитайте отново по-късно.</label>
<label
>Не успяхме да дублираме картата. Опитайте отново по-късно.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_object_field</name>
Expand All @@ -406,7 +416,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_preview_title_infobubble</name>
<label>Прегледът може малко да се различава от действителния дисплей на мобилното устройство.</label>
<label
>Прегледът може малко да се различава от действителния дисплей на мобилното устройство.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_duplicate_button</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_settings_description</name>
<label>Nakonfigurujte si karty palubovky. Pro lepší výkon omezte palubovku na pět karet.</label>
<label
>Nakonfigurujte si karty palubovky. Pro lepší výkon omezte palubovku na pět karet.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_add_card_button</name>
Expand Down Expand Up @@ -86,7 +87,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_filter_field_infobubble</name>
<label>Po výběru objektu definujte, které záznamy budou na kartě zahrnuty.</label>
<label
>Po výběru objektu definujte, které záznamy budou na kartě zahrnuty.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_filter_logic_and</name>
Expand Down Expand Up @@ -121,8 +123,10 @@
<label>Vlastní logika</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_details_custom_logic_field_infobubble</name>
<label>Zadejte logiku podmínek. Pro každou podmínku použijte čísla. K identifikaci kombinace podmínek použijte A nebo NEBO. Přidejte závorky pro seskupení částí řetězce dohromady. Například 1 A (2 NEBO 3) vyhodnotí, zda je splněna první podmínka a zda platí druhá nebo třetí podmínka.</label>
<name
>MobileDashboard_card_modal_details_custom_logic_field_infobubble</name>
<label
>Zadejte logiku podmínek. Pro každou podmínku použijte čísla. K identifikaci kombinace podmínek použijte A nebo NEBO. Přidejte závorky pro seskupení částí řetězce dohromady. Například 1 A (2 NEBO 3) vyhodnotí, zda je splněna první podmínka a zda platí druhá nebo třetí podmínka.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_name</name>
Expand All @@ -137,16 +141,20 @@
<label>Vedle sebe</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_side_description</name>
<label>Šetří vertikální prostor. Doporučeno pro krátké názvy polí.</label>
<name
>MobileDashboard_card_modal_design_tab_layout_side_description</name>
<label
>Šetří vertikální prostor. Doporučeno pro krátké názvy polí.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_stack_title</name>
<label>Na sobě</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_layout_stack_description</name>
<label>Využívá více vertikálního prostoru. Doporučeno pro dlouhé názvy polí.</label>
<name
>MobileDashboard_card_modal_design_tab_layout_stack_description</name>
<label
>Využívá více vertikálního prostoru. Doporučeno pro dlouhé názvy polí.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_modal_design_tab_card_data_title</name>
Expand Down Expand Up @@ -382,15 +390,18 @@
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_save_card</name>
<label>Nepodařilo se nám uložit vaše změny. Zkuste to znovu později.</label>
<label
>Nepodařilo se nám uložit vaše změny. Zkuste to znovu později.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_delete_card</name>
<label>Nepodařilo se nám odstranit kartu. Zkuste to znovu později.</label>
<label
>Nepodařilo se nám odstranit kartu. Zkuste to znovu později.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_error_duplicate_card</name>
<label>Nepodařilo se nám duplikovat kartu. Zkuste to znovu později.</label>
<label
>Nepodařilo se nám duplikovat kartu. Zkuste to znovu později.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_card_object_field</name>
Expand All @@ -406,7 +417,8 @@
</customLabels>
<customLabels>
<name>MobileDashboard_preview_title_infobubble</name>
<label>Zobrazení náhledu se může mírně lišit od skutečného zobrazení na mobilním zařízení.</label>
<label
>Zobrazení náhledu se může mírně lišit od skutečného zobrazení na mobilním zařízení.</label>
</customLabels>
<customLabels>
<name>MobileDashboard_settings_duplicate_button</name>
Expand Down
Loading

0 comments on commit 6423a0d

Please sign in to comment.