Kaydet (Commit) f049eb7f authored tarafından Hakan Dündar's avatar Hakan Dündar

Removed unused dialogs

üst ebf297d6
......@@ -126,8 +126,6 @@ def environment_variables_open_right_click_menu_func(event):
return
model = treeview7101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
environment_variables_no_variable_selected_dialog()
if treeiter is not None:
global selected_variable_value, selected_variable_type
selected_variable_value = EnvironmentVariables.variable_list[EnvironmentVariables.environment_variables_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "environment_variables_data_rows" list to use it getting name of the variable.
......@@ -148,13 +146,3 @@ def environment_variables_open_right_click_menu_func(event):
EnvironmentVarMenuRightClickGUI.menuitem7103m.set_sensitive(False) # Set "Delete Environment Variable" item as insensitive
EnvironmentVarMenuRightClickGUI.menuitem7103m.set_tooltip_text(_tr("Shell variables cannot be deleted.")) # Set "Delete Environment Variable" item tooltip text
EnvironmentVarMenuRightClickGUI.menu7101m.popup(None, None, None, None, event.button, event.time)
# ----------------------------------- Startup - No Startup Item Selected Dialog Function (shows a dialog when Open Startup Item Right Click Menu is clicked without selecting a startup item) -----------------------------------
def environment_variables_no_variable_selected_dialog():
dialog7101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select A Variable"), )
dialog7101.format_secondary_text(_tr("Please select a variable and try again for opening the menu"))
dialog7101.run()
dialog7101.destroy()
......@@ -172,14 +172,11 @@ def processes_open_right_click_menu_func(event):
return
model = treeview2101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
processes_no_process_selected_dialog()
if treeiter is not None:
global selected_process_pid
try:
selected_process_pid = Processes.pid_list[Processes.processes_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "processes_data_rows" list to use it getting pid of the process.
except ValueError: # It gives error such as "ValueError: [True, 'system-monitoring-center-process-symbolic', 'python3', 2411, 'asush', 'Running', 1.6633495783351964, 98824192, 548507648, 45764608, 0, 16384, 0, 5461, 0, 4, 1727, 1000, 1000, '/usr/bin/python3.9'] is not in list" rarely. It is handled in this situation.
print("not in list error")
return
if 'ProcessesMenuRightClickGUI' not in globals(): # Check if "ProcessesMenuRightClickGUI" module is imported. Therefore it is not reimported on every right click operation.
global ProcessesMenuRightClickGUI
......@@ -199,14 +196,11 @@ def processes_open_process_details_window_func(event):
return
model = treeview2101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
processes_no_process_selected_dialog()
if treeiter is not None:
global selected_process_pid
try:
selected_process_pid = Processes.pid_list[Processes.processes_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "processes_data_rows" list to use it getting pid of the process.
except ValueError: # It gives error such as "ValueError: [True, 'system-monitoring-center-process-symbolic', 'python3', 2411, 'asush', 'Running', 1.6633495783351964, 98824192, 548507648, 45764608, 0, 16384, 0, 5461, 0, 4, 1727, 1000, 1000, '/usr/bin/python3.9'] is not in list" rarely. It is handled in this situation.
print("not in list error")
return
# Open Process Details window
if 'ProcessesDetailsGUI' not in globals(): # Check if "ProcessesDetailsGUI" module is imported. Therefore it is not reimported for every double click on any process on the treeview if "ProcessesDetailsGUI" name is in globals().
......@@ -217,13 +211,3 @@ def processes_open_process_details_window_func(event):
ProcessesDetails.processes_details_import_func()
ProcessesDetailsGUI.window2101w.show()
ProcessesDetails.process_details_foreground_thread_run_func()
# ----------------------------------- Processes - No Process Selected Dialog Function (shows a dialog when Open Process Right Click Menu is clicked without selecting a process) -----------------------------------
def processes_no_process_selected_dialog():
dialog2101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select A Process"), )
dialog2101.format_secondary_text(_tr("Please select a process and try again for opening the menu"))
dialog2101.run()
dialog2101.destroy()
......@@ -133,8 +133,6 @@ def services_open_right_click_menu_func(event):
return
model = treeview6101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
services_no_service_selected_dialog()
if treeiter is not None:
global selected_service_name
selected_service_name = Services.service_list[Services.services_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "services_data_rows" list to use it getting name of the service.
......@@ -157,8 +155,6 @@ def services_open_service_details_window_func(event):
return # Stop running rest of the code if the error is encountered.
model = treeview6101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
services_no_service_selected_dialog()
if treeiter is not None:
global selected_service_name
selected_service_name = Services.service_list[Services.services_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "services_data_rows" list to use it getting name of the service.
......@@ -171,13 +167,3 @@ def services_open_service_details_window_func(event):
ServicesDetails.services_details_import_func()
ServicesDetailsGUI.window6101w.show()
ServicesDetails.services_details_foreground_thread_run_func()
# ----------------------------------- Services - No Service Selected Dialog Function (shows a dialog when Open Services Right Click Menu is clicked without selecting a service) -----------------------------------
def services_no_service_selected_dialog():
dialog6101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select A Service"), )
dialog6101.format_secondary_text(_tr("Please select a service and try again for opening the menu"))
dialog6101.run()
dialog6101.destroy()
......@@ -126,8 +126,6 @@ def startup_open_right_click_menu_func(event):
return
model = treeview5101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
startup_no_startup_item_selected_dialog()
if treeiter is not None:
global selected_startup_application_file_name, selected_startup_application_visibility, selected_startup_application_name
selected_startup_application_file_name = Startup.all_autostart_applications_list[Startup.startup_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "startup_data_rows" list to use it getting name of the startup application file name.
......@@ -141,13 +139,3 @@ def startup_open_right_click_menu_func(event):
StartupMenuRightClickGUI.menu5101m.popup(None, None, None, None, event.button, event.time)
StartupMenuRightClickGUI.startup_set_checkmenuitem_func()
StartupMenuRightClickGUI.startup_set_menu_labels_func()
# ----------------------------------- Startup - No Startup Item Selected Dialog Function (shows a dialog when Open Startup Item Right Click Menu is clicked without selecting a startup item) -----------------------------------
def startup_no_startup_item_selected_dialog():
dialog5101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select A Startup Item"), )
dialog5101.format_secondary_text(_tr("Please select a startup item and try again for opening the menu"))
dialog5101.run()
dialog5101.destroy()
......@@ -158,8 +158,6 @@ def storage_open_right_click_menu_func(event):
return
model = treeview4101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
storage_no_disk_selected_dialog()
if treeiter is not None:
global selected_storage_kernel_name
selected_storage_kernel_name = Storage.disk_list[Storage.storage_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "storage_data_rows" list to use it getting name of the disk.
......@@ -181,8 +179,6 @@ def storage_open_storage_details_window_func(event):
return
model = treeview4101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
storage_no_disk_selected_dialog()
if treeiter is not None:
global selected_storage_kernel_name
selected_storage_kernel_name = Storage.disk_list[Storage.storage_data_rows.index(model[treeiter][:])] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "storage_data_rows" list to use it getting name of the disk.
......@@ -195,13 +191,3 @@ def storage_open_storage_details_window_func(event):
StorageDetails.storage_details_import_func()
StorageDetailsGUI.window4101w.show()
StorageDetails.storage_details_foreground_thread_run_func()
# ----------------------------------- Storage - No Disk Selected Dialog Function (shows a dialog when Open Storage Right Click Menu is clicked without selecting a storage/disk) -----------------------------------
def storage_no_disk_selected_dialog():
dialog4101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select A Disk/Partition"), )
dialog4101.format_secondary_text(_tr("Please select a disk/partition and try again for opening the menu"))
dialog4101.run()
dialog4101.destroy()
......@@ -127,8 +127,6 @@ def users_open_right_click_menu_func(event):
return
model = treeview3101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
users_no_user_selected_dialog()
if treeiter is not None:
global selected_user_uid
selected_user_uid = Users.uid_username_list[Users.users_data_rows.index(model[treeiter][:])][0] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "user_data_rows" list to use it getting UID of the user.
......@@ -150,8 +148,6 @@ def users_open_user_details_window_func(event):
return
model = treeview3101.get_model()
treeiter = model.get_iter(path)
if treeiter is None:
users_no_user_selected_dialog()
if treeiter is not None:
global selected_user_uid
selected_user_uid = Users.uid_username_list[Users.users_data_rows.index(model[treeiter][:])][0] # "[:]" is used in order to copy entire list to be able to use it for getting index in the "users_data_rows" list to use it getting UID of the user.
......@@ -164,13 +160,3 @@ def users_open_user_details_window_func(event):
UsersDetails.users_details_import_func()
UsersDetailsGUI.window3101w.show()
UsersDetails.users_details_foreground_thread_run_func()
# ----------------------------------- Users - No User Selected Dialog Function (shows a dialog when Open Users Right Click Menu is clicked without selecting an user) -----------------------------------
def users_no_user_selected_dialog():
dialog3101 = Gtk.MessageDialog(transient_for=MainGUI.window1, title=_tr("Warning"), flags=0, message_type=Gtk.MessageType.WARNING,
buttons=Gtk.ButtonsType.CLOSE, text=_tr("Select An User"), )
dialog3101.format_secondary_text(_tr("Please select an user and try again for opening the menu"))
dialog3101.run()
dialog3101.destroy()
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-15 08:42+0300\n"
"POT-Creation-Date: 2021-10-15 09:03+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -91,13 +91,11 @@ msgid "Edit Persistent Environment Variable"
msgstr ""
#: src/EnvironmentVarMenuRightClickGUI.py:157
#: src/EnvironmentVariablesGUI.py:156 src/EnvironmentVariablesInputGUI.py:177
#: src/EnvironmentVariablesInputGUI.py:177
#: src/EnvironmentVariablesInputGUI.py:188 src/Processes.py:703
#: src/ProcessesGUI.py:225 src/ProcessesMenuRightClickGUI.py:247
#: src/ProcessesMenuRightClickGUI.py:258 src/ServicesGUI.py:179
#: src/SettingsGUI.py:573 src/StartupGUI.py:149
#: src/StartupMenuRightClickGUI.py:394 src/StartupMenuRightClickGUI.py:407
#: src/StartupNewItemGUI.py:156 src/StorageGUI.py:203 src/UsersGUI.py:172
#: src/ProcessesMenuRightClickGUI.py:247 src/ProcessesMenuRightClickGUI.py:258
#: src/SettingsGUI.py:573 src/StartupMenuRightClickGUI.py:394
#: src/StartupMenuRightClickGUI.py:407 src/StartupNewItemGUI.py:156
msgid "Warning"
msgstr ""
......@@ -146,17 +144,17 @@ msgid ""
msgstr ""
#: src/EnvironmentVariables.py:139 src/EnvironmentVariables.py:306
#: src/EnvironmentVariables.py:363 src/EnvironmentVariablesGUI.py:140
#: src/EnvironmentVariables.py:363 src/EnvironmentVariablesGUI.py:138
msgid "Environment Variable"
msgstr ""
#: src/EnvironmentVariables.py:142 src/EnvironmentVariables.py:305
#: src/EnvironmentVariables.py:355 src/EnvironmentVariablesGUI.py:145
#: src/EnvironmentVariables.py:355 src/EnvironmentVariablesGUI.py:143
msgid "Shell Variable"
msgstr ""
#: src/EnvironmentVariables.py:145 src/EnvironmentVariables.py:305
#: src/EnvironmentVariables.py:306 src/EnvironmentVariablesGUI.py:140
#: src/EnvironmentVariables.py:306 src/EnvironmentVariablesGUI.py:138
msgid "Environment & Shell Variable"
msgstr ""
......@@ -177,22 +175,14 @@ msgstr ""
msgid " shell variables)"
msgstr ""
#: src/EnvironmentVariablesGUI.py:147
#: src/EnvironmentVariablesGUI.py:145
msgid "Shell variables cannot be edited."
msgstr ""
#: src/EnvironmentVariablesGUI.py:149
#: src/EnvironmentVariablesGUI.py:147
msgid "Shell variables cannot be deleted."
msgstr ""
#: src/EnvironmentVariablesGUI.py:157
msgid "Select A Variable"
msgstr ""
#: src/EnvironmentVariablesGUI.py:158
msgid "Please select a variable and try again for opening the menu"
msgstr ""
#: src/EnvironmentVariablesInputGUI.py:178
msgid "Do You Want To Overwrite Existing Environment Variable?"
msgstr ""
......@@ -507,14 +497,6 @@ msgid ""
"(Usable if processes are listed as tree)"
msgstr ""
#: src/ProcessesGUI.py:226
msgid "Select A Process"
msgstr ""
#: src/ProcessesGUI.py:227
msgid "Please select a process and try again for opening the menu"
msgstr ""
#: src/ProcessesMenuRightClickGUI.py:248
msgid "End Process?"
msgstr ""
......@@ -742,14 +724,6 @@ msgstr ""
msgid "Exited"
msgstr ""
#: src/ServicesGUI.py:180
msgid "Select A Service"
msgstr ""
#: src/ServicesGUI.py:181
msgid "Please select a service and try again for opening the menu"
msgstr ""
#: src/SettingsGUI.py:308 ui/MainWindow.ui:891
msgid "Performance"
msgstr ""
......@@ -860,14 +834,6 @@ msgstr ""
msgid " hidden)"
msgstr ""
#: src/StartupGUI.py:150
msgid "Select A Startup Item"
msgstr ""
#: src/StartupGUI.py:151
msgid "Please select a startup item and try again for opening the menu"
msgstr ""
#: src/StartupMenuRightClickGUI.py:368
msgid "The startup item has system values."
msgstr ""
......@@ -1092,14 +1058,6 @@ msgid ""
" "
msgstr ""
#: src/StorageGUI.py:204
msgid "Select A Disk/Partition"
msgstr ""
#: src/StorageGUI.py:205
msgid "Please select a disk/partition and try again for opening the menu"
msgstr ""
#: src/StorageMenuRightClickGUI.py:207
msgid "Disk Is Not Mounted"
msgstr ""
......@@ -1281,14 +1239,6 @@ msgstr ""
msgid "User Details"
msgstr ""
#: src/UsersGUI.py:173
msgid "Select An User"
msgstr ""
#: src/UsersGUI.py:174
msgid "Please select an user and try again for opening the menu"
msgstr ""
#: ui/CpuMenus.ui:20
msgid "CPU Tab Customizations:"
msgstr ""
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-15 08:42+0300\n"
"PO-Revision-Date: 2021-10-15 08:45+0300\n"
"POT-Creation-Date: 2021-10-15 09:03+0300\n"
"PO-Revision-Date: 2021-10-15 09:05+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: tr_TR\n"
......@@ -92,13 +92,11 @@ msgid "Edit Persistent Environment Variable"
msgstr "Kalıcı Ortam Değişkenini Düzenle"
#: src/EnvironmentVarMenuRightClickGUI.py:157
#: src/EnvironmentVariablesGUI.py:156 src/EnvironmentVariablesInputGUI.py:177
#: src/EnvironmentVariablesInputGUI.py:177
#: src/EnvironmentVariablesInputGUI.py:188 src/Processes.py:703
#: src/ProcessesGUI.py:225 src/ProcessesMenuRightClickGUI.py:247
#: src/ProcessesMenuRightClickGUI.py:258 src/ServicesGUI.py:179
#: src/SettingsGUI.py:573 src/StartupGUI.py:149
#: src/StartupMenuRightClickGUI.py:394 src/StartupMenuRightClickGUI.py:407
#: src/StartupNewItemGUI.py:156 src/StorageGUI.py:203 src/UsersGUI.py:172
#: src/ProcessesMenuRightClickGUI.py:247 src/ProcessesMenuRightClickGUI.py:258
#: src/SettingsGUI.py:573 src/StartupMenuRightClickGUI.py:394
#: src/StartupMenuRightClickGUI.py:407 src/StartupNewItemGUI.py:156
msgid "Warning"
msgstr "Uyarı"
......@@ -151,17 +149,17 @@ msgstr ""
"listelenmesi desteklenmiyor."
#: src/EnvironmentVariables.py:139 src/EnvironmentVariables.py:306
#: src/EnvironmentVariables.py:363 src/EnvironmentVariablesGUI.py:140
#: src/EnvironmentVariables.py:363 src/EnvironmentVariablesGUI.py:138
msgid "Environment Variable"
msgstr "Ortam Değişkeni"
#: src/EnvironmentVariables.py:142 src/EnvironmentVariables.py:305
#: src/EnvironmentVariables.py:355 src/EnvironmentVariablesGUI.py:145
#: src/EnvironmentVariables.py:355 src/EnvironmentVariablesGUI.py:143
msgid "Shell Variable"
msgstr "Kabuk (Shell) Değişkeni"
#: src/EnvironmentVariables.py:145 src/EnvironmentVariables.py:305
#: src/EnvironmentVariables.py:306 src/EnvironmentVariablesGUI.py:140
#: src/EnvironmentVariables.py:306 src/EnvironmentVariablesGUI.py:138
msgid "Environment & Shell Variable"
msgstr "Ortam & Kabuk Değişkeni"
......@@ -182,22 +180,14 @@ msgstr " ortam değişkeni, "
msgid " shell variables)"
msgstr " kabuk (shell) değişkeni)"
#: src/EnvironmentVariablesGUI.py:147
#: src/EnvironmentVariablesGUI.py:145
msgid "Shell variables cannot be edited."
msgstr "Kabuk (Shell) değişkenleri düzenlenemez."
#: src/EnvironmentVariablesGUI.py:149
#: src/EnvironmentVariablesGUI.py:147
msgid "Shell variables cannot be deleted."
msgstr "Kabuk (Shell) değişkenleri silinemez."
#: src/EnvironmentVariablesGUI.py:157
msgid "Select A Variable"
msgstr "Bir Değişken Seçin"
#: src/EnvironmentVariablesGUI.py:158
msgid "Please select a variable and try again for opening the menu"
msgstr "Lütfen bir değişken seçin ve menüyü açmak için tekrar deneyin"
#: src/EnvironmentVariablesInputGUI.py:178
msgid "Do You Want To Overwrite Existing Environment Variable?"
msgstr "Var Olan Ortam Değişkeninin Üzerine Yazmak İstiyor musunuz?"
......@@ -543,14 +533,6 @@ msgstr ""
"Tümünü daralt\n"
"(Eğer işlemler ağaç olarak listelenmişse kullanılabilir)"
#: src/ProcessesGUI.py:226
msgid "Select A Process"
msgstr "Bir İşlem Seçin"
#: src/ProcessesGUI.py:227
msgid "Please select a process and try again for opening the menu"
msgstr "Lütfen bir işlem seçin ve menüyü açmak için tekrar deneyin"
#: src/ProcessesMenuRightClickGUI.py:248
msgid "End Process?"
msgstr "İşlemi Sonlandır?"
......@@ -784,14 +766,6 @@ msgstr "İnaktif"
msgid "Exited"
msgstr "Çıkmış"
#: src/ServicesGUI.py:180
msgid "Select A Service"
msgstr "Bir Servis Seçin"
#: src/ServicesGUI.py:181
msgid "Please select a service and try again for opening the menu"
msgstr "Lütfen bir servis seçin ve menüyü açmak için tekrar deneyin"
#: src/SettingsGUI.py:308 ui/MainWindow.ui:891
msgid "Performance"
msgstr "Performans"
......@@ -902,14 +876,6 @@ msgstr " görünür, "
msgid " hidden)"
msgstr " gizli)"
#: src/StartupGUI.py:150
msgid "Select A Startup Item"
msgstr "Bir Başlangıç Ögesi Seçin"
#: src/StartupGUI.py:151
msgid "Please select a startup item and try again for opening the menu"
msgstr "Lütfen bir başlangıç ögesi seçin ve menüyü açmak için tekrar deneyin"
#: src/StartupMenuRightClickGUI.py:368
msgid "The startup item has system values."
msgstr "Başlangıç ögesi sistem değerlerine sahip."
......@@ -1144,14 +1110,6 @@ msgstr ""
"ve depolama detayları penceresi otomatik olarak kapatıldı.\n"
" "
#: src/StorageGUI.py:204
msgid "Select A Disk/Partition"
msgstr "Bir Disk/Disk Bölümü Seçin"
#: src/StorageGUI.py:205
msgid "Please select a disk/partition and try again for opening the menu"
msgstr "Lütfen bir disk/disk bölümü seçin ve menüyü açmak için tekrar deneyin"
#: src/StorageMenuRightClickGUI.py:207
msgid "Disk Is Not Mounted"
msgstr "Disk Bağlı Değil"
......@@ -1340,14 +1298,6 @@ msgstr "Kullanıcı Detayları: "
msgid "User Details"
msgstr "Kullanıcı Detayları"
#: src/UsersGUI.py:173
msgid "Select An User"
msgstr "Bir Kullanıcı Seçin"
#: src/UsersGUI.py:174
msgid "Please select an user and try again for opening the menu"
msgstr "Lütfen bir kullanıcı seçin ve menüyü açmak için tekrar deneyin"
#: ui/CpuMenus.ui:20
msgid "CPU Tab Customizations:"
msgstr "MİB Sekmesi Özelleştirmeleri:"
......@@ -3736,6 +3686,44 @@ msgstr "Sadece giriş yapmış kullanıcıları göster"
msgid "Show only users logged out"
msgstr "Sadece çıkış yapmış kullanıcıları göster"
#~ msgid "Select A Variable"
#~ msgstr "Bir Değişken Seçin"
#~ msgid "Please select a variable and try again for opening the menu"
#~ msgstr "Lütfen bir değişken seçin ve menüyü açmak için tekrar deneyin"
#~ msgid "Select A Process"
#~ msgstr "Bir İşlem Seçin"
#~ msgid "Please select a process and try again for opening the menu"
#~ msgstr "Lütfen bir işlem seçin ve menüyü açmak için tekrar deneyin"
#~ msgid "Select A Service"
#~ msgstr "Bir Servis Seçin"
#~ msgid "Please select a service and try again for opening the menu"
#~ msgstr "Lütfen bir servis seçin ve menüyü açmak için tekrar deneyin"
#~ msgid "Select A Startup Item"
#~ msgstr "Bir Başlangıç Ögesi Seçin"
#~ msgid "Please select a startup item and try again for opening the menu"
#~ msgstr ""
#~ "Lütfen bir başlangıç ögesi seçin ve menüyü açmak için tekrar deneyin"
#~ msgid "Select A Disk/Partition"
#~ msgstr "Bir Disk/Disk Bölümü Seçin"
#~ msgid "Please select a disk/partition and try again for opening the menu"
#~ msgstr ""
#~ "Lütfen bir disk/disk bölümü seçin ve menüyü açmak için tekrar deneyin"
#~ msgid "Select An User"
#~ msgstr "Bir Kullanıcı Seçin"
#~ msgid "Please select an user and try again for opening the menu"
#~ msgstr "Lütfen bir kullanıcı seçin ve menüyü açmak için tekrar deneyin"
#~ msgid " Command: "
#~ msgstr " Komut: "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment