You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/locale/fr/LC_MESSAGES/release_notes/release_1.00.po
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ msgid ""
7
7
msgstr ""
8
8
"Project-Id-Version: DataLab \n"
9
9
"Report-Msgid-Bugs-To: \n"
10
-
"POT-Creation-Date: 2025-12-13 13:42+0100\n"
10
+
"POT-Creation-Date: 2025-12-13 14:17+0100\n"
11
11
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
12
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
"Language: fr\n"
@@ -27,6 +27,24 @@ msgstr ""
27
27
msgid"🛠️ Bug Fixes since version 1.0.2"
28
28
msgstr"🛠️ Correctifs depuis la version 1.0.2"
29
29
30
+
msgid"**Result labels - False \"omitted\" message for single-row results:**"
31
+
msgstr"**Étiquettes de résultats - Faux message \"omis\" pour les résultats à une seule ligne :**"
32
+
33
+
msgid"Fixed result labels (e.g., pulse features) incorrectly showing \"X more rows omitted\" message when displaying single-row results with no actual truncation"
34
+
msgstr"Correction des étiquettes de résultats (par exemple, les caractéristiques des impulsions) affichant incorrectement le message \"X lignes supplémentaires omises\" lors de l'affichage de résultats à une seule ligne sans troncature réelle"
35
+
36
+
msgid"The bug occurred because `len(adapter.result)` was used to get the row count, but this actually returns the number of column headers, not data rows"
37
+
msgstr"L'anomalie s'est produite parce que `len(adapter.result)` était utilisé pour obtenir le nombre de lignes, mais cela renvoie en fait le nombre d'en-têtes de colonnes, pas les lignes de données"
38
+
39
+
msgid"For pulse features with 13 columns, this caused the label to think there were 13 rows when only 1 row existed, leading to a false \"12 more rows omitted\" message"
40
+
msgstr"Pour les caractéristiques des impulsions avec 13 colonnes, cela a amené l'étiquette à penser qu'il y avait 13 lignes alors qu'il n'y en avait qu'une seule, ce qui a conduit à un faux message \"12 lignes supplémentaires omises\""
41
+
42
+
msgid"The fix ensures accurate row counting using `len(df)` instead, preventing false truncation notices"
43
+
msgstr"Le correctif garantit un comptage précis des lignes en utilisant `len(df)` à la place, évitant ainsi les fausses notifications de troncature"
44
+
45
+
msgid"This closes [Issue #281](https://github.com/datalab-platform/datalab/issues/281) - Result Labels False \"Omitted\" Message"
46
+
msgstr"Ceci clôture [Issue #281](https://github.com/datalab-platform/datalab/issues/281) - Faux message \"omis\" des étiquettes de résultats"
47
+
30
48
msgid"**Signal view - XRangeSelection items persist after removing signals:**"
31
49
msgstr"**Vue des signaux - Les éléments XRangeSelection persistent après la suppression des signaux :**"
Copy file name to clipboardExpand all lines: doc/release_notes/release_1.00.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,14 @@
4
4
5
5
### 🛠️ Bug Fixes since version 1.0.2 ###
6
6
7
+
**Result labels - False "omitted" message for single-row results:**
8
+
9
+
* Fixed result labels (e.g., pulse features) incorrectly showing "X more rows omitted" message when displaying single-row results with no actual truncation
10
+
* The bug occurred because `len(adapter.result)` was used to get the row count, but this actually returns the number of column headers, not data rows
11
+
* For pulse features with 13 columns, this caused the label to think there were 13 rows when only 1 row existed, leading to a false "12 more rows omitted" message
12
+
* The fix ensures accurate row counting using `len(df)` instead, preventing false truncation notices
13
+
* This closes [Issue #281](https://github.com/datalab-platform/datalab/issues/281) - Result Labels False "Omitted" Message
14
+
7
15
**Signal view - XRangeSelection items persist after removing signals:**
8
16
9
17
* Fixed XRangeSelection and DataInfoLabel items (created by PlotPy's curve statistics tools) remaining visible on the plot after removing all signals
0 commit comments