Design changes; Partitions tables changes

pull/228/head
parent 06892dd8c7
commit e2c349a88c

@ -388,7 +388,7 @@ msgid "Restore missing or corrupted system files. Users data is not affected"
msgstr "" msgstr ""
#: source/ubl-strings.h:88 #: source/ubl-strings.h:88
msgid "User data only" msgid "User data restore"
msgstr "" msgstr ""
#: source/ubl-strings.h:89 #: source/ubl-strings.h:89
@ -1903,6 +1903,15 @@ msgid ""
"network or the Internet (even over slow connection channels)." "network or the Internet (even over slow connection channels)."
msgstr "" msgstr ""
msgid "File system label"
msgstr ""
msgid "Flags"
msgstr ""
msgid "Mount point"
msgstr ""
msgid "About" msgid "About"
msgstr "" msgstr ""

@ -251,7 +251,7 @@ msgstr "Метка"
#: source/ubl-strings.h:63 #: source/ubl-strings.h:63
msgid "Size" msgid "Size"
msgstr "Общий размер" msgstr "Размер"
#: source/ubl-strings.h:64 #: source/ubl-strings.h:64
msgid "Free" msgid "Free"
@ -401,7 +401,7 @@ msgid "Restore missing or corrupted system files. Users data is not affected"
msgstr "Восстановление отсутствующих или поврежденных системных файлов. Данные пользователей не затрагиваются" msgstr "Восстановление отсутствующих или поврежденных системных файлов. Данные пользователей не затрагиваются"
#: source/ubl-strings.h:88 #: source/ubl-strings.h:88
msgid "User data only" msgid "User data restore"
msgstr "Только пользовательские данные" msgstr "Только пользовательские данные"
#: source/ubl-strings.h:89 #: source/ubl-strings.h:89
@ -504,7 +504,7 @@ msgstr "Раздел"
#: source/ubl-strings.h:119 #: source/ubl-strings.h:119
msgid "Capacity" msgid "Capacity"
msgstr "Объём" msgstr "Размер"
#: source/ubl-strings.h:120 #: source/ubl-strings.h:120
msgid "Free space" msgid "Free space"
@ -2047,6 +2047,15 @@ msgstr ""
msgid "About" msgid "About"
msgstr "О программе" msgstr "О программе"
msgid "File system label"
msgstr "Метка файловой системы"
msgid "Flags"
msgstr "Флаги"
msgid "Mount point"
msgstr "Точка монтирования"
msgid "Documentation" msgid "Documentation"
msgstr "Справка" msgstr "Справка"

