diff options
author | Stanislav Horacek <stanislav.horacek@gmail.com> | 2022-02-02 19:47:22 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2022-02-03 04:19:59 +0100 |
commit | 56c146e68448db5622dc54823874ebb8605b55a9 (patch) | |
tree | e5a44556cfdaac5bb903601ea935831d3503950b | |
parent | 84169c6b03ae925d6b483c0c0141f28889c0bf56 (diff) |
make comments in example for TextStream localizable
Change-Id: I4f18e6f5c2d3f8ec6ead759217178095d0c108a2
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129383
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r-- | source/text/sbasic/shared/03/sf_textstream.xhp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/text/sbasic/shared/03/sf_textstream.xhp b/source/text/sbasic/shared/03/sf_textstream.xhp index 2b7153b991..96b393539e 100644 --- a/source/text/sbasic/shared/03/sf_textstream.xhp +++ b/source/text/sbasic/shared/03/sf_textstream.xhp @@ -240,10 +240,10 @@ <paragraph role="bascode" id="bas_id181613595641087">'Opens the text file with the names to be read</paragraph> <paragraph role="bascode" localize="false" id="bas_id291613595641480">Dim inputFile as Object</paragraph> <paragraph role="bascode" localize="false" id="bas_id651613595641754">Set inputFile = FSO.OpenTextFile("/home/user/Documents/Students.txt")</paragraph> - <paragraph role="bascode" localize="false" id="bas_id711613595642109">'Reads all the contents in the input file as a single string</paragraph> + <paragraph role="bascode" id="bas_id711613595642109">'Reads all the contents in the input file as a single string</paragraph> <paragraph role="bascode" localize="false" id="bas_id81613595642474">Dim allData as String</paragraph> <paragraph role="bascode" localize="false" id="bas_id191613595642766">allData = inputFile.ReadAll()</paragraph> - <paragraph role="bascode" localize="false" id="bas_id961613595643093">'Splits the string into an array</paragraph> + <paragraph role="bascode" id="bas_id961613595643093">'Splits the string into an array</paragraph> <paragraph role="bascode" localize="false" id="bas_id51613595643398">Dim arrNames as Variant</paragraph> <paragraph role="bascode" localize="false" id="bas_id151613595643675">arrNames = SF_String.SplitLines(allData)</paragraph> <paragraph role="bascode" localize="false" id="bas_id211613595928948">' (...)</paragraph> |