semantic-link-labs 0.8.3__py3-none-any.whl → 0.8.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of semantic-link-labs might be problematic. Click here for more details.
- {semantic_link_labs-0.8.3.dist-info → semantic_link_labs-0.8.5.dist-info}/METADATA +38 -8
- {semantic_link_labs-0.8.3.dist-info → semantic_link_labs-0.8.5.dist-info}/RECORD +109 -104
- {semantic_link_labs-0.8.3.dist-info → semantic_link_labs-0.8.5.dist-info}/WHEEL +1 -1
- sempy_labs/__init__.py +53 -1
- sempy_labs/_bpa_translation/_model/_translations_am-ET.po +24 -5
- sempy_labs/_bpa_translation/_model/_translations_ar-AE.po +28 -4
- sempy_labs/_bpa_translation/_model/_translations_bg-BG.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_ca-ES.po +33 -4
- sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_da-DK.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_de-DE.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_el-GR.po +36 -4
- sempy_labs/_bpa_translation/_model/_translations_es-ES.po +90 -58
- sempy_labs/_bpa_translation/_model/_translations_fa-IR.po +31 -5
- sempy_labs/_bpa_translation/_model/_translations_fi-FI.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_fr-FR.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_ga-IE.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_he-IL.po +28 -4
- sempy_labs/_bpa_translation/_model/_translations_hi-IN.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_hu-HU.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_id-ID.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_is-IS.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_it-IT.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_ja-JP.po +24 -4
- sempy_labs/_bpa_translation/_model/_translations_ko-KR.po +72 -56
- sempy_labs/_bpa_translation/_model/_translations_mt-MT.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_nl-NL.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_pl-PL.po +95 -71
- sempy_labs/_bpa_translation/_model/_translations_pt-BR.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_pt-PT.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_ro-RO.po +33 -4
- sempy_labs/_bpa_translation/_model/_translations_ru-RU.po +34 -4
- sempy_labs/_bpa_translation/_model/_translations_sk-SK.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_sl-SL.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_sv-SE.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_ta-IN.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_te-IN.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_th-TH.po +31 -4
- sempy_labs/_bpa_translation/_model/_translations_tr-TR.po +32 -4
- sempy_labs/_bpa_translation/_model/_translations_uk-UA.po +100 -72
- sempy_labs/_bpa_translation/_model/_translations_zh-CN.po +23 -5
- sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po +32 -4
- sempy_labs/_capacities.py +49 -14
- sempy_labs/_capacity_migration.py +1 -7
- sempy_labs/_data_pipelines.py +6 -0
- sempy_labs/_dataflows.py +118 -1
- sempy_labs/_dax.py +189 -3
- sempy_labs/_deployment_pipelines.py +13 -7
- sempy_labs/_environments.py +6 -0
- sempy_labs/_eventhouses.py +6 -0
- sempy_labs/_eventstreams.py +6 -0
- sempy_labs/_external_data_shares.py +6 -4
- sempy_labs/_generate_semantic_model.py +26 -3
- sempy_labs/_git.py +14 -14
- sempy_labs/_helper_functions.py +197 -1
- sempy_labs/_icons.py +55 -22
- sempy_labs/_kql_databases.py +6 -0
- sempy_labs/_kql_querysets.py +6 -0
- sempy_labs/_list_functions.py +1 -1
- sempy_labs/_managed_private_endpoints.py +166 -0
- sempy_labs/_mirrored_databases.py +428 -0
- sempy_labs/_mirrored_warehouses.py +2 -0
- sempy_labs/_ml_experiments.py +6 -0
- sempy_labs/_ml_models.py +7 -1
- sempy_labs/_model_bpa.py +215 -181
- sempy_labs/_model_bpa_bulk.py +46 -42
- sempy_labs/_model_bpa_rules.py +8 -3
- sempy_labs/_model_dependencies.py +41 -87
- sempy_labs/_notebooks.py +107 -12
- sempy_labs/_query_scale_out.py +8 -6
- sempy_labs/_refresh_semantic_model.py +299 -49
- sempy_labs/_spark.py +12 -5
- sempy_labs/_translations.py +2 -0
- sempy_labs/_vertipaq.py +89 -86
- sempy_labs/_warehouses.py +79 -0
- sempy_labs/_workloads.py +128 -0
- sempy_labs/_workspace_identity.py +4 -4
- sempy_labs/_workspaces.py +14 -1
- sempy_labs/admin/__init__.py +2 -0
- sempy_labs/admin/_basic_functions.py +131 -43
- sempy_labs/admin/_domains.py +18 -18
- sempy_labs/directlake/__init__.py +2 -0
- sempy_labs/directlake/_directlake_schema_sync.py +2 -1
- sempy_labs/directlake/_dl_helper.py +4 -1
- sempy_labs/directlake/_get_shared_expression.py +7 -1
- sempy_labs/directlake/_guardrails.py +2 -1
- sempy_labs/directlake/_show_unsupported_directlake_objects.py +1 -7
- sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +78 -0
- sempy_labs/directlake/_update_directlake_partition_entity.py +13 -32
- sempy_labs/directlake/_warm_cache.py +10 -9
- sempy_labs/lakehouse/_get_lakehouse_tables.py +6 -2
- sempy_labs/lakehouse/_shortcuts.py +4 -0
- sempy_labs/migration/_create_pqt_file.py +5 -2
- sempy_labs/migration/_migrate_calctables_to_lakehouse.py +3 -2
- sempy_labs/migration/_migrate_calctables_to_semantic_model.py +2 -0
- sempy_labs/migration/_migrate_model_objects_to_semantic_model.py +2 -8
- sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py +17 -0
- sempy_labs/migration/_migration_validation.py +2 -0
- sempy_labs/migration/_refresh_calc_tables.py +1 -0
- sempy_labs/report/__init__.py +6 -1
- sempy_labs/report/_download_report.py +75 -0
- sempy_labs/report/_generate_report.py +6 -0
- sempy_labs/report/_paginated.py +74 -0
- sempy_labs/report/_report_functions.py +6 -0
- sempy_labs/report/_report_rebind.py +2 -0
- sempy_labs/report/_reportwrapper.py +4 -2
- sempy_labs/tom/_model.py +135 -68
- {semantic_link_labs-0.8.3.dist-info → semantic_link_labs-0.8.5.dist-info}/LICENSE +0 -0
- {semantic_link_labs-0.8.3.dist-info → semantic_link_labs-0.8.5.dist-info}/top_level.txt +0 -0
|
@@ -614,8 +614,8 @@ msgid ""
|
|
|
614
614
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
615
615
|
"on fact tables"
|
|
616
616
|
msgstr ""
|
|
617
|
-
"
|
|
618
|
-
"
|
|
617
|
+
"При использовании DirectQuery таблицы измерений должны быть переведены в "
|
|
618
|
+
"двойной режим, чтобы повысить производительность запросов."
|
|
619
619
|
|
|
620
620
|
# description
|
|
621
621
|
msgid "Minimize Power Query transformations"
|
|
@@ -778,6 +778,13 @@ msgstr ""
|
|
|
778
778
|
"Для уменьшения избыточности следует избегать двух мер с разными именами и "
|
|
779
779
|
"определенными одним и тем же выражением DAX."
|
|
780
780
|
|
|
781
|
+
# description
|
|
782
|
+
msgid ""
|
|
783
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
784
|
+
msgstr ""
|
|
785
|
+
"Добавление постоянного значения может привести к снижению "
|
|
786
|
+
"производительности."
|
|
787
|
+
|
|
781
788
|
# description
|
|
782
789
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
783
790
|
msgstr ""
|
|
@@ -857,9 +864,16 @@ msgstr ""
|
|
|
857
864
|
"таблицей в модели с помощью связи."
|
|
858
865
|
|
|
859
866
|
# description
|
|
860
|
-
msgid "
|
|
867
|
+
msgid "Calculation groups with no calculation items"
|
|
861
868
|
msgstr "Группы вычислений не имеют функции, если у них нет элементов расчета."
|
|
862
869
|
|
|
870
|
+
# description
|
|
871
|
+
msgid "Visible objects with no description"
|
|
872
|
+
msgstr ""
|
|
873
|
+
"Добавляйте описания к объектам. Эти описания отображаются при наведении "
|
|
874
|
+
"указателя мыши в списке полей в Power BI Desktop. Кроме того, вы можете "
|
|
875
|
+
"использовать эти описания для создания автоматического словаря данных."
|
|
876
|
+
|
|
863
877
|
# description
|
|
864
878
|
msgid "Provide format string for 'Date' columns"
|
|
865
879
|
msgstr ""
|
|
@@ -881,9 +895,25 @@ msgstr "Видимым мерам должно быть назначено св
|
|
|
881
895
|
msgid "Add data category for columns"
|
|
882
896
|
msgstr "Добавьте свойство Data Category для соответствующих столбцов."
|
|
883
897
|
|
|
898
|
+
# description
|
|
899
|
+
msgid ""
|
|
900
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
901
|
+
msgstr ""
|
|
902
|
+
"Чтобы улучшить взаимодействие с пользователем, показатели percengage должны "
|
|
903
|
+
"иметь знак «%»."
|
|
904
|
+
|
|
905
|
+
# description
|
|
906
|
+
msgid ""
|
|
907
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
908
|
+
msgstr ""
|
|
909
|
+
"Для лучшего пользовательского опыта целые числа должны быть отформатированы "
|
|
910
|
+
"с помощью запятых."
|
|
911
|
+
|
|
884
912
|
# description
|
|
885
913
|
msgid "Hide foreign keys"
|
|
886
|
-
msgstr "
|
|
914
|
+
msgstr ""
|
|
915
|
+
"Внешние ключи всегда должны быть скрыты, так как они не должны "
|
|
916
|
+
"использоваться конечными пользователями."
|
|
887
917
|
|
|
888
918
|
# description
|
|
889
919
|
msgid "Mark primary keys"
|
|
@@ -607,8 +607,8 @@ msgid ""
|
|
|
607
607
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
608
608
|
"on fact tables"
|
|
609
609
|
msgstr ""
|
|
610
|
-
"
|
|
611
|
-
"
|
|
610
|
+
"Pri používaní režimu DirectQuery by mali byť tabuľky dimenzií nastavené na "
|
|
611
|
+
"duálny režim, aby sa zlepšil výkon dotazu."
|
|
612
612
|
|
|
613
613
|
# description
|
|
614
614
|
msgid "Minimize Power Query transformations"
|
|
@@ -769,6 +769,11 @@ msgstr ""
|
|
|
769
769
|
"Je potrebné vyhnúť sa dvom mieram s rôznymi názvami a definovaným rovnakým "
|
|
770
770
|
"vyjadrením DAX, aby sa znížila nadbytočnosť."
|
|
771
771
|
|
|
772
|
+
# description
|
|
773
|
+
msgid ""
|
|
774
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
775
|
+
msgstr "Pridanie konštantnej hodnoty môže viesť k zníženiu výkonu."
|
|
776
|
+
|
|
772
777
|
# description
|
|
773
778
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
774
779
|
msgstr ""
|
|
@@ -847,10 +852,17 @@ msgstr ""
|
|
|
847
852
|
"tabuľkou v modeli so vzťahom."
|
|
848
853
|
|
|
849
854
|
# description
|
|
850
|
-
msgid "
|
|
855
|
+
msgid "Calculation groups with no calculation items"
|
|
851
856
|
msgstr ""
|
|
852
857
|
"Výpočtové skupiny nemajú žiadnu funkciu, pokiaľ nemajú výpočtové položky."
|
|
853
858
|
|
|
859
|
+
# description
|
|
860
|
+
msgid "Visible objects with no description"
|
|
861
|
+
msgstr ""
|
|
862
|
+
"Pridajte popisy k objektom. Tieto popisy sa zobrazia po umiestnení kurzora "
|
|
863
|
+
"myši v zozname polí v aplikácii Power BI Desktop. Okrem toho môžete tieto "
|
|
864
|
+
"popisy využiť na vytvorenie automatizovaného dátového slovníka."
|
|
865
|
+
|
|
854
866
|
# description
|
|
855
867
|
msgid "Provide format string for 'Date' columns"
|
|
856
868
|
msgstr ""
|
|
@@ -872,9 +884,24 @@ msgstr "Viditeľné mierky by mali mať priradenú vlastnosť reťazca formátu.
|
|
|
872
884
|
msgid "Add data category for columns"
|
|
873
885
|
msgstr "Pridajte vlastnosť Kategória údajov pre príslušné stĺpce."
|
|
874
886
|
|
|
887
|
+
# description
|
|
888
|
+
msgid ""
|
|
889
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
890
|
+
msgstr ""
|
|
891
|
+
"Pre lepší používateľský zážitok by mali byť mierky percengage formátované "
|
|
892
|
+
"znamienkom \"%\"."
|
|
893
|
+
|
|
894
|
+
# description
|
|
895
|
+
msgid ""
|
|
896
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
897
|
+
msgstr ""
|
|
898
|
+
"Pre lepší používateľský zážitok by mali byť celé čísla formátované čiarkami."
|
|
899
|
+
|
|
875
900
|
# description
|
|
876
901
|
msgid "Hide foreign keys"
|
|
877
|
-
msgstr "
|
|
902
|
+
msgstr ""
|
|
903
|
+
"Cudzie kľúče by mali byť vždy skryté, pretože by ich nemali používať koncoví"
|
|
904
|
+
" používatelia."
|
|
878
905
|
|
|
879
906
|
# description
|
|
880
907
|
msgid "Mark primary keys"
|
|
@@ -607,8 +607,8 @@ msgid ""
|
|
|
607
607
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
608
608
|
"on fact tables"
|
|
609
609
|
msgstr ""
|
|
610
|
-
"
|
|
611
|
-
"
|
|
610
|
+
"Ko uporabljate DirectQuery, morajo biti tabele razsežnosti nastavljene na "
|
|
611
|
+
"dvojni način, da se izboljša učinkovitost delovanja poizvedbe."
|
|
612
612
|
|
|
613
613
|
# description
|
|
614
614
|
msgid "Minimize Power Query transformations"
|
|
@@ -765,6 +765,12 @@ msgstr ""
|
|
|
765
765
|
"Za zmanjšanje redundance se je treba izogibati dvema meriloma z različnimi "
|
|
766
766
|
"imeni, ki sta opredeljena z istim izrazom DAX."
|
|
767
767
|
|
|
768
|
+
# description
|
|
769
|
+
msgid ""
|
|
770
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
771
|
+
msgstr ""
|
|
772
|
+
"Dodajanje konstantne vrednosti lahko povzroči poslabšanje učinkovitosti."
|
|
773
|
+
|
|
768
774
|
# description
|
|
769
775
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
770
776
|
msgstr ""
|
|
@@ -844,10 +850,17 @@ msgstr ""
|
|
|
844
850
|
"z relacijo."
|
|
845
851
|
|
|
846
852
|
# description
|
|
847
|
-
msgid "
|
|
853
|
+
msgid "Calculation groups with no calculation items"
|
|
848
854
|
msgstr ""
|
|
849
855
|
"Skupine za izračun nimajo funkcije, razen če imajo elemente za izračun."
|
|
850
856
|
|
|
857
|
+
# description
|
|
858
|
+
msgid "Visible objects with no description"
|
|
859
|
+
msgstr ""
|
|
860
|
+
"Dodajanje opisov predmetom. Ti opisi so prikazani, ko premaknete kazalec "
|
|
861
|
+
"miške na seznamu polj v programu Power BI Desktop. Poleg tega lahko te opise"
|
|
862
|
+
" uporabite za ustvarjanje samodejnega podatkovnega slovarja."
|
|
863
|
+
|
|
851
864
|
# description
|
|
852
865
|
msgid "Provide format string for 'Date' columns"
|
|
853
866
|
msgstr ""
|
|
@@ -869,9 +882,24 @@ msgstr "Vidnim meram mora biti dodeljena lastnost niza oblike."
|
|
|
869
882
|
msgid "Add data category for columns"
|
|
870
883
|
msgstr "Dodajte lastnost »Kategorija podatkov« za ustrezne stolpce."
|
|
871
884
|
|
|
885
|
+
# description
|
|
886
|
+
msgid ""
|
|
887
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
888
|
+
msgstr ""
|
|
889
|
+
"Za boljšo uporabniško izkušnjo morajo biti merila percengage oblikovane z "
|
|
890
|
+
"znakom »%«."
|
|
891
|
+
|
|
892
|
+
# description
|
|
893
|
+
msgid ""
|
|
894
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
895
|
+
msgstr ""
|
|
896
|
+
"Za boljšo uporabniško izkušnjo je treba cele številke oblikovati z vejicami."
|
|
897
|
+
|
|
872
898
|
# description
|
|
873
899
|
msgid "Hide foreign keys"
|
|
874
|
-
msgstr "
|
|
900
|
+
msgstr ""
|
|
901
|
+
"Tuji ključi morajo biti vedno skriti, saj jih končni uporabniki ne smejo "
|
|
902
|
+
"uporabljati."
|
|
875
903
|
|
|
876
904
|
# description
|
|
877
905
|
msgid "Mark primary keys"
|
|
@@ -598,8 +598,8 @@ msgid ""
|
|
|
598
598
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
599
599
|
"on fact tables"
|
|
600
600
|
msgstr ""
|
|
601
|
-
"
|
|
602
|
-
"
|
|
601
|
+
"När du använder DirectQuery bör dimensionstabeller ställas in på dubbelt "
|
|
602
|
+
"läge för att förbättra frågeprestanda."
|
|
603
603
|
|
|
604
604
|
# description
|
|
605
605
|
msgid "Minimize Power Query transformations"
|
|
@@ -757,6 +757,12 @@ msgstr ""
|
|
|
757
757
|
"Två mått med olika namn och definierade av samma DAX-uttryck bör undvikas "
|
|
758
758
|
"för att minska redundansen."
|
|
759
759
|
|
|
760
|
+
# description
|
|
761
|
+
msgid ""
|
|
762
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
763
|
+
msgstr ""
|
|
764
|
+
"Om du lägger till ett konstant värde kan det leda till prestandaförsämring."
|
|
765
|
+
|
|
760
766
|
# description
|
|
761
767
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
762
768
|
msgstr ""
|
|
@@ -837,9 +843,16 @@ msgstr ""
|
|
|
837
843
|
"tabell i modellen med en relation."
|
|
838
844
|
|
|
839
845
|
# description
|
|
840
|
-
msgid "
|
|
846
|
+
msgid "Calculation groups with no calculation items"
|
|
841
847
|
msgstr "Beräkningsgrupper har ingen funktion om de inte har beräkningsobjekt."
|
|
842
848
|
|
|
849
|
+
# description
|
|
850
|
+
msgid "Visible objects with no description"
|
|
851
|
+
msgstr ""
|
|
852
|
+
"Lägg till beskrivningar till objekt. Dessa beskrivningar visas när du hovrar"
|
|
853
|
+
" över fältlistan i Power BI Desktop. Dessutom kan du använda dessa "
|
|
854
|
+
"beskrivningar för att skapa en automatiserad dataordlista."
|
|
855
|
+
|
|
843
856
|
# description
|
|
844
857
|
msgid "Provide format string for 'Date' columns"
|
|
845
858
|
msgstr ""
|
|
@@ -861,9 +874,24 @@ msgstr "Synliga mått ska ha sin formatsträngsegenskap tilldelad."
|
|
|
861
874
|
msgid "Add data category for columns"
|
|
862
875
|
msgstr "Lägg till egenskapen Datakategori för lämpliga kolumner."
|
|
863
876
|
|
|
877
|
+
# description
|
|
878
|
+
msgid ""
|
|
879
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
880
|
+
msgstr ""
|
|
881
|
+
"För en bättre användarupplevelse bör percengage-mått formateras med ett "
|
|
882
|
+
"%-tecken."
|
|
883
|
+
|
|
884
|
+
# description
|
|
885
|
+
msgid ""
|
|
886
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
887
|
+
msgstr ""
|
|
888
|
+
"För en bättre användarupplevelse bör heltal formateras med kommatecken."
|
|
889
|
+
|
|
864
890
|
# description
|
|
865
891
|
msgid "Hide foreign keys"
|
|
866
|
-
msgstr "
|
|
892
|
+
msgstr ""
|
|
893
|
+
"Sekundärnycklar bör alltid vara dolda eftersom de inte bör användas av "
|
|
894
|
+
"slutanvändare."
|
|
867
895
|
|
|
868
896
|
# description
|
|
869
897
|
msgid "Mark primary keys"
|
|
@@ -617,8 +617,8 @@ msgid ""
|
|
|
617
617
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
618
618
|
"on fact tables"
|
|
619
619
|
msgstr ""
|
|
620
|
-
"
|
|
621
|
-
"
|
|
620
|
+
"DirectQuery பயன்படுத்தும் போது, வினவல் செயல்திறனை மேம்படுத்த பரிமாண "
|
|
621
|
+
"அட்டவணைகள் இரட்டை பயன்முறைக்கு அமைக்கப்பட வேண்டும்."
|
|
622
622
|
|
|
623
623
|
# description
|
|
624
624
|
msgid "Minimize Power Query transformations"
|
|
@@ -785,6 +785,11 @@ msgstr ""
|
|
|
785
785
|
"வெவ்வேறு பெயர்களைக் கொண்ட மற்றும் ஒரே DAX வெளிப்பாட்டால் வரையறுக்கப்பட்ட "
|
|
786
786
|
"இரண்டு நடவடிக்கைகள் பணிநீக்கத்தைக் குறைக்க தவிர்க்கப்பட வேண்டும்."
|
|
787
787
|
|
|
788
|
+
# description
|
|
789
|
+
msgid ""
|
|
790
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
791
|
+
msgstr "நிலையான மதிப்பைச் சேர்ப்பது செயல்திறன் சரிவுக்கு வழிவகுக்கும்."
|
|
792
|
+
|
|
788
793
|
# description
|
|
789
794
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
790
795
|
msgstr ""
|
|
@@ -867,11 +872,18 @@ msgstr ""
|
|
|
867
872
|
"அட்டவணைகளை எடுத்துக்காட்டுகிறது."
|
|
868
873
|
|
|
869
874
|
# description
|
|
870
|
-
msgid "
|
|
875
|
+
msgid "Calculation groups with no calculation items"
|
|
871
876
|
msgstr ""
|
|
872
877
|
"கணக்கீட்டு உருப்படிகள் இல்லாவிட்டால் கணக்கீட்டு குழுக்களுக்கு எந்த "
|
|
873
878
|
"செயல்பாட்டும் இல்லை."
|
|
874
879
|
|
|
880
|
+
# description
|
|
881
|
+
msgid "Visible objects with no description"
|
|
882
|
+
msgstr ""
|
|
883
|
+
"பொருள்களுக்கு விளக்கங்களைச் சேர்க்கவும். இந்த விளக்கங்கள் Power BI "
|
|
884
|
+
"டெஸ்க்டாப்பில் உள்ள புலப் பட்டியலில் மிதவையில் காட்டப்பட்டுள்ளன. கூடுதலாக, "
|
|
885
|
+
"தானியங்கி தரவு அகராதியை உருவாக்க இந்த விளக்கங்களை நீங்கள் பயன்படுத்தலாம்."
|
|
886
|
+
|
|
875
887
|
# description
|
|
876
888
|
msgid "Provide format string for 'Date' columns"
|
|
877
889
|
msgstr ""
|
|
@@ -894,9 +906,25 @@ msgstr ""
|
|
|
894
906
|
msgid "Add data category for columns"
|
|
895
907
|
msgstr "பொருத்தமான நெடுவரிசைகளுக்கு தரவு வகை குணத்தைச் சேர்க்கவும்."
|
|
896
908
|
|
|
909
|
+
# description
|
|
910
|
+
msgid ""
|
|
911
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
912
|
+
msgstr ""
|
|
913
|
+
"சிறந்த பயனர் அனுபவத்திற்கு, percengage நடவடிக்கைகள் '%' அடையாளத்துடன் "
|
|
914
|
+
"வடிவமைக்கப்பட வேண்டும்."
|
|
915
|
+
|
|
916
|
+
# description
|
|
917
|
+
msgid ""
|
|
918
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
919
|
+
msgstr ""
|
|
920
|
+
"சிறந்த பயனர் அனுபவத்திற்காக, முழு எண்களும் காற்புள்ளிகளுடன் வடிவமைக்கப்பட "
|
|
921
|
+
"வேண்டும்."
|
|
922
|
+
|
|
897
923
|
# description
|
|
898
924
|
msgid "Hide foreign keys"
|
|
899
|
-
msgstr "
|
|
925
|
+
msgstr ""
|
|
926
|
+
"வெளிநாட்டு விசைகள் எப்போதும் மறைக்கப்பட வேண்டும், ஏனெனில் அவை இறுதி "
|
|
927
|
+
"பயனர்களால் பயன்படுத்தப்படக்கூடாது."
|
|
900
928
|
|
|
901
929
|
# description
|
|
902
930
|
msgid "Mark primary keys"
|
|
@@ -601,8 +601,8 @@ msgid ""
|
|
|
601
601
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
602
602
|
"on fact tables"
|
|
603
603
|
msgstr ""
|
|
604
|
-
"
|
|
605
|
-
"
|
|
604
|
+
"డైరెక్ట్ క్వెరీని ఉపయోగిస్తున్నప్పుడు, క్వైరీ పనితీరును మెరుగుపరచడం కొరకు "
|
|
605
|
+
"డైమెన్షన్ టేబుల్ లను డ్యూయల్ మోడ్ కు సెట్ చేయాలి."
|
|
606
606
|
|
|
607
607
|
# description
|
|
608
608
|
msgid "Minimize Power Query transformations"
|
|
@@ -762,6 +762,11 @@ msgstr ""
|
|
|
762
762
|
"పునరుద్ధరణను తగ్గించడానికి వేర్వేరు పేర్లతో మరియు ఒకే DAX వ్యక్తీకరణ ద్వారా "
|
|
763
763
|
"నిర్వచించబడిన రెండు కొలతలను నివారించాలి."
|
|
764
764
|
|
|
765
|
+
# description
|
|
766
|
+
msgid ""
|
|
767
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
768
|
+
msgstr "స్థిరమైన విలువను జోడించడం పనితీరు క్షీణతకు దారితీయవచ్చు."
|
|
769
|
+
|
|
765
770
|
# description
|
|
766
771
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
767
772
|
msgstr ""
|
|
@@ -842,9 +847,16 @@ msgstr ""
|
|
|
842
847
|
"హైలైట్ చేస్తుంది."
|
|
843
848
|
|
|
844
849
|
# description
|
|
845
|
-
msgid "
|
|
850
|
+
msgid "Calculation groups with no calculation items"
|
|
846
851
|
msgstr "లెక్కింపు అంశాలు ఉంటే తప్ప లెక్కింపు సమూహాలకు పని ఉండదు."
|
|
847
852
|
|
|
853
|
+
# description
|
|
854
|
+
msgid "Visible objects with no description"
|
|
855
|
+
msgstr ""
|
|
856
|
+
"ఆబ్జెక్టులకు వివరణలను జోడించండి. పవర్ BI డెస్క్ టాప్ లోని ఫీల్డ్ లిస్ట్ లో ఈ"
|
|
857
|
+
" వివరణలు చూపబడతాయి. అదనంగా, మీరు స్వయంచాలక డేటా నిఘంటువును సృష్టించడానికి ఈ "
|
|
858
|
+
"వివరణలను ఉపయోగించవచ్చు."
|
|
859
|
+
|
|
848
860
|
# description
|
|
849
861
|
msgid "Provide format string for 'Date' columns"
|
|
850
862
|
msgstr ""
|
|
@@ -866,9 +878,24 @@ msgstr "కనిపించే కొలతలకు వాటి ఫార్
|
|
|
866
878
|
msgid "Add data category for columns"
|
|
867
879
|
msgstr "తగిన కాలమ్ ల కొరకు డేటా కేటగిరీ ప్రాపర్టీని జోడించండి."
|
|
868
880
|
|
|
881
|
+
# description
|
|
882
|
+
msgid ""
|
|
883
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
884
|
+
msgstr ""
|
|
885
|
+
"మెరుగైన వినియోగదారు అనుభవం కొరకు, పర్సెంగేజ్ కొలతలను '%' గుర్తుతో ఫార్మాట్ "
|
|
886
|
+
"చేయాలి."
|
|
887
|
+
|
|
888
|
+
# description
|
|
889
|
+
msgid ""
|
|
890
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
891
|
+
msgstr ""
|
|
892
|
+
"మెరుగైన వినియోగదారు అనుభవం కోసం, మొత్తం సంఖ్యలను కమాస్ తో ఫార్మాట్ చేయాలి."
|
|
893
|
+
|
|
869
894
|
# description
|
|
870
895
|
msgid "Hide foreign keys"
|
|
871
|
-
msgstr "
|
|
896
|
+
msgstr ""
|
|
897
|
+
"విదేశీ కీలను ఎల్లప్పుడూ దాచాలి ఎందుకంటే వాటిని తుది వినియోగదారులు "
|
|
898
|
+
"ఉపయోగించకూడదు."
|
|
872
899
|
|
|
873
900
|
# description
|
|
874
901
|
msgid "Mark primary keys"
|
|
@@ -595,8 +595,8 @@ msgid ""
|
|
|
595
595
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
596
596
|
"on fact tables"
|
|
597
597
|
msgstr ""
|
|
598
|
-
"
|
|
599
|
-
"
|
|
598
|
+
"เมื่อใช้ DirectQuery "
|
|
599
|
+
"ควรตั้งค่าตารางมิติเป็นโหมดคู่เพื่อปรับปรุงประสิทธิภาพการสืบค้น"
|
|
600
600
|
|
|
601
601
|
# description
|
|
602
602
|
msgid "Minimize Power Query transformations"
|
|
@@ -749,6 +749,11 @@ msgstr ""
|
|
|
749
749
|
"ควรหลีกเลี่ยงหน่วยวัดสองหน่วยวัดที่มีชื่อต่างกันและกําหนดโดยนิพจน์ DAX "
|
|
750
750
|
"เดียวกันเพื่อลดความซ้ําซ้อน"
|
|
751
751
|
|
|
752
|
+
# description
|
|
753
|
+
msgid ""
|
|
754
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
755
|
+
msgstr "การเพิ่มค่าคงที่อาจทําให้ประสิทธิภาพลดลง"
|
|
756
|
+
|
|
752
757
|
# description
|
|
753
758
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
754
759
|
msgstr ""
|
|
@@ -825,9 +830,17 @@ msgstr ""
|
|
|
825
830
|
"กฎนี้เน้นตารางที่ไม่ได้เชื่อมต่อกับตารางอื่นในแบบจําลองที่มีความสัมพันธ์"
|
|
826
831
|
|
|
827
832
|
# description
|
|
828
|
-
msgid "
|
|
833
|
+
msgid "Calculation groups with no calculation items"
|
|
829
834
|
msgstr "กลุ่มการคํานวณไม่มีฟังก์ชัน เว้นแต่จะมีรายการการคํานวณ"
|
|
830
835
|
|
|
836
|
+
# description
|
|
837
|
+
msgid "Visible objects with no description"
|
|
838
|
+
msgstr ""
|
|
839
|
+
"เพิ่มคําอธิบายให้กับวัตถุ "
|
|
840
|
+
"คําอธิบายเหล่านี้จะแสดงเมื่อวางเมาส์เหนือภายในรายการเขตข้อมูลใน Power BI "
|
|
841
|
+
"Desktop นอกจากนี้ "
|
|
842
|
+
"คุณสามารถใช้ประโยชน์จากคําอธิบายเหล่านี้เพื่อสร้างพจนานุกรมข้อมูลอัตโนมัติได้"
|
|
843
|
+
|
|
831
844
|
# description
|
|
832
845
|
msgid "Provide format string for 'Date' columns"
|
|
833
846
|
msgstr "คอลัมน์ประเภท \"DateTime\" ที่มี \"Month\" ในชื่อควรจัดรูปแบบเป็น \"mm/dd/yyyy\""
|
|
@@ -846,9 +859,23 @@ msgstr "หน่วยวัดที่มองเห็นได้ควร
|
|
|
846
859
|
msgid "Add data category for columns"
|
|
847
860
|
msgstr "เพิ่มคุณสมบัติประเภทข้อมูลสําหรับคอลัมน์ที่เหมาะสม"
|
|
848
861
|
|
|
862
|
+
# description
|
|
863
|
+
msgid ""
|
|
864
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
865
|
+
msgstr ""
|
|
866
|
+
"เพื่อประสบการณ์การใช้งานที่ดียิ่งขึ้น ควรจัดรูปแบบมาตรการ percengage "
|
|
867
|
+
"ด้วยเครื่องหมาย '%'"
|
|
868
|
+
|
|
869
|
+
# description
|
|
870
|
+
msgid ""
|
|
871
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
872
|
+
msgstr ""
|
|
873
|
+
"เพื่อประสบการณ์การใช้งานที่ดียิ่งขึ้น "
|
|
874
|
+
"ควรจัดรูปแบบจํานวนเต็มด้วยเครื่องหมายจุลภาค"
|
|
875
|
+
|
|
849
876
|
# description
|
|
850
877
|
msgid "Hide foreign keys"
|
|
851
|
-
msgstr "
|
|
878
|
+
msgstr "ควรซ่อนคีย์ต่างประเทศไว้เสมอ เนื่องจากผู้ใช้ปลายทางไม่ควรใช้"
|
|
852
879
|
|
|
853
880
|
# description
|
|
854
881
|
msgid "Mark primary keys"
|
|
@@ -605,8 +605,8 @@ msgid ""
|
|
|
605
605
|
"Set dimensions tables to dual mode instead of import when using DirectQuery "
|
|
606
606
|
"on fact tables"
|
|
607
607
|
msgstr ""
|
|
608
|
-
"
|
|
609
|
-
"
|
|
608
|
+
"DirectQuery kullanılırken, sorgu performansını artırmak için boyut "
|
|
609
|
+
"tablolarının İkili moda ayarlanması gerekir."
|
|
610
610
|
|
|
611
611
|
# description
|
|
612
612
|
msgid "Minimize Power Query transformations"
|
|
@@ -766,6 +766,11 @@ msgstr ""
|
|
|
766
766
|
"Yedekliliği azaltmak için farklı adlara sahip ve aynı DAX ifadesiyle "
|
|
767
767
|
"tanımlanan iki ölçümden kaçınılmalıdır."
|
|
768
768
|
|
|
769
|
+
# description
|
|
770
|
+
msgid ""
|
|
771
|
+
"Avoid addition or subtraction of constant values to results of divisions"
|
|
772
|
+
msgstr "Sabit bir değer eklemek performans düşüşüne neden olabilir."
|
|
773
|
+
|
|
769
774
|
# description
|
|
770
775
|
msgid "Avoid using '1-(x/y)' syntax"
|
|
771
776
|
msgstr ""
|
|
@@ -845,11 +850,18 @@ msgstr ""
|
|
|
845
850
|
"vurgular."
|
|
846
851
|
|
|
847
852
|
# description
|
|
848
|
-
msgid "
|
|
853
|
+
msgid "Calculation groups with no calculation items"
|
|
849
854
|
msgstr ""
|
|
850
855
|
"Hesaplama grupları, hesaplama öğelerine sahip olmadıkça hiçbir işleve sahip "
|
|
851
856
|
"değildir."
|
|
852
857
|
|
|
858
|
+
# description
|
|
859
|
+
msgid "Visible objects with no description"
|
|
860
|
+
msgstr ""
|
|
861
|
+
"Nesnelere açıklamalar ekleyin. Bu açıklamalar, Power BI Desktop'taki Alan "
|
|
862
|
+
"Listesi'nde üzerine gelindiğinde gösterilir. Ayrıca, otomatik bir veri "
|
|
863
|
+
"sözlüğü oluşturmak için bu açıklamalardan yararlanabilirsiniz."
|
|
864
|
+
|
|
853
865
|
# description
|
|
854
866
|
msgid "Provide format string for 'Date' columns"
|
|
855
867
|
msgstr ""
|
|
@@ -871,9 +883,25 @@ msgstr "Görünür ölçülere biçim dizesi özelliği atanmış olmalıdır."
|
|
|
871
883
|
msgid "Add data category for columns"
|
|
872
884
|
msgstr "Uygun sütunlar için Veri Kategorisi özelliği ekleyin."
|
|
873
885
|
|
|
886
|
+
# description
|
|
887
|
+
msgid ""
|
|
888
|
+
"Percentages should be formatted with thousands separators and 1 decimal"
|
|
889
|
+
msgstr ""
|
|
890
|
+
"Daha iyi bir kullanıcı deneyimi için, percengage ölçüleri '%' işaretiyle "
|
|
891
|
+
"biçimlendirilmelidir."
|
|
892
|
+
|
|
893
|
+
# description
|
|
894
|
+
msgid ""
|
|
895
|
+
"Whole numbers should be formatted with thousands separators and no decimals"
|
|
896
|
+
msgstr ""
|
|
897
|
+
"Daha iyi bir kullanıcı deneyimi için tam sayılar virgülle "
|
|
898
|
+
"biçimlendirilmelidir."
|
|
899
|
+
|
|
874
900
|
# description
|
|
875
901
|
msgid "Hide foreign keys"
|
|
876
|
-
msgstr "
|
|
902
|
+
msgstr ""
|
|
903
|
+
"Yabancı anahtarlar, son kullanıcılar tarafından kullanılmaması gerektiği "
|
|
904
|
+
"için her zaman gizlenmelidir."
|
|
877
905
|
|
|
878
906
|
# description
|
|
879
907
|
msgid "Mark primary keys"
|