semantic-link-labs 0.12.8__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.
Files changed (243) hide show
  1. semantic_link_labs-0.12.8.dist-info/METADATA +354 -0
  2. semantic_link_labs-0.12.8.dist-info/RECORD +243 -0
  3. semantic_link_labs-0.12.8.dist-info/WHEEL +5 -0
  4. semantic_link_labs-0.12.8.dist-info/licenses/LICENSE +21 -0
  5. semantic_link_labs-0.12.8.dist-info/top_level.txt +1 -0
  6. sempy_labs/__init__.py +606 -0
  7. sempy_labs/_a_lib_info.py +2 -0
  8. sempy_labs/_ai.py +437 -0
  9. sempy_labs/_authentication.py +264 -0
  10. sempy_labs/_bpa_translation/_model/_translations_am-ET.po +869 -0
  11. sempy_labs/_bpa_translation/_model/_translations_ar-AE.po +908 -0
  12. sempy_labs/_bpa_translation/_model/_translations_bg-BG.po +968 -0
  13. sempy_labs/_bpa_translation/_model/_translations_ca-ES.po +963 -0
  14. sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po +943 -0
  15. sempy_labs/_bpa_translation/_model/_translations_da-DK.po +945 -0
  16. sempy_labs/_bpa_translation/_model/_translations_de-DE.po +988 -0
  17. sempy_labs/_bpa_translation/_model/_translations_el-GR.po +993 -0
  18. sempy_labs/_bpa_translation/_model/_translations_es-ES.po +971 -0
  19. sempy_labs/_bpa_translation/_model/_translations_fa-IR.po +933 -0
  20. sempy_labs/_bpa_translation/_model/_translations_fi-FI.po +942 -0
  21. sempy_labs/_bpa_translation/_model/_translations_fr-FR.po +994 -0
  22. sempy_labs/_bpa_translation/_model/_translations_ga-IE.po +967 -0
  23. sempy_labs/_bpa_translation/_model/_translations_he-IL.po +902 -0
  24. sempy_labs/_bpa_translation/_model/_translations_hi-IN.po +944 -0
  25. sempy_labs/_bpa_translation/_model/_translations_hu-HU.po +963 -0
  26. sempy_labs/_bpa_translation/_model/_translations_id-ID.po +946 -0
  27. sempy_labs/_bpa_translation/_model/_translations_is-IS.po +939 -0
  28. sempy_labs/_bpa_translation/_model/_translations_it-IT.po +986 -0
  29. sempy_labs/_bpa_translation/_model/_translations_ja-JP.po +846 -0
  30. sempy_labs/_bpa_translation/_model/_translations_ko-KR.po +839 -0
  31. sempy_labs/_bpa_translation/_model/_translations_mt-MT.po +967 -0
  32. sempy_labs/_bpa_translation/_model/_translations_nl-NL.po +978 -0
  33. sempy_labs/_bpa_translation/_model/_translations_pl-PL.po +962 -0
  34. sempy_labs/_bpa_translation/_model/_translations_pt-BR.po +962 -0
  35. sempy_labs/_bpa_translation/_model/_translations_pt-PT.po +957 -0
  36. sempy_labs/_bpa_translation/_model/_translations_ro-RO.po +968 -0
  37. sempy_labs/_bpa_translation/_model/_translations_ru-RU.po +964 -0
  38. sempy_labs/_bpa_translation/_model/_translations_sk-SK.po +952 -0
  39. sempy_labs/_bpa_translation/_model/_translations_sl-SL.po +950 -0
  40. sempy_labs/_bpa_translation/_model/_translations_sv-SE.po +942 -0
  41. sempy_labs/_bpa_translation/_model/_translations_ta-IN.po +976 -0
  42. sempy_labs/_bpa_translation/_model/_translations_te-IN.po +947 -0
  43. sempy_labs/_bpa_translation/_model/_translations_th-TH.po +924 -0
  44. sempy_labs/_bpa_translation/_model/_translations_tr-TR.po +953 -0
  45. sempy_labs/_bpa_translation/_model/_translations_uk-UA.po +961 -0
  46. sempy_labs/_bpa_translation/_model/_translations_zh-CN.po +804 -0
  47. sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po +969 -0
  48. sempy_labs/_capacities.py +1198 -0
  49. sempy_labs/_capacity_migration.py +660 -0
  50. sempy_labs/_clear_cache.py +351 -0
  51. sempy_labs/_connections.py +610 -0
  52. sempy_labs/_dashboards.py +69 -0
  53. sempy_labs/_data_access_security.py +98 -0
  54. sempy_labs/_data_pipelines.py +162 -0
  55. sempy_labs/_dataflows.py +668 -0
  56. sempy_labs/_dax.py +501 -0
  57. sempy_labs/_daxformatter.py +80 -0
  58. sempy_labs/_delta_analyzer.py +467 -0
  59. sempy_labs/_delta_analyzer_history.py +301 -0
  60. sempy_labs/_dictionary_diffs.py +221 -0
  61. sempy_labs/_documentation.py +147 -0
  62. sempy_labs/_domains.py +51 -0
  63. sempy_labs/_eventhouses.py +182 -0
  64. sempy_labs/_external_data_shares.py +230 -0
  65. sempy_labs/_gateways.py +521 -0
  66. sempy_labs/_generate_semantic_model.py +521 -0
  67. sempy_labs/_get_connection_string.py +84 -0
  68. sempy_labs/_git.py +543 -0
  69. sempy_labs/_graphQL.py +90 -0
  70. sempy_labs/_helper_functions.py +2833 -0
  71. sempy_labs/_icons.py +149 -0
  72. sempy_labs/_job_scheduler.py +609 -0
  73. sempy_labs/_kql_databases.py +149 -0
  74. sempy_labs/_kql_querysets.py +124 -0
  75. sempy_labs/_kusto.py +137 -0
  76. sempy_labs/_labels.py +124 -0
  77. sempy_labs/_list_functions.py +1720 -0
  78. sempy_labs/_managed_private_endpoints.py +253 -0
  79. sempy_labs/_mirrored_databases.py +416 -0
  80. sempy_labs/_mirrored_warehouses.py +60 -0
  81. sempy_labs/_ml_experiments.py +113 -0
  82. sempy_labs/_model_auto_build.py +140 -0
  83. sempy_labs/_model_bpa.py +557 -0
  84. sempy_labs/_model_bpa_bulk.py +378 -0
  85. sempy_labs/_model_bpa_rules.py +859 -0
  86. sempy_labs/_model_dependencies.py +343 -0
  87. sempy_labs/_mounted_data_factories.py +123 -0
  88. sempy_labs/_notebooks.py +441 -0
  89. sempy_labs/_one_lake_integration.py +151 -0
  90. sempy_labs/_onelake.py +131 -0
  91. sempy_labs/_query_scale_out.py +433 -0
  92. sempy_labs/_refresh_semantic_model.py +435 -0
  93. sempy_labs/_semantic_models.py +468 -0
  94. sempy_labs/_spark.py +455 -0
  95. sempy_labs/_sql.py +241 -0
  96. sempy_labs/_sql_audit_settings.py +207 -0
  97. sempy_labs/_sql_endpoints.py +214 -0
  98. sempy_labs/_tags.py +201 -0
  99. sempy_labs/_translations.py +43 -0
  100. sempy_labs/_user_delegation_key.py +44 -0
  101. sempy_labs/_utils.py +79 -0
  102. sempy_labs/_vertipaq.py +1021 -0
  103. sempy_labs/_vpax.py +388 -0
  104. sempy_labs/_warehouses.py +234 -0
  105. sempy_labs/_workloads.py +140 -0
  106. sempy_labs/_workspace_identity.py +72 -0
  107. sempy_labs/_workspaces.py +595 -0
  108. sempy_labs/admin/__init__.py +170 -0
  109. sempy_labs/admin/_activities.py +167 -0
  110. sempy_labs/admin/_apps.py +145 -0
  111. sempy_labs/admin/_artifacts.py +65 -0
  112. sempy_labs/admin/_basic_functions.py +463 -0
  113. sempy_labs/admin/_capacities.py +508 -0
  114. sempy_labs/admin/_dataflows.py +45 -0
  115. sempy_labs/admin/_datasets.py +186 -0
  116. sempy_labs/admin/_domains.py +522 -0
  117. sempy_labs/admin/_external_data_share.py +100 -0
  118. sempy_labs/admin/_git.py +72 -0
  119. sempy_labs/admin/_items.py +265 -0
  120. sempy_labs/admin/_labels.py +211 -0
  121. sempy_labs/admin/_reports.py +241 -0
  122. sempy_labs/admin/_scanner.py +118 -0
  123. sempy_labs/admin/_shared.py +82 -0
  124. sempy_labs/admin/_sharing_links.py +110 -0
  125. sempy_labs/admin/_tags.py +131 -0
  126. sempy_labs/admin/_tenant.py +503 -0
  127. sempy_labs/admin/_tenant_keys.py +89 -0
  128. sempy_labs/admin/_users.py +140 -0
  129. sempy_labs/admin/_workspaces.py +236 -0
  130. sempy_labs/deployment_pipeline/__init__.py +23 -0
  131. sempy_labs/deployment_pipeline/_items.py +580 -0
  132. sempy_labs/directlake/__init__.py +57 -0
  133. sempy_labs/directlake/_autosync.py +58 -0
  134. sempy_labs/directlake/_directlake_schema_compare.py +120 -0
  135. sempy_labs/directlake/_directlake_schema_sync.py +161 -0
  136. sempy_labs/directlake/_dl_helper.py +274 -0
  137. sempy_labs/directlake/_generate_shared_expression.py +94 -0
  138. sempy_labs/directlake/_get_directlake_lakehouse.py +62 -0
  139. sempy_labs/directlake/_get_shared_expression.py +34 -0
  140. sempy_labs/directlake/_guardrails.py +96 -0
  141. sempy_labs/directlake/_list_directlake_model_calc_tables.py +70 -0
  142. sempy_labs/directlake/_show_unsupported_directlake_objects.py +90 -0
  143. sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +239 -0
  144. sempy_labs/directlake/_update_directlake_partition_entity.py +259 -0
  145. sempy_labs/directlake/_warm_cache.py +236 -0
  146. sempy_labs/dotnet_lib/dotnet.runtime.config.json +10 -0
  147. sempy_labs/environment/__init__.py +23 -0
  148. sempy_labs/environment/_items.py +212 -0
  149. sempy_labs/environment/_pubstage.py +223 -0
  150. sempy_labs/eventstream/__init__.py +37 -0
  151. sempy_labs/eventstream/_items.py +263 -0
  152. sempy_labs/eventstream/_topology.py +652 -0
  153. sempy_labs/graph/__init__.py +59 -0
  154. sempy_labs/graph/_groups.py +651 -0
  155. sempy_labs/graph/_sensitivity_labels.py +120 -0
  156. sempy_labs/graph/_teams.py +125 -0
  157. sempy_labs/graph/_user_licenses.py +96 -0
  158. sempy_labs/graph/_users.py +516 -0
  159. sempy_labs/graph_model/__init__.py +15 -0
  160. sempy_labs/graph_model/_background_jobs.py +63 -0
  161. sempy_labs/graph_model/_items.py +149 -0
  162. sempy_labs/lakehouse/__init__.py +67 -0
  163. sempy_labs/lakehouse/_blobs.py +247 -0
  164. sempy_labs/lakehouse/_get_lakehouse_columns.py +102 -0
  165. sempy_labs/lakehouse/_get_lakehouse_tables.py +274 -0
  166. sempy_labs/lakehouse/_helper.py +250 -0
  167. sempy_labs/lakehouse/_lakehouse.py +351 -0
  168. sempy_labs/lakehouse/_livy_sessions.py +143 -0
  169. sempy_labs/lakehouse/_materialized_lake_views.py +157 -0
  170. sempy_labs/lakehouse/_partitioning.py +165 -0
  171. sempy_labs/lakehouse/_schemas.py +217 -0
  172. sempy_labs/lakehouse/_shortcuts.py +440 -0
  173. sempy_labs/migration/__init__.py +35 -0
  174. sempy_labs/migration/_create_pqt_file.py +238 -0
  175. sempy_labs/migration/_direct_lake_to_import.py +105 -0
  176. sempy_labs/migration/_migrate_calctables_to_lakehouse.py +398 -0
  177. sempy_labs/migration/_migrate_calctables_to_semantic_model.py +148 -0
  178. sempy_labs/migration/_migrate_model_objects_to_semantic_model.py +533 -0
  179. sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py +172 -0
  180. sempy_labs/migration/_migration_validation.py +71 -0
  181. sempy_labs/migration/_refresh_calc_tables.py +131 -0
  182. sempy_labs/mirrored_azure_databricks_catalog/__init__.py +15 -0
  183. sempy_labs/mirrored_azure_databricks_catalog/_discover.py +213 -0
  184. sempy_labs/mirrored_azure_databricks_catalog/_refresh_catalog_metadata.py +45 -0
  185. sempy_labs/ml_model/__init__.py +23 -0
  186. sempy_labs/ml_model/_functions.py +427 -0
  187. sempy_labs/report/_BPAReportTemplate.json +232 -0
  188. sempy_labs/report/__init__.py +55 -0
  189. sempy_labs/report/_bpareporttemplate/.pbi/localSettings.json +9 -0
  190. sempy_labs/report/_bpareporttemplate/.platform +11 -0
  191. sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json +710 -0
  192. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/page.json +11 -0
  193. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/1b08bce3bebabb0a27a8/visual.json +191 -0
  194. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/2f22ddb70c301693c165/visual.json +438 -0
  195. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/3b1182230aa6c600b43a/visual.json +127 -0
  196. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/58577ba6380c69891500/visual.json +576 -0
  197. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/a2a8fa5028b3b776c96c/visual.json +207 -0
  198. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/adfd47ef30652707b987/visual.json +506 -0
  199. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/b6a80ee459e716e170b1/visual.json +127 -0
  200. sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/ce3130a721c020cc3d81/visual.json +513 -0
  201. sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/page.json +8 -0
  202. sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/visuals/66e60dfb526437cd78d1/visual.json +112 -0
  203. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/page.json +11 -0
  204. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/07deb8bce824e1be37d7/visual.json +513 -0
  205. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0b1c68838818b32ad03b/visual.json +352 -0
  206. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0c171de9d2683d10b930/visual.json +37 -0
  207. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0efa01be0510e40a645e/visual.json +542 -0
  208. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/6bf2f0eb830ab53cc668/visual.json +221 -0
  209. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/88d8141cb8500b60030c/visual.json +127 -0
  210. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/a753273590beed656a03/visual.json +576 -0
  211. sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/b8fdc82cddd61ac447bc/visual.json +127 -0
  212. sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json +9 -0
  213. sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json +38 -0
  214. sempy_labs/report/_bpareporttemplate/definition/pages/pages.json +10 -0
  215. sempy_labs/report/_bpareporttemplate/definition/report.json +176 -0
  216. sempy_labs/report/_bpareporttemplate/definition/version.json +4 -0
  217. sempy_labs/report/_bpareporttemplate/definition.pbir +14 -0
  218. sempy_labs/report/_download_report.py +76 -0
  219. sempy_labs/report/_export_report.py +257 -0
  220. sempy_labs/report/_generate_report.py +427 -0
  221. sempy_labs/report/_paginated.py +76 -0
  222. sempy_labs/report/_report_bpa.py +354 -0
  223. sempy_labs/report/_report_bpa_rules.py +115 -0
  224. sempy_labs/report/_report_functions.py +581 -0
  225. sempy_labs/report/_report_helper.py +227 -0
  226. sempy_labs/report/_report_list_functions.py +110 -0
  227. sempy_labs/report/_report_rebind.py +149 -0
  228. sempy_labs/report/_reportwrapper.py +3100 -0
  229. sempy_labs/report/_save_report.py +147 -0
  230. sempy_labs/snowflake_database/__init__.py +10 -0
  231. sempy_labs/snowflake_database/_items.py +105 -0
  232. sempy_labs/sql_database/__init__.py +21 -0
  233. sempy_labs/sql_database/_items.py +201 -0
  234. sempy_labs/sql_database/_mirroring.py +79 -0
  235. sempy_labs/theme/__init__.py +12 -0
  236. sempy_labs/theme/_org_themes.py +129 -0
  237. sempy_labs/tom/__init__.py +3 -0
  238. sempy_labs/tom/_model.py +5977 -0
  239. sempy_labs/variable_library/__init__.py +19 -0
  240. sempy_labs/variable_library/_functions.py +403 -0
  241. sempy_labs/warehouse/__init__.py +28 -0
  242. sempy_labs/warehouse/_items.py +234 -0
  243. sempy_labs/warehouse/_restore_points.py +309 -0
