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,902 @@
1
+ #
2
+ msgid ""
3
+ msgstr ""
4
+ "Language: he-IL\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 "אל תשתמש בסוגי נתונים של נקודה צפה"
12
+
13
+ # rule_name
14
+ msgid "Avoid using calculated columns"
15
+ msgstr "הימנעות משימוש בעמודות מחושבות"
16
+
17
+ # rule_name
18
+ msgid "Check if bi-directional and many-to-many relationships are valid"
19
+ msgstr "בדוק אם קשרי גומלין דו-כיווניים וקשרי גומלין של רבים לרבים חוקיים"
20
+
21
+ # rule_name
22
+ msgid "Check if dynamic row level security (RLS) is necessary"
23
+ msgstr "בדוק אם יש צורך באבטחה דינמית ברמת שורה (RLS)"
24
+
25
+ # rule_name
26
+ msgid ""
27
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
28
+ "security"
29
+ msgstr ""
30
+ "הימנע משימוש בקשרי גומלין של רבים לרבים בטבלאות המשמשות לאבטחה דינאמית ברמת "
31
+ "השורה"
32
+
33
+ # rule_name
34
+ msgid "Many-to-many relationships should be single-direction"
35
+ msgstr "קשרי גומלין של רבים לרבים צריכים להיות חד-כיווניים"
36
+
37
+ # rule_name
38
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
39
+ msgstr "הגדר את IsAvailableInMdx ל- false בעמודות שאינן תכונות"
40
+
41
+ # rule_name
42
+ msgid ""
43
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
44
+ "hybrid table"
45
+ msgstr ""
46
+ "הגדר את המאפיין 'הגדרת כיסוי נתונים' במחיצת DirectQuery של טבלה היברידית"
47
+
48
+ # rule_name
49
+ msgid ""
50
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
51
+ "the corresponding fact table"
52
+ msgstr ""
53
+ "מצב כפול רלוונטי רק עבור טבלאות ממד אם נעשה שימוש ב- DirectQuery עבור טבלת "
54
+ "העובדות המתאימה"
55
+
56
+ # rule_name
57
+ msgid ""
58
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
59
+ "on fact tables"
60
+ msgstr ""
61
+ "הגדרת טבלאות ממדים למצב כפול במקום ייבוא בעת שימוש ב- DirectQuery בטבלאות "
62
+ "עובדות"
63
+
64
+ # rule_name
65
+ msgid "Minimize Power Query transformations"
66
+ msgstr "מזעור המרות של Power Query"
67
+
68
+ # rule_name
69
+ msgid "Consider a star-schema instead of a snowflake architecture"
70
+ msgstr "שקול סכימת כוכבים במקום ארכיטקטורת פתיתי שלג"
71
+
72
+ # rule_name
73
+ msgid "Avoid using views when using Direct Lake mode"
74
+ msgstr "הימנע משימוש בתצוגות בעת שימוש במצב Direct Lake"
75
+
76
+ # rule_name
77
+ msgid "Avoid adding 0 to a measure"
78
+ msgstr "הימנע מהוספת 0 למידה"
79
+
80
+ # rule_name
81
+ msgid "Reduce usage of calculated tables"
82
+ msgstr "צמצום השימוש בטבלאות מחושבות"
83
+
84
+ # rule_name
85
+ msgid "Reduce usage of calculated columns that use the RELATED function"
86
+ msgstr "צמצום השימוש בעמודות מחושבות המשתמשות בפונקציה RELATED"
87
+
88
+ # rule_name
89
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
90
+ msgstr "הימנע מקשרי גומלין דו-כיווניים מוגזמים או מקשרי גומלין של רבים לרבים"
91
+
92
+ # rule_name
93
+ msgid "Remove auto-date table"
94
+ msgstr "הסרת טבלת תאריכים אוטומטיים"
95
+
96
+ # rule_name
97
+ msgid "Date/calendar tables should be marked as a date table"
98
+ msgstr "טבלאות תאריך/לוח שנה צריכות להיות מסומנות כטבלת תאריכים"
99
+
100
+ # rule_name
101
+ msgid "Large tables should be partitioned"
102
+ msgstr "שולחנות גדולים צריכים להיות מחולקים למחיצות"
103
+
104
+ # rule_name
105
+ msgid "Limit row level security (RLS) logic"
106
+ msgstr "לוגיקת הגבלת אבטחה ברמת שורה (RLS)"
107
+
108
+ # rule_name
109
+ msgid "Model should have a date table"
110
+ msgstr "לדגם צריכה להיות טבלת תאריכים"
111
+
112
+ # rule_name
113
+ msgid "Calculation items must have an expression"
114
+ msgstr "פריטי חישוב חייבים לכלול ביטוי"
115
+
116
+ # rule_name
117
+ msgid "Relationship columns should be of the same data type"
118
+ msgstr "עמודות קשרי גומלין צריכות להיות מאותו סוג נתונים"
119
+
120
+ # rule_name
121
+ msgid "Data columns must have a source column"
122
+ msgstr "עמודות נתונים חייבות לכלול עמודת מקור"
123
+
124
+ # rule_name
125
+ msgid "Set IsAvailableInMdx to true on necessary columns"
126
+ msgstr "הגדר את IsAvailableInMdx ל- true בעמודות הדרושות"
127
+
128
+ # rule_name
129
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
130
+ msgstr "הימנע מהפונקציה USERELATIONSHIP ומ- RLS כנגד אותה טבלה"
131
+
132
+ # rule_name
133
+ msgid "Avoid using the IFERROR function"
134
+ msgstr "הימנע משימוש בפונקציה IFERROR"
135
+
136
+ # rule_name
137
+ msgid ""
138
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
139
+ msgstr ""
140
+ "השתמש בפונקציה TREATAS במקום בפונקציה INTERSECT עבור קשרי גומלין וירטואליים"
141
+
142
+ # rule_name
143
+ msgid "The EVALUATEANDLOG function should not be used in production models"
144
+ msgstr "אין להשתמש בפונקציה EVALUATEANDLOG במודלי ייצור"
145
+
146
+ # rule_name
147
+ msgid "Measures should not be direct references of other measures"
148
+ msgstr "אמצעים לא צריכים להיות הפניות ישירות של אמצעים אחרים"
149
+
150
+ # rule_name
151
+ msgid "No two measures should have the same definition"
152
+ msgstr "אין שני אמצעים שצריכים להיות בעלי הגדרה זהה"
153
+
154
+ # rule_name
155
+ msgid ""
156
+ "Avoid addition or subtraction of constant values to results of divisions"
157
+ msgstr "הימנע מחיבור או חיסור של ערכים קבועים לתוצאות של חלוקות"
158
+
159
+ # rule_name
160
+ msgid "Avoid using '1-(x/y)' syntax"
161
+ msgstr "הימנע משימוש בתחביר '1-(x/y)'"
162
+
163
+ # rule_name
164
+ msgid "Filter measure values by columns, not tables"
165
+ msgstr "סינון ערכי מדידה לפי עמודות, לא לפי טבלאות"
166
+
167
+ # rule_name
168
+ msgid "Filter column values with proper syntax"
169
+ msgstr "סינון ערכי עמודות עם תחביר תקין"
170
+
171
+ # rule_name
172
+ msgid "Use the DIVIDE function for division"
173
+ msgstr "שימוש בפונקציה DIVIDE לחלוקה"
174
+
175
+ # rule_name
176
+ msgid "Column references should be fully qualified"
177
+ msgstr "הפניות לעמודות צריכות להיות מוסמכות במלואן"
178
+
179
+ # rule_name
180
+ msgid "Measure references should be unqualified"
181
+ msgstr "הפניות מדידה צריכות להיות בלתי מסויגות;"
182
+
183
+ # rule_name
184
+ msgid "Inactive relationships that are never activated"
185
+ msgstr "קשרי גומלין לא פעילים שלעולם אינם מופעלים"
186
+
187
+ # rule_name
188
+ msgid "Remove unnecessary columns"
189
+ msgstr "הסרת עמודות מיותרות"
190
+
191
+ # rule_name
192
+ msgid "Remove unnecessary measures"
193
+ msgstr "הסרת אמצעים מיותרים"
194
+
195
+ # rule_name
196
+ msgid "Ensure tables have relationships"
197
+ msgstr "ודא שלטבלאות יש קשרי גומלין"
198
+
199
+ # rule_name
200
+ msgid "Calculation groups with no calculation items"
201
+ msgstr "קבוצות חישוב ללא פריטי חישוב"
202
+
203
+ # rule_name
204
+ msgid "Visible objects with no description"
205
+ msgstr "אובייקטים גלויים ללא תיאור"
206
+
207
+ # rule_name
208
+ msgid "Provide format string for 'Date' columns"
209
+ msgstr "ספק מחרוזת תבנית עבור עמודות 'תאריך'"
210
+
211
+ # rule_name
212
+ msgid "Do not summarize numeric columns"
213
+ msgstr "אל תסכם עמודות מספריות"
214
+
215
+ # rule_name
216
+ msgid "Provide format string for measures"
217
+ msgstr "ספק מחרוזת תבנית עבור מידות"
218
+
219
+ # rule_name
220
+ msgid "Add data category for columns"
221
+ msgstr "הוספת קטגוריית נתונים עבור עמודות"
222
+
223
+ # rule_name
224
+ msgid ""
225
+ "Percentages should be formatted with thousands separators and 1 decimal"
226
+ msgstr "יש לעצב אחוזים עם מפרידי אלפים ונקודה עשרונית אחת"
227
+
228
+ # rule_name
229
+ msgid ""
230
+ "Whole numbers should be formatted with thousands separators and no decimals"
231
+ msgstr "יש לעצב מספרים שלמים עם מפרידי אלפים וללא מספרים עשרוניים"
232
+
233
+ # rule_name
234
+ msgid "Hide foreign keys"
235
+ msgstr "הסתרת מפתחות זרים"
236
+
237
+ # rule_name
238
+ msgid "Mark primary keys"
239
+ msgstr "סימון מפתחות ראשיים"
240
+
241
+ # rule_name
242
+ msgid "Month (as a string) must be sorted"
243
+ msgstr "יש למיין חודש (כמחרוזת)"
244
+
245
+ # rule_name
246
+ msgid "Relationship columns should be of integer data type"
247
+ msgstr "עמודות קשרי גומלין צריכות להיות מסוג נתונים שלמים"
248
+
249
+ # rule_name
250
+ msgid "Provide format string for \"Month\" columns"
251
+ msgstr "ספק מחרוזת תבנית עבור עמודות \"חודש\""
252
+
253
+ # rule_name
254
+ msgid "Format flag columns as Yes/No value strings"
255
+ msgstr "עיצוב עמודות דגל כמחרוזות ערך כן/לא"
256
+
257
+ # rule_name
258
+ msgid "Objects should not start or end with a space"
259
+ msgstr "אובייקטים אינם אמורים להתחיל או להסתיים ברווח"
260
+
261
+ # rule_name
262
+ msgid "First letter of objects must be capitalized"
263
+ msgstr "האות הראשונה של אובייקטים חייבת להיות רישית"
264
+
265
+ # rule_name
266
+ msgid "Object names must not contain special characters"
267
+ msgstr "שמות אובייקטים אינם יכולים להכיל תווים מיוחדים"
268
+
269
+ # category
270
+ msgid "Do not use floating point data types"
271
+ msgstr "ביצועים"
272
+
273
+ # category
274
+ msgid "Avoid using calculated columns"
275
+ msgstr "ביצועים"
276
+
277
+ # category
278
+ msgid "Check if bi-directional and many-to-many relationships are valid"
279
+ msgstr "ביצועים"
280
+
281
+ # category
282
+ msgid "Check if dynamic row level security (RLS) is necessary"
283
+ msgstr "ביצועים"
284
+
285
+ # category
286
+ msgid ""
287
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
288
+ "security"
289
+ msgstr "ביצועים"
290
+
291
+ # category
292
+ msgid "Many-to-many relationships should be single-direction"
293
+ msgstr "ביצועים"
294
+
295
+ # category
296
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
297
+ msgstr "ביצועים"
298
+
299
+ # category
300
+ msgid ""
301
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
302
+ "hybrid table"
303
+ msgstr "ביצועים"
304
+
305
+ # category
306
+ msgid ""
307
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
308
+ "the corresponding fact table"
309
+ msgstr "ביצועים"
310
+
311
+ # category
312
+ msgid ""
313
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
314
+ "on fact tables"
315
+ msgstr "ביצועים"
316
+
317
+ # category
318
+ msgid "Minimize Power Query transformations"
319
+ msgstr "ביצועים"
320
+
321
+ # category
322
+ msgid "Consider a star-schema instead of a snowflake architecture"
323
+ msgstr "ביצועים"
324
+
325
+ # category
326
+ msgid "Avoid using views when using Direct Lake mode"
327
+ msgstr "ביצועים"
328
+
329
+ # category
330
+ msgid "Avoid adding 0 to a measure"
331
+ msgstr "ביצועים"
332
+
333
+ # category
334
+ msgid "Reduce usage of calculated tables"
335
+ msgstr "ביצועים"
336
+
337
+ # category
338
+ msgid "Reduce usage of calculated columns that use the RELATED function"
339
+ msgstr "ביצועים"
340
+
341
+ # category
342
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
343
+ msgstr "ביצועים"
344
+
345
+ # category
346
+ msgid "Remove auto-date table"
347
+ msgstr "ביצועים"
348
+
349
+ # category
350
+ msgid "Date/calendar tables should be marked as a date table"
351
+ msgstr "ביצועים"
352
+
353
+ # category
354
+ msgid "Large tables should be partitioned"
355
+ msgstr "ביצועים"
356
+
357
+ # category
358
+ msgid "Limit row level security (RLS) logic"
359
+ msgstr "ביצועים"
360
+
361
+ # category
362
+ msgid "Model should have a date table"
363
+ msgstr "ביצועים"
364
+
365
+ # category
366
+ msgid "Calculation items must have an expression"
367
+ msgstr "מניעת שגיאות"
368
+
369
+ # category
370
+ msgid "Relationship columns should be of the same data type"
371
+ msgstr "מניעת שגיאות"
372
+
373
+ # category
374
+ msgid "Data columns must have a source column"
375
+ msgstr "מניעת שגיאות"
376
+
377
+ # category
378
+ msgid "Set IsAvailableInMdx to true on necessary columns"
379
+ msgstr "מניעת שגיאות"
380
+
381
+ # category
382
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
383
+ msgstr "מניעת שגיאות"
384
+
385
+ # category
386
+ msgid "Avoid using the IFERROR function"
387
+ msgstr "ביטויי DAX"
388
+
389
+ # category
390
+ msgid ""
391
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
392
+ msgstr "ביטויי DAX"
393
+
394
+ # category
395
+ msgid "The EVALUATEANDLOG function should not be used in production models"
396
+ msgstr "ביטויי DAX"
397
+
398
+ # category
399
+ msgid "Measures should not be direct references of other measures"
400
+ msgstr "ביטויי DAX"
401
+
402
+ # category
403
+ msgid "No two measures should have the same definition"
404
+ msgstr "ביטויי DAX"
405
+
406
+ # category
407
+ msgid ""
408
+ "Avoid addition or subtraction of constant values to results of divisions"
409
+ msgstr "ביטויי DAX"
410
+
411
+ # category
412
+ msgid "Avoid using '1-(x/y)' syntax"
413
+ msgstr "ביטויי DAX"
414
+
415
+ # category
416
+ msgid "Filter measure values by columns, not tables"
417
+ msgstr "ביטויי DAX"
418
+
419
+ # category
420
+ msgid "Filter column values with proper syntax"
421
+ msgstr "ביטויי DAX"
422
+
423
+ # category
424
+ msgid "Use the DIVIDE function for division"
425
+ msgstr "ביטויי DAX"
426
+
427
+ # category
428
+ msgid "Column references should be fully qualified"
429
+ msgstr "ביטויי DAX"
430
+
431
+ # category
432
+ msgid "Measure references should be unqualified"
433
+ msgstr "ביטויי DAX"
434
+
435
+ # category
436
+ msgid "Inactive relationships that are never activated"
437
+ msgstr "ביטויי DAX"
438
+
439
+ # category
440
+ msgid "Remove unnecessary columns"
441
+ msgstr "אחזקה"
442
+
443
+ # category
444
+ msgid "Remove unnecessary measures"
445
+ msgstr "אחזקה"
446
+
447
+ # category
448
+ msgid "Ensure tables have relationships"
449
+ msgstr "אחזקה"
450
+
451
+ # category
452
+ msgid "Calculation groups with no calculation items"
453
+ msgstr "אחזקה"
454
+
455
+ # category
456
+ msgid "Visible objects with no description"
457
+ msgstr "אחזקה"
458
+
459
+ # category
460
+ msgid "Provide format string for 'Date' columns"
461
+ msgstr "עיצוב"
462
+
463
+ # category
464
+ msgid "Do not summarize numeric columns"
465
+ msgstr "עיצוב"
466
+
467
+ # category
468
+ msgid "Provide format string for measures"
469
+ msgstr "עיצוב"
470
+
471
+ # category
472
+ msgid "Add data category for columns"
473
+ msgstr "עיצוב"
474
+
475
+ # category
476
+ msgid ""
477
+ "Percentages should be formatted with thousands separators and 1 decimal"
478
+ msgstr "עיצוב"
479
+
480
+ # category
481
+ msgid ""
482
+ "Whole numbers should be formatted with thousands separators and no decimals"
483
+ msgstr "עיצוב"
484
+
485
+ # category
486
+ msgid "Hide foreign keys"
487
+ msgstr "עיצוב"
488
+
489
+ # category
490
+ msgid "Mark primary keys"
491
+ msgstr "עיצוב"
492
+
493
+ # category
494
+ msgid "Month (as a string) must be sorted"
495
+ msgstr "עיצוב"
496
+
497
+ # category
498
+ msgid "Relationship columns should be of integer data type"
499
+ msgstr "עיצוב"
500
+
501
+ # category
502
+ msgid "Provide format string for \"Month\" columns"
503
+ msgstr "עיצוב"
504
+
505
+ # category
506
+ msgid "Format flag columns as Yes/No value strings"
507
+ msgstr "עיצוב"
508
+
509
+ # category
510
+ msgid "Objects should not start or end with a space"
511
+ msgstr "עיצוב"
512
+
513
+ # category
514
+ msgid "First letter of objects must be capitalized"
515
+ msgstr "עיצוב"
516
+
517
+ # category
518
+ msgid "Object names must not contain special characters"
519
+ msgstr "מוסכמות למתן שמות"
520
+
521
+ # description
522
+ msgid "Do not use floating point data types"
523
+ msgstr ""
524
+ "יש להימנע מסוג הנתונים \"כפול\" של נקודה צפה, מכיוון שהוא עלול לגרום לשגיאות"
525
+ " עיגול בלתי צפויות ולירידה בביצועים בתרחישים מסוימים. השתמש ב- \"Int64\" או "
526
+ "\"עשרוני\" במידת הצורך (אך שים לב שהמילה \"עשרוני\" מוגבלת ל- 4 ספרות אחרי "
527
+ "הסימן העשרוני)."
528
+
529
+ # description
530
+ msgid "Avoid using calculated columns"
531
+ msgstr ""
532
+ "עמודות מחושבות אינן נדחסות כמו עמודות נתונים ולכן הן תופסות יותר זיכרון. הם "
533
+ "גם מאטים את זמני העיבוד הן עבור הטבלה והן עבור תהליך recalc. העבר לוגיקת "
534
+ "עמודות מחושבות למחסן הנתונים שלך והפוך עמודות מחושבות אלה לעמודות נתונים."
535
+
536
+ # description
537
+ msgid "Check if bi-directional and many-to-many relationships are valid"
538
+ msgstr ""
539
+ "https://www.sqlbi.com/articles/bidirectional-relationships-and-ambiguity-in-"
540
+ "dax"
541
+
542
+ # description
543
+ msgid "Check if dynamic row level security (RLS) is necessary"
544
+ msgstr ""
545
+ "שימוש באבטחה דינמית ברמת שורה (RLS) יכול להוסיף תקורה של זיכרון וביצועים. "
546
+ "אנא חקור את היתרונות / חסרונות של השימוש בו."
547
+
548
+ # description
549
+ msgid ""
550
+ "Avoid using many-to-many relationships on tables used for dynamic row level "
551
+ "security"
552
+ msgstr ""
553
+ "שימוש בקשרי גומלין של רבים לרבים בטבלאות המשתמשות באבטחה דינאמית ברמת השורה "
554
+ "עלול לגרום לירידה חמורה בביצועי השאילתות. בעיות הביצועים של תבנית זו מצטברות"
555
+ " בעת הצבת קשרי גומלין מרובים של רבים לרבים כנגד טבלה המכילה אבטחה ברמת "
556
+ "השורה. במקום זאת, השתמש באחת מהדפוסים המוצגים במאמר שלהלן שבה טבלת ממד יחיד "
557
+ "מקשרת רבים לאחד לטבלת אבטחה."
558
+
559
+ # description
560
+ msgid "Set IsAvailableInMdx to false on non-attribute columns"
561
+ msgstr ""
562
+ "כדי להאיץ את זמן העיבוד ולחסוך בזיכרון לאחר העיבוד, אין לבנות הירארכיות "
563
+ "תכונות עבור עמודות שלעולם אינן משמשות לחיתוך על-ידי לקוחות MDX. במילים "
564
+ "אחרות, כל העמודות המוסתרות שאינן משמשות כעמודת מיון לפי או שמתבצעת אליהן "
565
+ "הפניה בהירארכיות משתמשים צריכות להגדיר את המאפיין IsAvailableInMdx שלהן כ- "
566
+ "false. המאפיין IsAvailableInMdx אינו רלוונטי עבור מודלים של Direct Lake."
567
+
568
+ # description
569
+ msgid ""
570
+ "Set 'Data Coverage Definition' property on the DirectQuery partition of a "
571
+ "hybrid table"
572
+ msgstr ""
573
+ "הגדרת המאפיין 'הגדרת כיסוי נתונים' עשויה להוביל לביצועים טובים יותר מכיוון "
574
+ "שהמנוע יודע מתי הוא יכול לבצע שאילתה רק על חלק הייבוא של הטבלה ומתי עליו "
575
+ "לבצע שאילתה על החלק DirectQuery של הטבלה."
576
+
577
+ # description
578
+ msgid ""
579
+ "Dual mode is only relevant for dimension tables if DirectQuery is used for "
580
+ "the corresponding fact table"
581
+ msgstr ""
582
+ "השתמש במצב כפול רק עבור טבלאות/מחיצות ממד שבהן טבלת עובדות תואמת נמצאת ב- "
583
+ "DirectQuery. שימוש במצב כפול בנסיבות אחרות (כלומר, שאר הדגם נמצא במצב ייבוא)"
584
+ " עלול להוביל לבעיות ביצועים, במיוחד אם מספר המדידות במודל גבוה."
585
+
586
+ # description
587
+ msgid ""
588
+ "Set dimensions tables to dual mode instead of import when using DirectQuery "
589
+ "on fact tables"
590
+ msgstr ""
591
+ "בעת שימוש ב- DirectQuery, יש להגדיר טבלאות ממדים למצב כפול כדי לשפר את "
592
+ "ביצועי השאילתה."
593
+
594
+ # description
595
+ msgid "Minimize Power Query transformations"
596
+ msgstr ""
597
+ "מזער המרות של Power Query כדי לשפר את ביצועי עיבוד המודל. זוהי שיטת עבודה "
598
+ "מומלצת להעביר המרות אלה למחסן הנתונים במידת האפשר. כמו כן, בדוק אם קיפול "
599
+ "שאילתות מתרחש בתוך הדגם שלך. עיין במאמר שלהלן לקבלת מידע נוסף על קיפול "
600
+ "שאילתות."
601
+
602
+ # description
603
+ msgid "Consider a star-schema instead of a snowflake architecture"
604
+ msgstr ""
605
+ "באופן כללי, סכימת כוכבים היא הארכיטקטורה האופטימלית עבור מודלים טבלאיים. אם "
606
+ "כך, ישנם מקרים תקפים לשימוש בגישת פתית השלג. אנא בדוק את המודל שלך ושקול "
607
+ "לעבור לארכיטקטורת סכימת כוכבים."
608
+
609
+ # description
610
+ msgid "Avoid using views when using Direct Lake mode"
611
+ msgstr ""
612
+ "במצב Direct Lake, התצוגות תמיד יחזרו ל- DirectQuery. לכן, על מנת להשיג את "
613
+ "הביצועים הטובים ביותר להשתמש שולחנות lakehouse במקום צפיות."
614
+
615
+ # description
616
+ msgid "Avoid adding 0 to a measure"
617
+ msgstr "הוספת 0 למדד כדי שלא יציג ערך ריק עלולה להשפיע לרעה על הביצועים."
618
+
619
+ # description
620
+ msgid "Reduce usage of calculated tables"
621
+ msgstr ""
622
+ "העבר לוגיקת טבלה מחושבת למחסן הנתונים שלך. הסתמכות על טבלאות מחושבות תוביל "
623
+ "לחוב טכני ולחוסר התאמה פוטנציאלי אם יש לך מספר דגמים בפלטפורמה שלך."
624
+
625
+ # description
626
+ msgid "Reduce usage of calculated columns that use the RELATED function"
627
+ msgstr ""
628
+ "עמודות מחושבות אינן נדחסות כמו עמודות נתונים ועלולות לגרום לזמני עיבוד "
629
+ "ארוכים יותר. ככזה, יש להימנע מעמודות מחושבות במידת האפשר. תרחיש אחד שבו "
630
+ "ייתכן שיהיה קל יותר להימנע מהם הוא אם הם משתמשים בפונקציה קשור."
631
+
632
+ # description
633
+ msgid "Avoid excessive bi-directional or many-to-many relationships"
634
+ msgstr ""
635
+ "הגבל את השימוש בקשרי גומלין מסוג b-di וקשרי גומלין של רבים לרבים. כלל זה "
636
+ "מסמן את המודל אם יותר מ- 30% מקשרי הגומלין הם דו-צדדיים או רבים-לרבים."
637
+
638
+ # description
639
+ msgid "Remove auto-date table"
640
+ msgstr ""
641
+ "הימנע משימוש בטבלאות תאריך אוטומטי. הקפד לבטל טבלת תאריך אוטומטי בהגדרות ב- "
642
+ "Power BI Desktop. פעולה זו תחסוך משאבי זיכרון."
643
+
644
+ # description
645
+ msgid "Date/calendar tables should be marked as a date table"
646
+ msgstr ""
647
+ "כלל זה מחפש טבלאות המכילות את המילים 'תאריך' או 'לוח שנה', מכיוון שסביר "
648
+ "להניח שיש לסמן אותן כטבלת תאריכים."
649
+
650
+ # description
651
+ msgid "Large tables should be partitioned"
652
+ msgstr ""
653
+ "טבלאות גדולות צריכות להיות מחולקות למחיצות על מנת לייעל את העיבוד. זה לא "
654
+ "רלוונטי עבור מודלים סמנטיים במצב אגם ישיר מכיוון שהם יכולים לכלול רק מחיצה "
655
+ "אחת לכל טבלה."
656
+
657
+ # description
658
+ msgid "Limit row level security (RLS) logic"
659
+ msgstr ""
660
+ "נסה לפשט את DAX המשמש לאבטחה ברמת השורה. השימוש בפונקציות במסגרת כלל זה עשוי"
661
+ " להיות מועבר למערכות במעלה הזרם (מחסן נתונים)."
662
+
663
+ # description
664
+ msgid "Model should have a date table"
665
+ msgstr ""
666
+ "באופן כללי, מודלים צריכים בדרך כלל לכלול טבלת תאריכים. מודלים שאין להם טבלת "
667
+ "תאריכים בדרך כלל אינם מנצלים תכונות כגון בינת זמן או שאין להם ארכיטקטורה "
668
+ "מובנית כראוי."
669
+
670
+ # description
671
+ msgid "Calculation items must have an expression"
672
+ msgstr "פריטי חישוב חייבים לכלול ביטוי. ללא ביטוי, הם לא יראו ערכים."
673
+
674
+ # description
675
+ msgid "Relationship columns should be of the same data type"
676
+ msgstr ""
677
+ "עמודות המשמשות בקשר גומלין צריכות להיות מאותו סוג נתונים. באופן אידיאלי, הם "
678
+ "יהיו מסוג נתונים שלמים (עיין בכלל הקשור '[עיצוב] עמודות קשרי גומלין צריכות "
679
+ "להיות מסוג נתונים שלמים'). קיום עמודות בתוך קשר גומלין מסוגי נתונים שונים "
680
+ "עלול להוביל לבעיות שונות."
681
+
682
+ # description
683
+ msgid "Data columns must have a source column"
684
+ msgstr ""
685
+ "עמודות נתונים חייבות לכלול עמודת מקור. עמודת נתונים ללא עמודת מקור תגרום "
686
+ "לשגיאה בעת עיבוד המודל."
687
+
688
+ # description
689
+ msgid "Set IsAvailableInMdx to true on necessary columns"
690
+ msgstr ""
691
+ "כדי להימנע משגיאות, ודא שהירארכיות תכונות זמינות אם עמודה משמשת למיון עמודה "
692
+ "אחרת, משמשת בהירארכיה, משמשת בווריאציות או ממוינת לפי עמודה אחרת. המאפיין "
693
+ "IsAvailableInMdx אינו רלוונטי עבור מודלים של Direct Lake."
694
+
695
+ # description
696
+ msgid "Avoid the USERELATIONSHIP function and RLS against the same table"
697
+ msgstr ""
698
+ "אין להשתמש בפונקציה USERELATIONSHIP כנגד טבלה הממנפת גם אבטחה ברמת השורה "
699
+ "(RLS). פעולה זו תיצור שגיאה בעת שימוש במדד מסוים חזותי. כלל זה ידגיש את "
700
+ "הטבלה המשמשת בפונקציה USERELATIONSHIP של מידה וכן RLS."
701
+
702
+ # description
703
+ msgid "Avoid using the IFERROR function"
704
+ msgstr ""
705
+ "הימנע משימוש בפונקציה IFERROR מכיוון שהיא עלולה לגרום לירידה בביצועים. אם "
706
+ "אתה מודאג משגיאת חלוקה באפס, השתמש בפונקציה DIVIDE מכיוון שהיא פותרת באופן "
707
+ "טבעי שגיאות כגון ריק (או שתוכל להתאים אישית את מה שיש להציג במקרה של שגיאה "
708
+ "כזו)."
709
+
710
+ # description
711
+ msgid ""
712
+ "Use the TREATAS function instead of INTERSECT for virtual relationships"
713
+ msgstr ""
714
+ "הפונקציה TREATAS יעילה יותר ומספקת ביצועים טובים יותר מהפונקציה INTERSECT "
715
+ "כאשר משתמשים בה ביחסים וירוטאליים."
716
+
717
+ # description
718
+ msgid "The EVALUATEANDLOG function should not be used in production models"
719
+ msgstr ""
720
+ "הפונקציה EVALUATEANDLOG מיועדת לשימוש בסביבות פיתוח/בדיקה בלבד ואין להשתמש "
721
+ "בה במודלים של ייצור."
722
+
723
+ # description
724
+ msgid "Measures should not be direct references of other measures"
725
+ msgstr ""
726
+ "כלל זה מזהה אמצעים שהם פשוט התייחסות לאמצעי אחר. לדוגמה, שקול מודל עם שני "
727
+ "מדדים: [MeasureA] ו- [MeasureB]. כלל זה יופעל עבור MeasureB אם DAX של "
728
+ "MeasureB יהיה MeasureB:=[MeasureA]. אמצעים כפולים כאלה יש להסיר."
729
+
730
+ # description
731
+ msgid "No two measures should have the same definition"
732
+ msgstr ""
733
+ "יש להימנע משני אמצעים בעלי שמות שונים המוגדרים על-ידי אותו ביטוי DAX כדי "
734
+ "להפחית יתירות."
735
+
736
+ # description
737
+ msgid ""
738
+ "Avoid addition or subtraction of constant values to results of divisions"
739
+ msgstr "הוספת ערך קבוע עלולה להוביל לירידה בביצועים."
740
+
741
+ # description
742
+ msgid "Avoid using '1-(x/y)' syntax"
743
+ msgstr ""
744
+ "במקום להשתמש בתחביר '1-(x/y)' או '1+(x/y)' כדי להשיג חישוב אחוזים, השתמש "
745
+ "בפונקציות DAX הבסיסיות (כפי שמוצג להלן). שימוש בתחביר המשופר ישפר בדרך כלל "
746
+ "את הביצועים. ה- '1+/-...' התחביר תמיד מחזיר ערך ואילו הפתרון ללא '1+/-...' "
747
+ "אינו (מכיוון שהערך עשוי להיות 'ריק'). לכן '1+/-...' תחביר עשוי להחזיר "
748
+ "שורות/עמודות רבות יותר, דבר שעלול לגרום למהירות שאילתה איטית יותר. בואו "
749
+ "נבהיר עם דוגמה: הימנע מכך: 1 - SUM ( 'Sales' [CostAmount] ) / SUM( 'Sales' "
750
+ "[SalesAmount] ) טוב יותר: DIVIDE ( SUM ( 'Sales' [SalesAmount] ) - SUM ( "
751
+ "'Sales' [CostAmount] ), SUM ( 'Sales' [SalesAmount] ) ) הטוב ביותר: VAR x = "
752
+ "SUM ( 'Sales' [SalesAmount] ) חלוקת החזרה ( x - SUM ( 'Sales' [CostAmount] "
753
+ "), x )"
754
+
755
+ # description
756
+ msgid "Filter measure values by columns, not tables"
757
+ msgstr ""
758
+ "במקום להשתמש בתבנית זו FILTER('Table',[Measure]>Value) עבור פרמטרי המסנן של הפונקציה CALCULATE או CALCULATETABLE, השתמש באחת מהאפשרויות הבאות (במידת האפשר). סינון על עמודה ספציפית יפיק טבלה קטנה יותר עבור המנוע לעבד, ובכך לאפשר ביצועים מהירים יותר. השימוש בפונקציה VALUES או בפונקציה ALL תלוי בתוצאת המדידה הרצויה.\n"
759
+ "אפשרות 1: FILTER(VALUES('Table'[Column]),[Measure] > Value)\n"
760
+ "אפשרות 2: סנן(הכל('טבלה'[עמודה]),[מדידה] > ערך)"
761
+
762
+ # description
763
+ msgid "Filter column values with proper syntax"
764
+ msgstr ""
765
+ "במקום להשתמש בתבנית זו FILTER('Table','Table'[Column]=\"Value\") עבור פרמטרי המסנן של הפונקציה CALCULATE או CALCULATETABLE, השתמש באחת מהאפשרויות הבאות. באשר לשאלה אם להשתמש בפונקציה KEEPFILTERS, עיין בקישור ההפניה השני להלן.\n"
766
+ "אפשרות 1: KEEPFILTERS('Table'[Column]=\"Value\")\n"
767
+ "אפשרות 2: 'טבלה'[column]=\"ערך\""
768
+
769
+ # description
770
+ msgid "Use the DIVIDE function for division"
771
+ msgstr ""
772
+ "השתמש בפונקציה DIVIDE במקום להשתמש ב- \"/\". הפונקציה DIVIDE פותרת מקרי "
773
+ "חלוקה באפס. ככזה, מומלץ להשתמש כדי למנוע שגיאות."
774
+
775
+ # description
776
+ msgid "Column references should be fully qualified"
777
+ msgstr ""
778
+ "שימוש בהפניות מלאות לעמודות מקל על ההבחנה בין הפניות לעמודות ולהפניות "
779
+ "למדידה, וכן מסייע במניעת שגיאות מסוימות. בעת הפניה לעמודה ב- DAX, ציין תחילה"
780
+ " את שם הטבלה ולאחר מכן ציין את שם העמודה בסוגריים מרובעים."
781
+
782
+ # description
783
+ msgid "Measure references should be unqualified"
784
+ msgstr ""
785
+ "שימוש בהפניות מדידה בלתי מסויגות, מקל על ההבחנה בין הפניות עמודה למידה, וכן "
786
+ "מסייע במניעת שגיאות מסוימות. בעת הפניה לאמצעי באמצעות DAX, אל תציין את שם "
787
+ "הטבלה. השתמש רק בשם המידה בסוגריים מרובעים."
788
+
789
+ # description
790
+ msgid "Inactive relationships that are never activated"
791
+ msgstr ""
792
+ "קשרי גומלין לא פעילים מופעלים באמצעות הפונקציה USERELATIONSHIP. אם קשר "
793
+ "גומלין לא פעיל אינו מוזכר בשום אמצעי באמצעות פונקציה זו, הקשר לא ישמש. יש "
794
+ "לקבוע אם הקשר אינו הכרחי או להפעיל את הקשר בשיטה זו."
795
+
796
+ # description
797
+ msgid "Remove unnecessary columns"
798
+ msgstr ""
799
+ "יש להסיר עמודות מוסתרות שאין אליהן הפניה על-ידי ביטויי DAX, קשרי גומלין, "
800
+ "רמות הירארכיה או מאפייני מיון לפי."
801
+
802
+ # description
803
+ msgid "Remove unnecessary measures"
804
+ msgstr ""
805
+ "יש להסיר אמצעים מוסתרים שאין אליהם הפניה בביטויי DAX כלשהם לצורך תחזוקה."
806
+
807
+ # description
808
+ msgid "Ensure tables have relationships"
809
+ msgstr "כלל זה מדגיש טבלאות שאינן מחוברות לאף טבלה אחרת במודל עם קשר גומלין."
810
+
811
+ # description
812
+ msgid "Calculation groups with no calculation items"
813
+ msgstr "לקבוצות חישוב אין פונקציה אלא אם כן יש להן פריטי חישוב."
814
+
815
+ # description
816
+ msgid "Visible objects with no description"
817
+ msgstr ""
818
+ "הוסף תיאורים לאובייקטים. תיאורים אלה מוצגים בעת ריחוף בתוך רשימת השדות ב- "
819
+ "Power BI Desktop. בנוסף, באפשרותך למנף תיאורים אלה ליצירת מילון נתונים "
820
+ "אוטומטי."
821
+
822
+ # description
823
+ msgid "Provide format string for 'Date' columns"
824
+ msgstr ""
825
+ "עמודות מסוג \"DateTime\" שיש להן \"חודש\" בשמן צריכות להיות מעוצבות כ- "
826
+ "\"mm/dd/yyyy\"."
827
+
828
+ # description
829
+ msgid "Do not summarize numeric columns"
830
+ msgstr ""
831
+ "עמודות מספריות (מספר שלם, עשרוני, כפול) צריכות להגדיר את המאפיין SummarizeBy"
832
+ " שלהן כ\"ללא\" כדי למנוע סיכום מקרי ב- Power BI (צור אמצעים במקום זאת)."
833
+
834
+ # description
835
+ msgid "Provide format string for measures"
836
+ msgstr "יש להקצות למידות גלויות את מאפיין מחרוזת התבנית שלהן."
837
+
838
+ # description
839
+ msgid "Add data category for columns"
840
+ msgstr "המאפיין הוסף קטגוריית נתונים עבור עמודות מתאימות."
841
+
842
+ # description
843
+ msgid ""
844
+ "Percentages should be formatted with thousands separators and 1 decimal"
845
+ msgstr "לקבלת חוויית משתמש טובה יותר, יש לעצב את המדדים הקבועים עם סימן '%'."
846
+
847
+ # description
848
+ msgid ""
849
+ "Whole numbers should be formatted with thousands separators and no decimals"
850
+ msgstr "לקבלת חוויית משתמש טובה יותר, יש לעצב מספרים שלמים באמצעות פסיקים."
851
+
852
+ # description
853
+ msgid "Hide foreign keys"
854
+ msgstr ""
855
+ "מפתחות זרים צריכים תמיד להיות מוסתרים מכיוון שמשתמשי קצה אינם צריכים להשתמש "
856
+ "בהם."
857
+
858
+ # description
859
+ msgid "Mark primary keys"
860
+ msgstr ""
861
+ "הגדר את המאפיין 'מפתח' ל- 'True' עבור עמודות מפתח ראשי בתוך מאפייני העמודה."
862
+
863
+ # description
864
+ msgid "Month (as a string) must be sorted"
865
+ msgstr ""
866
+ "כלל זה מסמן עמודות חודש שהן מחרוזות ואינן ממוינות. אם הם לא ממוינים, הם "
867
+ "ימוינו לפי סדר אלפביתי (כלומר אפריל, אוגוסט...). הקפידו למיין עמודות כאלה כך"
868
+ " שימוינו כראוי (ינואר, פברואר, מרץ...)."
869
+
870
+ # description
871
+ msgid "Relationship columns should be of integer data type"
872
+ msgstr ""
873
+ "זוהי שיטת עבודה מומלצת עבור עמודות קשרי גומלין להיות מסוג נתונים שלמים. זה "
874
+ "חל לא רק על מחסני נתונים אלא גם על מידול נתונים."
875
+
876
+ # description
877
+ msgid "Provide format string for \"Month\" columns"
878
+ msgstr ""
879
+ "עמודות מסוג \"DateTime\" שיש להן \"חודש\" בשמותיהן צריכות להיות מעוצבות כ- "
880
+ "\"MMMM yyyy\"."
881
+
882
+ # description
883
+ msgid "Format flag columns as Yes/No value strings"
884
+ msgstr ""
885
+ "דגלים חייבים להיות מעוצבים כראוי ככן/לא מכיוון שקל יותר לקרוא זאת מאשר "
886
+ "להשתמש בערכים שלמים של 0/1."
887
+
888
+ # description
889
+ msgid "Objects should not start or end with a space"
890
+ msgstr ""
891
+ "אובייקטים אינם אמורים להתחיל או להסתיים ברווח. זה קורה בדרך כלל במקרה וקשה "
892
+ "למצוא."
893
+
894
+ # description
895
+ msgid "First letter of objects must be capitalized"
896
+ msgstr ""
897
+ "האות הראשונה של שמות אובייקטים צריכה להיות באותיות רישיות כדי לשמור על איכות"
898
+ " מקצועית."
899
+
900
+ # description
901
+ msgid "Object names must not contain special characters"
902
+ msgstr "שמות אובייקטים לא צריכים לכלול טאבים, מעברי שורה וכו'."