@ -327,8 +327,8 @@ void on_device_selection_changed(GtkWidget *self, main_window *widgets){
yon_char_remove_last_symbol(partitions[i],'\n'); yon_char_remove_last_symbol(partitions[i],'\n');
int parsed_size; int parsed_size;
config_str parsed = yon_char_parse(partitions[i],&parsed_size,";"); config_str parsed = yon_char_parse(partitions[i],&parsed_size,";");
if (!strcmp(parsed[0],"part")){ if (!strcmp(parsed[1],"part")){
char *name = parsed[1]; char *name = parsed[2];
if (strstr(name,disk_path)){ if (strstr(name,disk_path)){
char *capacity = NULL; char *capacity = NULL;
long capacity_long = 0; long capacity_long = 0;
@ -336,33 +336,54 @@ void on_device_selection_changed(GtkWidget *self, main_window *widgets){
long free_space_long = 0; long free_space_long = 0;
char *fs_type = NULL; char *fs_type = NULL;
char *label = NULL; char *label = NULL;
char *fs_label = NULL;
char *mount_point = NULL;
char *flags = NULL;
if (parsed_size>2){ if (parsed_size>2){
char sizemod='\0'; char sizemod='\0';
capacity_long = atol(parsed[2]); capacity_long = atol(parsed[3]);
char *temp = yon_char_from_double(yon_size_long_convert_automatic(capacity_long,&sizemod)); char *temp = yon_char_from_double(yon_size_long_convert_automatic(capacity_long,&sizemod));
char *size_str = yon_size_get_name_from_letter(sizemod); char *size_str = yon_size_get_name_from_letter(sizemod);
capacity = yon_char_unite(temp," ", size_str,NULL); capacity = yon_char_unite(temp," ", size_str,NULL);
free(temp); free(temp);
} }
if (parsed_size>7&&!yon_char_is_empty(parsed[7])){ // if (parsed_size>8&&!yon_char_is_empty(parsed[8])){
// char sizemod='\0';
// free_space_long = capacity_long-atol(parsed[8]);
// char *temp = yon_char_from_double(yon_size_long_convert_automatic(free_space_long,&sizemod));
// char *size_str = yon_size_get_name_from_letter(sizemod);
// capacity = yon_char_unite(temp," ", size_str,parsed_size>9?" ":NULL,parsed[9],NULL);
// free(temp);
// }
if (parsed_size>4){
fs_type = parsed[4];
}
if (parsed_size>5){
label = parsed[5];
}
if (parsed_size>8&&!yon_char_is_empty(parsed[8])){
long used_cap = capacity_long-atol(parsed[8]);
long capacity_persent = ((double)used_cap/(double)capacity_long)*100;
char sizemod='\0'; char sizemod='\0';
free_space_long = capacity_long-atol(parsed[7]); char *temp = yon_char_from_double(yon_size_long_convert_automatic(used_cap,&sizemod));
char *temp = yon_char_from_double(yon_size_long_convert_automatic(free_space_long,&sizemod));
char *size_str = yon_size_get_name_from_letter(sizemod); char *size_str = yon_size_get_name_from_letter(sizemod);
capacity = yon_char_unite(temp," ", size_str,NULL); free_space = yon_char_unite(temp, " ",size_str," (",yon_char_from_long(capacity_persent),"%",")",NULL);
free(temp);
} }
if (parsed_size>3){ if (parsed_size>6){
fs_type = parsed[3]; fs_label = parsed[6];
} }
if (parsed_size>4){ if (parsed_size>7){
label = parsed[4]; mount_point = parsed[7];
}
if (parsed_size>10){
flags = parsed[10];
} }
gtk_list_store_append(widgets->PartitionsList,&iter); gtk_list_store_append(widgets->PartitionsList,&iter);
gtk_list_store_set(widgets->PartitionsList,&iter,0,name,1,capacity,2,free_space,3,fs_type,4,label,5,capacity_long,6,free_space_long,9,disk_path,-1); gtk_list_store_set(widgets->PartitionsList,&iter,0,name,1,capacity,2,free_space,3,fs_type,4,label,5,capacity_long,6,free_space_long,9,disk_path,9,mount_point,10,fs_label,11,flags,-1);
} }
yon_char_parsed_free(parsed,parsed_size); yon_char_parsed_free(parsed,parsed_size);
} }

@ -82,7 +82,7 @@ NULL)
#define SEPARATE_INSTALL_LABEL _("Installing OS components and user data on different disk partitions") #define SEPARATE_INSTALL_LABEL _("Installing OS components and user data on different disk partitions")
#define OS_ONLY_HEAD_LABEL _("System restore") #define OS_ONLY_HEAD_LABEL _("System restore")
#define OS_ONLY_LABEL _("Restore missing or corrupted system files. Users data is not affected") #define OS_ONLY_LABEL _("Restore missing or corrupted system files. Users data is not affected")
#define USER_DATA_HEAD_LABEL _("User data only") #define USER_DATA_HEAD_LABEL _("User data restore")
#define USER_DATA_LABEL _("Installing only user data without OS components") #define USER_DATA_LABEL _("Installing only user data without OS components")
#define KEYBOARD__LABEL _("Keyboard layout language") #define KEYBOARD__LABEL _("Keyboard layout language")
@ -458,6 +458,9 @@ NULL)
// #define _LABEL _("Packager") // #define _LABEL _("Packager")
// #define _LABEL _("Build Date") // #define _LABEL _("Build Date")
// #define _LABEL _("Validated By") // #define _LABEL _("Validated By")
// #define REBOOT_LABEL _("File system label")
// #define REBOOT_LABEL _("Flags")
// #define REBOOT_LABEL _("Mount point")
#define slide_1_title _("Product ecosystem") #define slide_1_title _("Product ecosystem")
#define slide_1_text _("Developed by a team of professionals and successfully presented on the market.\n\ #define slide_1_text _("Developed by a team of professionals and successfully presented on the market.\n\

