Skip to content

Commit

Permalink
Use UTF-8 enconding in code
Browse files Browse the repository at this point in the history
Ruby need to have unified enconding over whole file and to be consistent
we choose UTF-8 that is already used on some place. This commit makes also
storage module consistent.
  • Loading branch information
jreidinger committed Jul 3, 2013
1 parent d35b5dc commit 266e98b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion storage/src/include/auto_part_create.ycp
Expand Up @@ -23,7 +23,7 @@
* Module: auto_part_create.ycp
*
* Authors: Andreas Schwab (schwab@suse.de)
* Klaus K�mpf (kkaempf@suse.de)
* Klaus Kämpf (kkaempf@suse.de)
*
* Purpose: This module creates the neccessary partitions
* in the targetMap
Expand Down
6 changes: 3 additions & 3 deletions storage/src/include/auto_part_functions.ycp
Expand Up @@ -23,7 +23,7 @@
* Module: auto_part_functions.ycp
*
* Authors: Andreas Schwab (schwab@suse.de)
* Klaus K�mpf (kkaempf@suse.de)
* Klaus Kämpf (kkaempf@suse.de)
*
* Purpose: This module define functions of general use
* to the automatic partitioner
Expand Down Expand Up @@ -175,8 +175,8 @@ define boolean is_fat_partition( map partition ) ``{
//
define boolean is_ntfs_partition( map partition ) ``{
return ( partition["fsid"]:-1 == 0x07 || // HPFS/NTFS
partition["fsid"]:-1 == 0x86 || // NTFS-Datentr�ger
partition["fsid"]:-1 == 0x87 ); // NTFS-Datentr�ger
partition["fsid"]:-1 == 0x86 || // NTFS-Datenträger
partition["fsid"]:-1 == 0x87 ); // NTFS-Datenträger
}


Expand Down
2 changes: 1 addition & 1 deletion storage/src/include/auto_part_prepare.ycp
Expand Up @@ -23,7 +23,7 @@
* Module: auto_part_prepare.ycp
*
* Authors: Andreas Schwab (schwab@suse.de)
* Klaus K�mpf (kkaempf@suse.de)
* Klaus Kämpf (kkaempf@suse.de)
*
* Purpose: This module preparse the raw targetMap to
* cover the whole disk, including unpartitioned
Expand Down
2 changes: 1 addition & 1 deletion storage/src/include/auto_part_ui.ycp
Expand Up @@ -23,7 +23,7 @@
* Module: auto_part_ui.ycp
*
* Authors: Andreas Schwab (schwab@suse.de)
* Klaus K�mpf (kkaempf@suse.de)
* Klaus Kämpf (kkaempf@suse.de)
*
* Purpose: This module contains the user interface
* definitions for the automatic partitioner
Expand Down
12 changes: 6 additions & 6 deletions storage/src/modules/Storage.ycp
Expand Up @@ -29,16 +29,16 @@
* to * access and modify the partitioning settings.
*
* Todo: Translate
* Diese Modul enth�lt alle Informationen die f�r die Partitionierung der
* Diese Modul enthält alle Informationen die für die Partitionierung der
* Festplatten erforderlich sind. Diese Informationen bestehen aus der
* Beschreibung, der vor der Partitionierung vorhandenen Platteneinstellungen,
* und der Art und Weise wie diese ver�ndert werden soll.
* Alle n�tigen Zugriffsfunktionen auf diese Datenstruktur sind ebenfalls in
* und der Art und Weise wie diese verändert werden soll.
* Alle nötigen Zugriffsfunktionen auf diese Datenstruktur sind ebenfalls in
* diesem Modul enthalten. Der Zugriff auf die Speicherung der
* Partitionseinstellungen l�uft also nur �ber dieses Modul.
* Der Zugriff und die R�ckgabe von Teilen der Partitionsdatenstruktur
* Partitionseinstellungen läuft also nur über dieses Modul.
* Der Zugriff und die Rückgabe von Teilen der Partitionsdatenstruktur
* wurde versucht "intelligent" zu gestallten und ist im einzelen bei den
* entspechenden Funktionen n�her erkl�rt.
* entspechenden Funktionen näher erklärt.
*
* $Id$
*/
Expand Down

0 comments on commit 266e98b

Please sign in to comment.