@@ -0,0 +1,969 @@
1
+ #
2
+ msgid ""
3
+ msgstr ""
4
+ "Language: zu-ZA\n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ # rule_name
10
+ msgid "Do not use floating point data types"
11
+ msgstr "Ungasebenzisi izinhlobo zedatha yephuzu elintantayo"
12
+
13
+ # rule_name
14
+ msgid "Avoid using calculated columns"
15
+ msgstr "Gwema ukusebenzisa amakholomu abalwe"
16
+
17
+ # rule_name
18
+ msgid "Check if bi-directional and many-to-many relationships are valid"
19
+ msgstr ""
20
+ "Hlola ukuthi ubudlelwane be-bi-directional kanye nobuningi obuningi "
21
+ "buqinisekisiwe"
22
+
23
+ # rule_name
24
+ msgid "Check if dynamic row level security (RLS) is necessary"
25
+ msgstr ""
26
+ "Hlola ukuthi ukuphepha kwezinga le-row ashukumisayo (RLS) kuyadingeka yini"
27
+
28
+ # rule_name
29
+ msgid ""
30
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
31
+ "security"
32
+ msgstr ""
33
+ "Gwema ukusebenzisa ubudlelwane obuningi kumatafula asetshenziselwa ukuphepha"
34
+ " kwezinga le-row ashukumisayo"
35
+
36
+ # rule_name
37
+ msgid "Many-to-many relationships should be single-direction"
38
+ msgstr "Ubudlelwane obuningi kufanele kube isiqondiso esisodwa"
39
+
40
+ # rule_name
41
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
42
+ msgstr "Setha i-IsAvailableInMdx ku-false kumakholomu angewona ama-attribute"
43
+
44
+ # rule_name
45
+ msgid ""
46
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
47
+ "hybrid table"
48
+ msgstr ""
49
+ "Setha impahla 'ye-Data Coverage Definition' ku-DirectQuery ukwahlukanisa "
50
+ "itafula le-hybrid"
51
+
52
+ # rule_name
53
+ msgid ""
54
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
55
+ "the corresponding fact table"
56
+ msgstr ""
57
+ "Imodi emibili ihambelana kuphela namatafula obukhulu uma i-DirectQuery "
58
+ "isetshenziselwa itafula leqiniso elihambisanayo"
59
+
60
+ # rule_name
61
+ msgid ""
62
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
63
+ "on fact tables"
64
+ msgstr ""
65
+ "Setha ubukhulu amatafula kwimodi emibili esikhundleni sokungenisa uma "
66
+ "usebenzisa i-DirectQuery kumathebula amaqiniso"
67
+
68
+ # rule_name
69
+ msgid "Minimize Power Query transformations"
70
+ msgstr "Nciphisa izinguquko ze-Power Query"
71
+
72
+ # rule_name
73
+ msgid "Consider a star-schema instead of a snowflake architecture"
74
+ msgstr "Cabanga nge-star-schema esikhundleni sesakhiwo seqhwa"
75
+
76
+ # rule_name
77
+ msgid "Avoid using views when using Direct Lake mode"
78
+ msgstr "Gwema ukusebenzisa imibono uma usebenzisa imodi ye-Direct Lake"
79
+
80
+ # rule_name
81
+ msgid "Avoid adding 0 to a measure"
82
+ msgstr "Gwema ukwengeza i-0 esilinganisweni"
83
+
84
+ # rule_name
85
+ msgid "Reduce usage of calculated tables"
86
+ msgstr "Nciphisa ukusetshenziswa kwamatafula abalwe"
87
+
88
+ # rule_name
89
+ msgid "Reduce usage of calculated columns that use the RELATED function"
90
+ msgstr ""
91
+ "Nciphisa ukusetshenziswa kwamakholomu abalwe asebenzisa umsebenzi we-RELATED"
92
+
93
+ # rule_name
94
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
95
+ msgstr "Gwema ubudlelwane ngokweqile be-bi-directional noma obuningi"
96
+
97
+ # rule_name
98
+ msgid "Remove auto-date table"
99
+ msgstr "Susa ithebula losuku oluzenzakalelayo"
100
+
101
+ # rule_name
102
+ msgid "Date/calendar tables should be marked as a date table"
103
+ msgstr "Amatafula osuku/ikhalenda kufanele aphawulwe njengethebula losuku"
104
+
105
+ # rule_name
106
+ msgid "Large tables should be partitioned"
107
+ msgstr "Amatafula amakhulu kufanele ahlukaniswe"
108
+
109
+ # rule_name
110
+ msgid "Limit row level security (RLS) logic"
111
+ msgstr "Umkhawulo wezinga lokugwedla ukuphepha (RLS) logic"
112
+
113
+ # rule_name
114
+ msgid "Model should have a date table"
115
+ msgstr "Imodeli kufanele ibe netafula losuku"
116
+
117
+ # rule_name
118
+ msgid "Calculation items must have an expression"
119
+ msgstr "Izinto zokubala kumele zibe nenkulumo"
120
+
121
+ # rule_name
122
+ msgid "Relationship columns should be of the same data type"
123
+ msgstr "Amakholomu obudlelwane kufanele abe uhlobo olufanayo lwedatha"
124
+
125
+ # rule_name
126
+ msgid "Data columns must have a source column"
127
+ msgstr "Amakholomu wedatha kumele abe nekholomu yomthombo"
128
+
129
+ # rule_name
130
+ msgid "Set IsAvailableInMdx to true on necessary columns"
131
+ msgstr "Setha IsAvailableInMdx kuyiqiniso kumakholomu adingekayo"
132
+
133
+ # rule_name
134
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
135
+ msgstr ""
136
+ "Gwema umsebenzi we-USERELATIONSHIP kanye ne-RLS ngokumelene netafula "
137
+ "elifanayo"
138
+
139
+ # rule_name
140
+ msgid "Avoid using the IFERROR function"
141
+ msgstr "Gwema ukusebenzisa umsebenzi we-IFERROR"
142
+
143
+ # rule_name
144
+ msgid ""
145
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
146
+ msgstr ""
147
+ "Sebenzisa umsebenzi we-TREATAS esikhundleni se-INTERSECT yobudlelwane "
148
+ "obubonakalayo"
149
+
150
+ # rule_name
151
+ msgid "The EVALUATEANDLOG function should not be used in production models"
152
+ msgstr ""
153
+ "Umsebenzi we-EXPLOREANDLOG akufanele usetshenziswe kumamodeli wokukhiqiza"
154
+
155
+ # rule_name
156
+ msgid "Measures should not be direct references of other measures"
157
+ msgstr "Izinyathelo akufanele zibe izinkomba eziqondile zezinye izinyathelo"
158
+
159
+ # rule_name
160
+ msgid "No two measures should have the same definition"
161
+ msgstr "Azikho izinyathelo ezimbili okufanele zibe nencazelo efanayo"
162
+
163
+ # rule_name
164
+ msgid ""
165
+ "Avoid addition or subtraction of constant values to results of divisions"
166
+ msgstr ""
167
+ "Gwema ukwengeza noma ukukhipha amanani ahlala njalo emiphumeleni yokuhlukana"
168
+
169
+ # rule_name
170
+ msgid "Avoid using '1-(x/y)' syntax"
171
+ msgstr "Gwema ukusebenzisa i-syntax '1- (x / y)'"
172
+
173
+ # rule_name
174
+ msgid "Filter measure values by columns, not tables"
175
+ msgstr "Hlunga amanani okulinganisa ngamakholomu, hhayi amatafula"
176
+
177
+ # rule_name
178
+ msgid "Filter column values with proper syntax"
179
+ msgstr "Hlunga amanani ekholomu nge-syntax efanele"
180
+
181
+ # rule_name
182
+ msgid "Use the DIVIDE function for division"
183
+ msgstr "Sebenzisa umsebenzi we-DIVIDE wokuhlukanisa"
184
+
185
+ # rule_name
186
+ msgid "Column references should be fully qualified"
187
+ msgstr "Izinkomba zekholomu kufanele zifaneleke ngokugcwele"
188
+
189
+ # rule_name
190
+ msgid "Measure references should be unqualified"
191
+ msgstr "Izinkomba zesilinganiso kufanele zingafaneleki"
192
+
193
+ # rule_name
194
+ msgid "Inactive relationships that are never activated"
195
+ msgstr "Ubudlelwano obungasebenzi obungakaze busebenze"
196
+
197
+ # rule_name
198
+ msgid "Remove unnecessary columns"
199
+ msgstr "Susa amakholomu angadingekile"
200
+
201
+ # rule_name
202
+ msgid "Remove unnecessary measures"
203
+ msgstr "Susa izinyathelo ezingadingekile"
204
+
205
+ # rule_name
206
+ msgid "Ensure tables have relationships"
207
+ msgstr "Qinisekisa ukuthi amatafula anobudlelwano"
208
+
209
+ # rule_name
210
+ msgid "Calculation groups with no calculation items"
211
+ msgstr "Amaqembu okubala ngaphandle kwezinto zokubala"
212
+
213
+ # rule_name
214
+ msgid "Visible objects with no description"
215
+ msgstr "Izinto ezibonakalayo ngaphandle kwencazelo"
216
+
217
+ # rule_name
218
+ msgid "Provide format string for 'Date' columns"
219
+ msgstr "Nikeza umucu wefomethi yamakholomu 'Osuku'"
220
+
221
+ # rule_name
222
+ msgid "Do not summarize numeric columns"
223
+ msgstr "Ungafingqi amakholomu ezinombolo"
224
+
225
+ # rule_name
226
+ msgid "Provide format string for measures"
227
+ msgstr "Nikeza umucu wefomethi yezinyathelo"
228
+
229
+ # rule_name
230
+ msgid "Add data category for columns"
231
+ msgstr "Engeza isigaba sedatha yamakholomu"
232
+
233
+ # rule_name
234
+ msgid ""
235
+ "Percentages should be formatted with thousands separators and 1 decimal"
236
+ msgstr ""
237
+ "Amaphesenti kufanele ahlelwe ngezinkulungwane zezihlukanisi kanye ne-1 "
238
+ "decimal"
239
+
240
+ # rule_name
241
+ msgid ""
242
+ "Whole numbers should be formatted with thousands separators and no decimals"
243
+ msgstr ""
244
+ "Izinombolo eziphelele kufanele zihlelwe ngezinkulungwane zezihlukanisi futhi"
245
+ " akukho ama-decimals"
246
+
247
+ # rule_name
248
+ msgid "Hide foreign keys"
249
+ msgstr "Fihla okhiye bangaphandle"
250
+
251
+ # rule_name
252
+ msgid "Mark primary keys"
253
+ msgstr "Phawula okhiye abaphambili"
254
+
255
+ # rule_name
256
+ msgid "Month (as a string) must be sorted"
257
+ msgstr "Inyanga (njengentambo) kumele ihlelwe"
258
+
259
+ # rule_name
260
+ msgid "Relationship columns should be of integer data type"
261
+ msgstr "Amakholomu obudlelwane kufanele abe ngohlobo lwedatha ye-integer"
262
+
263
+ # rule_name
264
+ msgid "Provide format string for \"Month\" columns"
265
+ msgstr "Nikeza umucu wefomethi yamakholomu \"Inyanga\""
266
+
267
+ # rule_name
268
+ msgid "Format flag columns as Yes/No value strings"
269
+ msgstr "Hlela amakholomu efulegi njengezintambo zenani likaYebo / Cha"
270
+
271
+ # rule_name
272
+ msgid "Objects should not start or end with a space"
273
+ msgstr "Izinto akufanele ziqale noma ziphele ngesikhala"
274
+
275
+ # rule_name
276
+ msgid "First letter of objects must be capitalized"
277
+ msgstr "Incwadi yokuqala yezinto kumele i-capitalized"
278
+
279
+ # rule_name
280
+ msgid "Object names must not contain special characters"
281
+ msgstr "Amagama ento akumele ibe nezinhlamvu ezikhethekile"
282
+
283
+ # category
284
+ msgid "Do not use floating point data types"
285
+ msgstr "Ukusebenza"
286
+
287
+ # category
288
+ msgid "Avoid using calculated columns"
289
+ msgstr "Ukusebenza"
290
+
291
+ # category
292
+ msgid "Check if bi-directional and many-to-many relationships are valid"
293
+ msgstr "Ukusebenza"
294
+
295
+ # category
296
+ msgid "Check if dynamic row level security (RLS) is necessary"
297
+ msgstr "Ukusebenza"
298
+
299
+ # category
300
+ msgid ""
301
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
302
+ "security"
303
+ msgstr "Ukusebenza"
304
+
305
+ # category
306
+ msgid "Many-to-many relationships should be single-direction"
307
+ msgstr "Ukusebenza"
308
+
309
+ # category
310
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
311
+ msgstr "Ukusebenza"
312
+
313
+ # category
314
+ msgid ""
315
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
316
+ "hybrid table"
317
+ msgstr "Ukusebenza"
318
+
319
+ # category
320
+ msgid ""
321
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
322
+ "the corresponding fact table"
323
+ msgstr "Ukusebenza"
324
+
325
+ # category
326
+ msgid ""
327
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
328
+ "on fact tables"
329
+ msgstr "Ukusebenza"
330
+
331
+ # category
332
+ msgid "Minimize Power Query transformations"
333
+ msgstr "Ukusebenza"
334
+
335
+ # category
336
+ msgid "Consider a star-schema instead of a snowflake architecture"
337
+ msgstr "Ukusebenza"
338
+
339
+ # category
340
+ msgid "Avoid using views when using Direct Lake mode"
341
+ msgstr "Ukusebenza"
342
+
343
+ # category
344
+ msgid "Avoid adding 0 to a measure"
345
+ msgstr "Ukusebenza"
346
+
347
+ # category
348
+ msgid "Reduce usage of calculated tables"
349
+ msgstr "Ukusebenza"
350
+
351
+ # category
352
+ msgid "Reduce usage of calculated columns that use the RELATED function"
353
+ msgstr "Ukusebenza"
354
+
355
+ # category
356
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
357
+ msgstr "Ukusebenza"
358
+
359
+ # category
360
+ msgid "Remove auto-date table"
361
+ msgstr "Ukusebenza"
362
+
363
+ # category
364
+ msgid "Date/calendar tables should be marked as a date table"
365
+ msgstr "Ukusebenza"
366
+
367
+ # category
368
+ msgid "Large tables should be partitioned"
369
+ msgstr "Ukusebenza"
370
+
371
+ # category
372
+ msgid "Limit row level security (RLS) logic"
373
+ msgstr "Ukusebenza"
374
+
375
+ # category
376
+ msgid "Model should have a date table"
377
+ msgstr "Ukusebenza"
378
+
379
+ # category
380
+ msgid "Calculation items must have an expression"
381
+ msgstr "Ukuvimbela iphutha"
382
+
383
+ # category
384
+ msgid "Relationship columns should be of the same data type"
385
+ msgstr "Ukuvimbela iphutha"
386
+
387
+ # category
388
+ msgid "Data columns must have a source column"
389
+ msgstr "Ukuvimbela iphutha"
390
+
391
+ # category
392
+ msgid "Set IsAvailableInMdx to true on necessary columns"
393
+ msgstr "Ukuvimbela iphutha"
394
+
395
+ # category
396
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
397
+ msgstr "Ukuvimbela iphutha"
398
+
399
+ # category
400
+ msgid "Avoid using the IFERROR function"
401
+ msgstr "Izinkulumo ze-DAX"
402
+
403
+ # category
404
+ msgid ""
405
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
406
+ msgstr "Izinkulumo ze-DAX"
407
+
408
+ # category
409
+ msgid "The EVALUATEANDLOG function should not be used in production models"
410
+ msgstr "Izinkulumo ze-DAX"
411
+
412
+ # category
413
+ msgid "Measures should not be direct references of other measures"
414
+ msgstr "Izinkulumo ze-DAX"
415
+
416
+ # category
417
+ msgid "No two measures should have the same definition"
418
+ msgstr "Izinkulumo ze-DAX"
419
+
420
+ # category
421
+ msgid ""
422
+ "Avoid addition or subtraction of constant values to results of divisions"
423
+ msgstr "Izinkulumo ze-DAX"
424
+
425
+ # category
426
+ msgid "Avoid using '1-(x/y)' syntax"
427
+ msgstr "Izinkulumo ze-DAX"
428
+
429
+ # category
430
+ msgid "Filter measure values by columns, not tables"
431
+ msgstr "Izinkulumo ze-DAX"
432
+
433
+ # category
434
+ msgid "Filter column values with proper syntax"
435
+ msgstr "Izinkulumo ze-DAX"
436
+
437
+ # category
438
+ msgid "Use the DIVIDE function for division"
439
+ msgstr "Izinkulumo ze-DAX"
440
+
441
+ # category
442
+ msgid "Column references should be fully qualified"
443
+ msgstr "Izinkulumo ze-DAX"
444
+
445
+ # category
446
+ msgid "Measure references should be unqualified"
447
+ msgstr "Izinkulumo ze-DAX"
448
+
449
+ # category
450
+ msgid "Inactive relationships that are never activated"
451
+ msgstr "Izinkulumo ze-DAX"
452
+
453
+ # category
454
+ msgid "Remove unnecessary columns"
455
+ msgstr "Maintenance"
456
+
457
+ # category
458
+ msgid "Remove unnecessary measures"
459
+ msgstr "Maintenance"
460
+
461
+ # category
462
+ msgid "Ensure tables have relationships"
463
+ msgstr "Maintenance"
464
+
465
+ # category
466
+ msgid "Calculation groups with no calculation items"
467
+ msgstr "Maintenance"
468
+
469
+ # category
470
+ msgid "Visible objects with no description"
471
+ msgstr "Maintenance"
472
+
473
+ # category
474
+ msgid "Provide format string for 'Date' columns"
475
+ msgstr "Ukuhlela"
476
+
477
+ # category
478
+ msgid "Do not summarize numeric columns"
479
+ msgstr "Ukuhlela"
480
+
481
+ # category
482
+ msgid "Provide format string for measures"
483
+ msgstr "Ukuhlela"
484
+
485
+ # category
486
+ msgid "Add data category for columns"
487
+ msgstr "Ukuhlela"
488
+
489
+ # category
490
+ msgid ""
491
+ "Percentages should be formatted with thousands separators and 1 decimal"
492
+ msgstr "Ukuhlela"
493
+
494
+ # category
495
+ msgid ""
496
+ "Whole numbers should be formatted with thousands separators and no decimals"
497
+ msgstr "Ukuhlela"
498
+
499
+ # category
500
+ msgid "Hide foreign keys"
501
+ msgstr "Ukuhlela"
502
+
503
+ # category
504
+ msgid "Mark primary keys"
505
+ msgstr "Ukuhlela"
506
+
507
+ # category
508
+ msgid "Month (as a string) must be sorted"
509
+ msgstr "Ukuhlela"
510
+
511
+ # category
512
+ msgid "Relationship columns should be of integer data type"
513
+ msgstr "Ukuhlela"
514
+
515
+ # category
516
+ msgid "Provide format string for \"Month\" columns"
517
+ msgstr "Ukuhlela"
518
+
519
+ # category
520
+ msgid "Format flag columns as Yes/No value strings"
521
+ msgstr "Ukuhlela"
522
+
523
+ # category
524
+ msgid "Objects should not start or end with a space"
525
+ msgstr "Ukuhlela"
526
+
527
+ # category
528
+ msgid "First letter of objects must be capitalized"
529
+ msgstr "Ukuhlela"
530
+
531
+ # category
532
+ msgid "Object names must not contain special characters"
533
+ msgstr "Izingqungquthela Zokuqamba Amagama"
534
+
535
+ # description
536
+ msgid "Do not use floating point data types"
537
+ msgstr ""
538
+ "Uhlobo lwedatha yephuzu elintantayo \"Double\" kufanele lugwenywe, njengoba "
539
+ "kungaholela emaphutheni okujikeleza okungalindelekile kanye nokwehla "
540
+ "kokusebenza ezimweni ezithile. Sebenzisa \"Int64\" noma \"Decimal\" lapho "
541
+ "kufanele khona (kodwa qaphela ukuthi \"Decimal\" kukhawulelwe 4 amadijithi "
542
+ "ngemva uphawu idesimali)."
543
+
544
+ # description
545
+ msgid "Avoid using calculated columns"
546
+ msgstr ""
547
+ "Amakholomu abalwe awacindezeli kanye namakholomu wedatha ngakho-ke athatha "
548
+ "inkumbulo eningi. Baphinde banciphise izikhathi zokucubungula kokubili "
549
+ "itafula kanye ne-process recalc. Khipha i-logic yekholomu ebalwe endaweni "
550
+ "yakho yokugcina idatha bese uguqula la makholomu abalwe abe amakholomu "
551
+ "wedatha."
552
+
553
+ # description
554
+ msgid "Check if bi-directional and many-to-many relationships are valid"
555
+ msgstr ""
556
+ "https://www.sqlbi.com/articles/bidirectional-relationships-and-ambiguity-in-"
557
+ "dax"
558
+
559
+ # description
560
+ msgid "Check if dynamic row level security (RLS) is necessary"
561
+ msgstr ""
562
+ "Ukusetshenziswa kokuphepha kwezinga le-row ashukumisayo (RLS) kungangeza "
563
+ "inkumbulo nokusebenza ngaphezulu. Sicela ucwaninge izinzuzo / izingozi "
564
+ "zokuyisebenzisa."
565
+
566
+ # description
567
+ msgid ""
568
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
569
+ "security"
570
+ msgstr ""
571
+ "Ukusebenzisa ubudlelwane obuningi kuya kokuningi ematafuleni asebenzisa "
572
+ "ukuphepha kwezinga le-row ashukumisayo kungabangela ukuchithwa okukhulu "
573
+ "kokusebenza kombuzo. Izinkinga zokusebenza zaleli phethini zihlangene lapho "
574
+ "iqhwa liqhaqhazela ubudlelwane obuningi obuningi ngokumelene netafula "
575
+ "eliqukethe ukuphepha kwezinga lomugqa. Esikhundleni salokho, sebenzisa enye "
576
+ "yamaphethini aboniswe esihlokweni esingezansi lapho itafula elilodwa "
577
+ "lobukhulu lihlobene nabaningi etafuleni lokuphepha."
578
+
579
+ # description
580
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
581
+ msgstr ""
582
+ "Ukusheshisa isikhathi sokucubungula nokulondoloza inkumbulo ngemuva "
583
+ "kokucubungula, ama-hierarchies wesici akufanele akhiwe amakholomu angakaze "
584
+ "asetshenziselwe ukusika ngamaklayenti e-MDX. Ngamanye amazwi, wonke "
585
+ "amakholomu afihliwe angasetshenziswa njenge-Sort By Column noma abhekiswe "
586
+ "kuma-hierarchies omsebenzisi kufanele abe nempahla yawo ye-IsAvailableInMdx "
587
+ "ebekwe amanga. Impahla ye-IsAvailableInMdx ayifanelekile kumamodeli we-"
588
+ "Direct Lake."
589
+
590
+ # description
591
+ msgid ""
592
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
593
+ "hybrid table"
594
+ msgstr ""
595
+ "Ukubeka impahla ye-'Data Coverage Definition 'kungaholela ekusebenzeni "
596
+ "okungcono ngoba injini iyazi ukuthi ingakwazi nini ukubuza kuphela ingxenye "
597
+ "yokungenisa itafula nokuthi idinga nini ukubuza ingxenye ye-DirectQuery "
598
+ "yetafula."
599
+
600
+ # description
601
+ msgid ""
602
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
603
+ "the corresponding fact table"
604
+ msgstr ""
605
+ "Sebenzisa kuphela imodi ye-Dual yamatafula wobukhulu / ukwahlukanisa lapho "
606
+ "itafula lamaqiniso elihambisanayo ku-DirectQuery. Ukusebenzisa imodi Dual "
607
+ "kwezinye izimo (okungukuthi ukuphumula imodeli kwimodi Import) kungaholela "
608
+ "ezindabeni ukusebenza ikakhulukazi uma inani izinyathelo imodeli "
609
+ "okusezingeni eliphezulu."
610
+
611
+ # description
612
+ msgid ""
613
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
614
+ "on fact tables"
615
+ msgstr ""
616
+ "Lapho usebenzisa i-DirectQuery, amatafula obukhulu kufanele abekwe kwimodi "
617
+ "ye-Dual ukuze kuthuthukiswe ukusebenza kombuzo."
618
+
619
+ # description
620
+ msgid "Minimize Power Query transformations"
621
+ msgstr ""
622
+ "Nciphisa izinguquko ze-Power Query ukuze kuthuthukiswe ukusebenza "
623
+ "kokucubungula imodeli. Kuwumkhuba omuhle kakhulu ukukhipha lezi zinguquko "
624
+ "endaweni yokugcina idatha uma kungenzeka. Futhi, sicela uhlole ukuthi "
625
+ "ukugoqa umbuzo kwenzeka ngaphakathi kwemodeli yakho. Sicela ubheke "
626
+ "i-athikili engezansi ukuze uthole olunye ulwazi ngokugoqa imibuzo."
627
+
628
+ # description
629
+ msgid "Consider a star-schema instead of a snowflake architecture"
630
+ msgstr ""
631
+ "Ngokuvamile, i-star-schema iyisakhiwo esihle kakhulu samamodeli we-tabular. "
632
+ "Lokho kunjalo, kunamacala asebenzayo okusebenzisa indlela yeqhwa. Sicela "
633
+ "uhlole imodeli yakho futhi ucabangele ukuthuthela ekwakhiweni kwe-star-"
634
+ "schema."
635
+
636
+ # description
637
+ msgid "Avoid using views when using Direct Lake mode"
638
+ msgstr ""
639
+ "Kwimodi ye-Direct Lake, ukubukwa kuyohlale kubuyela emuva ku-DirectQuery. "
640
+ "Ngakho, ukuze uthole ukusebenza best sebenzisa amatafula lakehouse "
641
+ "esikhundleni ukubukwa."
642
+
643
+ # description
644
+ msgid "Avoid adding 0 to a measure"
645
+ msgstr ""
646
+ "Ukwengeza i-0 esilinganisweni ukuze ingabonisi inani elingenalutho kungaba "
647
+ "nomthelela omubi ekusebenzeni."
648
+
649
+ # description
650
+ msgid "Reduce usage of calculated tables"
651
+ msgstr ""
652
+ "Fuduka i-logic yetafula ebalwe endaweni yakho yokugcina idatha. Ukuthembela "
653
+ "kumathebula abalwe kuzoholela ezikweletini zobuchwepheshe kanye nokungahambi"
654
+ " kahle okungenzeka uma unezimodeli eziningi epulatifomu yakho."
655
+
656
+ # description
657
+ msgid "Reduce usage of calculated columns that use the RELATED function"
658
+ msgstr ""
659
+ "Amakholomu abalwe awacindezeli kanye namakholomu wedatha futhi angabangela "
660
+ "izikhathi ezinde zokucubungula. Njengoba kunjalo, amakholomu abalwe kufanele"
661
+ " agwenywe uma kungenzeka. Esinye isimo lapho kungase kube lula ukugwema uma "
662
+ "besebenzisa umsebenzi we-RELATED."
663
+
664
+ # description
665
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
666
+ msgstr ""
667
+ "Umkhawulo ukusetshenziswa b-di futhi ubudlelwane abaningi-to-abaningi. Lo "
668
+ "mthetho amafulegi imodeli uma ezingaphezu kuka-30% ubudlelwane bi-di noma "
669
+ "abaningi-to-abaningi."
670
+
671
+ # description
672
+ msgid "Remove auto-date table"
673
+ msgstr ""
674
+ "Gwema ukusebenzisa amatafula osuku oluzenzakalelayo. Qiniseka ukuthi uvala "
675
+ "ithebula losuku oluzenzakalelayo kuzilungiselelo ku-Power BI Desktop. Lokhu "
676
+ "kuzosindisa imithombo yenkumbulo."
677
+
678
+ # description
679
+ msgid "Date/calendar tables should be marked as a date table"
680
+ msgstr ""
681
+ "Lo mthetho ubheka amatafula aqukethe amagama athi 'usuku' noma 'ikhalenda' "
682
+ "njengoba kungenzeka ukuthi aphawulwe njengetafula losuku."
683
+
684
+ # description
685
+ msgid "Large tables should be partitioned"
686
+ msgstr ""
687
+ "Amatafula amakhulu kufanele ahlukaniswe ukuze kulungiswe ukucubungula. Lokhu"
688
+ " akufanelekile kumamodeli we-semantic kwimodi ye-Direct Lake njengoba angaba"
689
+ " nokwahlukanisa okukodwa kuphela etafuleni ngalinye."
690
+
691
+ # description
692
+ msgid "Limit row level security (RLS) logic"
693
+ msgstr ""
694
+ "Zama ukwenza lula i-DAX esetshenziselwa ukuphepha kwezinga lokugwedla. "
695
+ "Ukusetshenziswa kwemisebenzi ngaphakathi kwalo mthetho kungenzeka ukuthi "
696
+ "kukhishwe ezinhlelweni eziphezulu (indawo yokugcina idatha)."
697
+
698
+ # description
699
+ msgid "Model should have a date table"
700
+ msgstr ""
701
+ "Ngokuvamile, amamodeli kufanele ngokuvamile abe netafula losuku. Amamodeli "
702
+ "angabi netafula losuku ngokuvamile awasebenzisi izici ezifana nobuhlakani "
703
+ "besikhathi noma angase angabi nesakhiwo esakhiwe kahle."
704
+
705
+ # description
706
+ msgid "Calculation items must have an expression"
707
+ msgstr ""
708
+ "Izinto zokubala kumele zibe nenkulumo. Ngaphandle kwenkulumo, ngeke babonise"
709
+ " noma yimaphi amagugu."
710
+
711
+ # description
712
+ msgid "Relationship columns should be of the same data type"
713
+ msgstr ""
714
+ "Amakholomu asetshenziswa ebudlelwaneni kufanele abe uhlobo olufanayo "
715
+ "lwedatha. Ngokufanelekile, bazoba ngohlobo lwedatha ye-integer (bheka "
716
+ "umthetho ohlobene '[Ukufometha] Amakholomu obudlelwane kufanele abe uhlobo "
717
+ "lwedatha ye-integer'). Ukuba namakholomu ngaphakathi kobudlelwane okuyizinto"
718
+ " zezinhlobo ezahlukene zedatha kungaholela ezindabeni ezihlukahlukene."
719
+
720
+ # description
721
+ msgid "Data columns must have a source column"
722
+ msgstr ""
723
+ "Amakholomu wedatha kumele abe nekholomu yomthombo. Ikholomu yedatha "
724
+ "ngaphandle kwekholomu yomthombo izobangela iphutha lapho ucubungula imodeli."
725
+
726
+ # description
727
+ msgid "Set IsAvailableInMdx to true on necessary columns"
728
+ msgstr ""
729
+ "Ukuze ugweme amaphutha, qinisekisa ukuthi ama-hierarchies wesici avunyelwe "
730
+ "uma ikholomu isetshenziselwa ukuhlunga elinye ikholomu, elisetshenziswa ku-"
731
+ "hierarchy, elisetshenziswa ngokuhlukahluka, noma lihlelwe ngenye ikholomu. "
732
+ "Impahla ye-IsAvailableInMdx ayifanelekile kumamodeli we-Direct Lake."
733
+
734
+ # description
735
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
736
+ msgstr ""
737
+ "Umsebenzi we-USERELATIONSHIP kungenzeka ungasetshenziswa ngokumelene "
738
+ "netafula eliphinde lisebenzise ukuphepha kwezinga le-row (RLS). Lokhu "
739
+ "kuzokhiqiza iphutha uma usebenzisa isilinganiso esithile ekubukeni. Lo "
740
+ "mthetho uzoqhakambisa itafula elisetshenziswa emsebenzini we-USERELATIONSHIP"
741
+ " wesilinganiso kanye ne-RLS."
742
+
743
+ # description
744
+ msgid "Avoid using the IFERROR function"
745
+ msgstr ""
746
+ "Gwema ukusebenzisa umsebenzi we-IFERROR njengoba ungadala ukuchithwa "
747
+ "kokusebenza. Uma ukhathazekile ngephutha lokuhlukanisa-by-zero, sebenzisa "
748
+ "umsebenzi we-DIVIDE njengoba ngokwemvelo uxazulula amaphutha anjalo "
749
+ "njengokungenalutho (noma ungenza ngokwezifiso lokho okufanele kuboniswe uma "
750
+ "kwenzeka iphutha elinjalo)."
751
+
752
+ # description
753
+ msgid ""
754
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
755
+ msgstr ""
756
+ "Umsebenzi we-TREATAS usebenza kahle futhi unikeza ukusebenza okungcono "
757
+ "kunomsebenzi we-INTERSECT uma usetshenziswa ebudlelwaneni be-virutal."
758
+
759
+ # description
760
+ msgid "The EVALUATEANDLOG function should not be used in production models"
761
+ msgstr ""
762
+ "Umsebenzi we-EXPLOREANDLOG uhloselwe ukusetshenziswa kuphela ezindaweni "
763
+ "zokuthuthukiswa / zokuhlola futhi akufanele usetshenziswe kumamodeli "
764
+ "wokukhiqiza."
765
+
766
+ # description
767
+ msgid "Measures should not be direct references of other measures"
768
+ msgstr ""
769
+ "Lo mthetho ukhomba izinyathelo okuyinto nje ukubhekisela kwesinye "
770
+ "isilinganiso. Njengesibonelo, cabanga ngemodeli enezinyathelo ezimbili: "
771
+ "[MeasureA] kanye [ne-MeasureB]. Lo mthetho uzovuswa ku-MeasureB uma i-DAX "
772
+ "ye-MeasureB yayiyi-MeasureB:=[MeasureA]. Izinyathelo ezinjalo "
773
+ "zokuphindaphinda kufanele zisuswe."
774
+
775
+ # description
776
+ msgid "No two measures should have the same definition"
777
+ msgstr ""
778
+ "Izinyathelo ezimbili ezinamagama ahlukene futhi ezichazwe yinkulumo efanayo "
779
+ "ye-DAX kufanele zigwenywe ukunciphisa ukungasebenzi."
780
+
781
+ # description
782
+ msgid ""
783
+ "Avoid addition or subtraction of constant values to results of divisions"
784
+ msgstr "Ukwengeza inani elihlala njalo kungaholela ekuwohlokeni kokusebenza."
785
+
786
+ # description
787
+ msgid "Avoid using '1-(x/y)' syntax"
788
+ msgstr ""
789
+ "Esikhundleni sokusebenzisa i-syntax '1- (x / y)' noma '1 +(x / y)' ukufeza "
790
+ "ukubalwa kwamaphesenti, sebenzisa imisebenzi eyisisekelo ye-DAX (njengoba "
791
+ "kuboniswe ngezansi). Ukusebenzisa i-syntax ethuthukisiwe ngokuvamile "
792
+ "kuzothuthukisa ukusebenza. I '1+/-...' i-syntax ihlala ibuyisela inani kanti"
793
+ " isixazululo ngaphandle kwe-'1 +/-...' akusho (njengoba inani lingase libe "
794
+ "'yize'). Ngakho-ke '1+/-...' i-syntax ingabuyisela imigqa / amakholomu "
795
+ "amaningi okungase kuholele ekutheni kube nesivinini sombuzo esihamba "
796
+ "kancane. Ake sicacise ngesibonelo: Gwema lokhu: 1 - SUM ( "
797
+ "'Sales'[CostAmount] ) / SUM( 'Sales'[SalesAmount] ) Kungcono: DIVIDE ( SUM ("
798
+ " 'Sales'[SalesAmount] ) - SUM ( 'Sales'[CostAmount] ), SUM ( "
799
+ "'Sales'[SalesAmount] ) ) Best: VAR x = SUM ( 'Sales'[SalesAmount] ) RETURN "
800
+ "DIVIDE ( x - SUM ( 'Sales'[CostAmount] ), x )"
801
+
802
+ # description
803
+ msgid "Filter measure values by columns, not tables"
804
+ msgstr ""
805
+ "Esikhundleni sokusebenzisa leli phethini FILTER ('Ithebula', [Linganisa] >Value) yemingcele yokuhlunga yomsebenzi we-CALCULATE noma we-CALCULATETABLE, sebenzisa enye yezinketho ezingezansi (uma kungenzeka). Ukuhlunga kwikholomu ethile kuzokhiqiza itafula elincane ukuze injini icubungule, ngaleyo ndlela yenze ukusebenza okusheshayo. Ukusebenzisa umsebenzi we-VALUES noma umsebenzi WONKE kuncike kumphumela wesilinganiso oyifunayo.\n"
806
+ "Inketho 1: FILTER (VALUES ('Ithebula'[Ikholomu]), [Linganisa] inani >)\n"
807
+ "Inketho 2: FILTER (KONKE ('Ithebula'[Ikholomu]), [Linganisa] inani >)"
808
+
809
+ # description
810
+ msgid "Filter column values with proper syntax"
811
+ msgstr ""
812
+ "Esikhundleni sokusebenzisa leli phethini FILTER ('Ithebula', 'Ithebula'[Ikholomu] = \"Inani\") lemingcele yokuhlunga yomsebenzi we-CALCULATE noma we-CALCULATETABLE, sebenzisa enye yezinketho ezingezansi. Ngokuqondene nokuthi usebenzise umsebenzi we-KEEPFILTERS, bheka isixhumanisi sesibili sokubhekisela ngezansi.\n"
813
+ "Inketho 1: KEEPFILTERS('Ithebula'[Ikholomu]=\"Inani\")\n"
814
+ "Inketho 2: 'Ithebula'[Ikholomu]=\"Inani\""
815
+
816
+ # description
817
+ msgid "Use the DIVIDE function for division"
818
+ msgstr ""
819
+ "Sebenzisa umsebenzi we-DIVIDE esikhundleni sokusebenzisa \"/\". Umsebenzi "
820
+ "we-DIVIDE uxazulula amacala okuhlukanisa-by-zero. Njengoba kunjalo, "
821
+ "kunconywa ukusebenzisa ukugwema amaphutha."
822
+
823
+ # description
824
+ msgid "Column references should be fully qualified"
825
+ msgstr ""
826
+ "Ukusebenzisa izinkomba zekholomu ezifanele ngokugcwele kwenza kube lula "
827
+ "ukuhlukanisa phakathi kwekholomu nokulinganisa izinkomba, futhi futhi kusiza"
828
+ " ukugwema amaphutha athile. Uma ubhekisela kwikholomu ku-DAX, qala ucacise "
829
+ "igama lethebula, bese ucacisa igama lekholomu kuma-bracket square."
830
+
831
+ # description
832
+ msgid "Measure references should be unqualified"
833
+ msgstr ""
834
+ "Ukusebenzisa izinkomba zesilinganiso esingafanelekile kwenza kube lula "
835
+ "ukuhlukanisa phakathi kwekholomu nokulinganisa izinkomba, futhi futhi kusiza"
836
+ " ukugwema amaphutha athile. Uma ubhekisela esilinganisweni usebenzisa i-DAX,"
837
+ " ungacacisi igama lethebula. Sebenzisa kuphela igama lokulinganisa kuma-"
838
+ "brackets wesikwele."
839
+
840
+ # description
841
+ msgid "Inactive relationships that are never activated"
842
+ msgstr ""
843
+ "Ubudlelwane obungasebenzi busebenza ngokusebenzisa umsebenzi we-"
844
+ "USERELATIONSHIP. Uma ubuhlobo obungasebenzi bungabhekisiswa kunoma yisiphi "
845
+ "isilinganiso ngalo msebenzi, ubuhlobo ngeke busetshenziswe. Kufanele "
846
+ "kunqunywe ukuthi ubuhlobo akudingekile noma ukwenza kusebenze ubuhlobo ngale"
847
+ " ndlela."
848
+
849
+ # description
850
+ msgid "Remove unnecessary columns"
851
+ msgstr ""
852
+ "Amakholomu afihliwe angabhekisiswa yinoma yiziphi izinkulumo ze-DAX, "
853
+ "ubudlelwano, amazinga abaphathi noma i-Sort By-properties kufanele asuswe."
854
+
855
+ # description
856
+ msgid "Remove unnecessary measures"
857
+ msgstr ""
858
+ "Izinyathelo ezifihliwe ezingabhekisiswa yinoma yiziphi izinkulumo ze-DAX "
859
+ "kufanele zisuswe ukuze zigcinwe."
860
+
861
+ # description
862
+ msgid "Ensure tables have relationships"
863
+ msgstr ""
864
+ "Lo mthetho uqokomisa amatafula angaxhunyiwe kunoma yiliphi elinye itafula "
865
+ "kumodeli enobudlelwano."
866
+
867
+ # description
868
+ msgid "Calculation groups with no calculation items"
869
+ msgstr ""
870
+ "Amaqembu okubala awanawo umsebenzi ngaphandle kokuthi anezinto zokubala."
871
+
872
+ # description
873
+ msgid "Visible objects with no description"
874
+ msgstr ""
875
+ "Engeza izincazelo ezintweni. Lezi zincazelo ziboniswa ku-hover ngaphakathi "
876
+ "koHlu Lwensimu ku-Power BI Desktop. Ngaphezu kwalokho, ungasebenzisa lezi "
877
+ "zincazelo ukudala isichazamazwi sedatha esizenzakalelayo."
878
+
879
+ # description
880
+ msgid "Provide format string for 'Date' columns"
881
+ msgstr ""
882
+ "Amakholomu ohlobo \"DateTime\" ukuthi babe \"Inyanga\" amagama abo kufanele "
883
+ "formatted njengoba \"mm / dd / yyyy\"."
884
+
885
+ # description
886
+ msgid "Do not summarize numeric columns"
887
+ msgstr ""
888
+ "Amakholomu ezinombolo (integer, idesimali, kabili) kufanele abe nempahla "
889
+ "yawo ye-SummarizeBy isethwe ku- \"None\" ukugwema ukufingqa ngengozi ku-"
890
+ "Power BI (dala izinyathelo esikhundleni)."
891
+
892
+ # description
893
+ msgid "Provide format string for measures"
894
+ msgstr ""
895
+ "Izinyathelo ezibonakalayo kufanele zabelwe impahla yazo yezintambo "
896
+ "zefomethi."
897
+
898
+ # description
899
+ msgid "Add data category for columns"
900
+ msgstr "Engeza isici seSigaba Sedatha samakholomu afanele."
901
+
902
+ # description
903
+ msgid ""
904
+ "Percentages should be formatted with thousands separators and 1 decimal"
905
+ msgstr ""
906
+ "Ukuze uthole isipiliyoni esingcono somsebenzisi, izinyathelo ze-percengage "
907
+ "kufanele zihlelwe ngophawu lwe-'%'."
908
+
909
+ # description
910
+ msgid ""
911
+ "Whole numbers should be formatted with thousands separators and no decimals"
912
+ msgstr ""
913
+ "Ukuze uthole isipiliyoni esingcono somsebenzisi, izinombolo eziphelele "
914
+ "kufanele zihlelwe ngama-commas."
915
+
916
+ # description
917
+ msgid "Hide foreign keys"
918
+ msgstr ""
919
+ "Izihluthulelo zakwamanye amazwe kufanele zifihlwe ngaso sonke isikhathi "
920
+ "njengoba kungafanele zisetshenziswe ngabasebenzisi bokugcina."
921
+
922
+ # description
923
+ msgid "Mark primary keys"
924
+ msgstr ""
925
+ "Setha impahla 'Key' ku 'Yiqiniso' amakholomu ukhiye eyinhloko ngaphakathi "
926
+ "izakhiwo ikholomu."
927
+
928
+ # description
929
+ msgid "Month (as a string) must be sorted"
930
+ msgstr ""
931
+ "Lo mthetho uqokomisa amakholomu enyanga okuyizintambo futhi angahlelwanga. "
932
+ "Uma beshiywe bengahleliwe, bazohlela nge-alfabhethi (okungukuthi ngo-"
933
+ "Ephreli, Agasti ...). Qiniseka ukuhlunga amakholomu anjalo ukuze ahlele "
934
+ "kahle (Januwari, Februwari, Mashi ...)."
935
+
936
+ # description
937
+ msgid "Relationship columns should be of integer data type"
938
+ msgstr ""
939
+ "Kuwumkhuba omuhle kakhulu wamakholomu obudlelwane ukuba abe uhlobo lwedatha "
940
+ "ye-integer. Lokhu akusebenzi kuphela ukugcinwa kwedatha kodwa ukumodeliswa "
941
+ "kwedatha kanye."
942
+
943
+ # description
944
+ msgid "Provide format string for \"Month\" columns"
945
+ msgstr ""
946
+ "Amakholomu ohlobo \"DateTime\" ukuthi babe \"Inyanga\" ngamagama abo "
947
+ "kufanele ahlelwe njengoba \"MMMM yyyy\"."
948
+
949
+ # description
950
+ msgid "Format flag columns as Yes/No value strings"
951
+ msgstr ""
952
+ "Amafulegi kumele ahlelwe kahle njengoYebo / Cha njengoba lokhu kulula "
953
+ "ukufunda kunokusebenzisa amanani we-0/1 integer."
954
+
955
+ # description
956
+ msgid "Objects should not start or end with a space"
957
+ msgstr ""
958
+ "Izinto akufanele ziqale noma ziphele ngesikhala. Lokhu kuvame ukwenzeka "
959
+ "ngengozi futhi kunzima ukuthola."
960
+
961
+ # description
962
+ msgid "First letter of objects must be capitalized"
963
+ msgstr ""
964
+ "Uhlamvu lokuqala lwamagama ento kufanele lufakwe imali yokugcina ikhwalithi "
965
+ "yobungcweti."
966
+
967
+ # description
968
+ msgid "Object names must not contain special characters"
969
+ msgstr "Amagama ento akufanele afake amathebhu, ikhefu lomugqa, njll."