@ -263,7 +263,11 @@
<column type="gboolean"/> <column type="gboolean"/>
<!-- column-name Activatable --> <!-- column-name Activatable -->
<column type="gboolean"/> <column type="gboolean"/>
<!-- column-name SourceDevice --> <!-- column-name MountPoint -->
<column type="gchararray"/>
<!-- column-name FileSystemLabel -->
<column type="gchararray"/>
<!-- column-name Flags -->
<column type="gchararray"/> <column type="gchararray"/>
</columns> </columns>
</object> </object>
@ -914,7 +918,6 @@ agreement</property>
<property name="visible">True</property> <property name="visible">True</property>
<property name="can-focus">False</property> <property name="can-focus">False</property>
<property name="tab-pos">left</property> <property name="tab-pos">left</property>
<property name="show-tabs">False</property>
<child> <child>
<object class="GtkBox"> <object class="GtkBox">
<property name="visible">True</property> <property name="visible">True</property>
@ -8304,7 +8307,40 @@ or continue working in the system Live environment.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -8326,22 +8362,22 @@ or continue working in the system Live environment.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
@ -9012,7 +9048,40 @@ or continue working in the system Live environment.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -9034,22 +9103,22 @@ or continue working in the system Live environment.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
@ -9700,15 +9769,11 @@ separately into the selected partition.</property>
</packing> </packing>
</child> </child>
<child> <child>
<object class="GtkFrame"> <object class="GtkScrolledWindow">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can-focus">False</property> <property name="can-focus">True</property>
<property name="label-xalign">0</property>
<property name="shadow-type">in</property> <property name="shadow-type">in</property>
<child> <property name="min-content-height">128</property>
<object class="GtkAlignment">
<property name="visible">True</property>
<property name="can-focus">False</property>
<child> <child>
<object class="GtkTreeView" id="AdvancedPartitionTree"> <object class="GtkTreeView" id="AdvancedPartitionTree">
<property name="height-request">125</property> <property name="height-request">125</property>
@ -9723,10 +9788,6 @@ separately into the selected partition.</property>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<child> <child>
<object class="GtkCellRendererToggle" id="AdvancedPartChosenCell"/> <object class="GtkCellRendererToggle" id="AdvancedPartChosenCell"/>
<attributes>
<attribute name="sensitive">8</attribute>
<attribute name="active">7</attribute>
</attributes>
</child> </child>
</object> </object>
</child> </child>
@ -9743,54 +9804,82 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">1</attribute> <attribute name="text">3</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Free space</property> <property name="title" translatable="yes">Label</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">2</attribute> <attribute name="text">4</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">File system label</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">10</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">1</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Free space</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">2</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Flags</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">11</attribute>
</attributes>
</child>
</object> </object>
</child> </child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Mount point</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">9</attribute>
</attributes>
</child>
</object> </object>
</child> </child>
<child type="label_item"> </object>
<placeholder/>
</child> </child>
</object> </object>
<packing> <packing>
@ -11181,7 +11270,40 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -11203,22 +11325,22 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
@ -11594,7 +11716,40 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -11616,22 +11771,22 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
@ -12000,7 +12155,40 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -12022,22 +12210,22 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
@ -12808,7 +12996,40 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Capacity</property> <property name="title" translatable="yes">File system</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">3</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">4</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system label</property>
<child>
<object class="GtkCellRendererText"/>
<attributes>
<attribute name="text">10</attribute>
</attributes>
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Size</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
@ -12830,22 +13051,22 @@ separately into the selected partition.</property>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">File system</property> <property name="title" translatable="yes">Flags</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">3</attribute> <attribute name="text">11</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkTreeViewColumn"> <object class="GtkTreeViewColumn">
<property name="title" translatable="yes">Label</property> <property name="title" translatable="yes">Mount point</property>
<child> <child>
<object class="GtkCellRendererText"/> <object class="GtkCellRendererText"/>
<attributes> <attributes>
<attribute name="text">4</attribute> <attribute name="text">9</attribute>
</attributes> </attributes>
</child> </child>
</object> </object>

Loading…
Cancel
Save