diff options
Diffstat (limited to 'kcontrol/filetypes')
-rw-r--r-- | kcontrol/filetypes/CMakeLists.txt | 5 | ||||
-rw-r--r-- | kcontrol/filetypes/control.cpp | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/filegroupdetails.cpp | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/filegroupdetails.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/filetypedetails.cpp | 26 | ||||
-rw-r--r-- | kcontrol/filetypes/filetypedetails.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/filetypes.desktop | 219 | ||||
-rw-r--r-- | kcontrol/filetypes/filetypesview.cpp | 40 | ||||
-rw-r--r-- | kcontrol/filetypes/filetypesview.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/keditfiletype.cpp | 10 | ||||
-rw-r--r-- | kcontrol/filetypes/keditfiletype.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/kservicelistwidget.cpp | 16 | ||||
-rw-r--r-- | kcontrol/filetypes/kservicelistwidget.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/kserviceselectdlg.cpp | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/kserviceselectdlg.h | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/newtypedlg.cpp | 2 | ||||
-rw-r--r-- | kcontrol/filetypes/typeslistitem.cpp | 4 |
17 files changed, 62 insertions, 278 deletions
diff --git a/kcontrol/filetypes/CMakeLists.txt b/kcontrol/filetypes/CMakeLists.txt index c906287d8..4352056fd 100644 --- a/kcontrol/filetypes/CMakeLists.txt +++ b/kcontrol/filetypes/CMakeLists.txt @@ -21,7 +21,10 @@ link_directories( ##### other data ################################ -install( FILES filetypes.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +tde_create_translated_desktop( + SOURCE filetypes.desktop + PO_DIR kcontrol-desktops +) ##### kcm_filetypes (module) #################### diff --git a/kcontrol/filetypes/control.cpp b/kcontrol/filetypes/control.cpp index 5a0fd097b..ef46b8b8b 100644 --- a/kcontrol/filetypes/control.cpp +++ b/kcontrol/filetypes/control.cpp @@ -2,7 +2,7 @@ extern "C" { - KDE_EXPORT TDECModule *create_filetypes(TQWidget *parent, const char *) + TDE_EXPORT TDECModule *create_filetypes(TQWidget *parent, const char *) { return new FileTypesView(parent, "filetypes"); } diff --git a/kcontrol/filetypes/filegroupdetails.cpp b/kcontrol/filetypes/filegroupdetails.cpp index 7000a97e5..e9cb1fbf9 100644 --- a/kcontrol/filetypes/filegroupdetails.cpp +++ b/kcontrol/filetypes/filegroupdetails.cpp @@ -37,7 +37,7 @@ FileGroupDetails::FileGroupDetails(TQWidget *parent, const char *name ) // The order of those two items is very important. If you change it, fix typeslistitem.cpp ! new TQRadioButton( i18n("Show file in embedded viewer"), m_autoEmbed ); new TQRadioButton( i18n("Show file in separate viewer"), m_autoEmbed ); - connect(m_autoEmbed, TQT_SIGNAL( clicked( int ) ), TQT_SLOT( slotAutoEmbedClicked( int ) )); + connect(m_autoEmbed, TQ_SIGNAL( clicked( int ) ), TQ_SLOT( slotAutoEmbedClicked( int ) )); TQWhatsThis::add( m_autoEmbed, i18n("Here you can configure what the Konqueror file manager" " will do when you click on a file belonging to this group. Konqueror can display the file in" diff --git a/kcontrol/filetypes/filegroupdetails.h b/kcontrol/filetypes/filegroupdetails.h index 6563c5ed1..e5eb2d225 100644 --- a/kcontrol/filetypes/filegroupdetails.h +++ b/kcontrol/filetypes/filegroupdetails.h @@ -28,7 +28,7 @@ class TQButtonGroup; */ class FileGroupDetails : public TQWidget { - Q_OBJECT + TQ_OBJECT public: FileGroupDetails(TQWidget *parent = 0, const char *name = 0); diff --git a/kcontrol/filetypes/filetypedetails.cpp b/kcontrol/filetypes/filetypedetails.cpp index c4f3ce7bb..7928cef73 100644 --- a/kcontrol/filetypes/filetypedetails.cpp +++ b/kcontrol/filetypes/filetypedetails.cpp @@ -30,7 +30,7 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) iconButton = new TDEIconButton(firstWidget); iconButton->setIconType(TDEIcon::Desktop, TDEIcon::MimeType); - connect(iconButton, TQT_SIGNAL(iconChanged(TQString)), TQT_SLOT(updateIcon(TQString))); + connect(iconButton, TQ_SIGNAL(iconChanged(TQString)), TQ_SLOT(updateIcon(TQString))); iconButton->setFixedSize(70, 70); hBox->addWidget(iconButton); @@ -46,7 +46,7 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) grid->addRowSpacing(0, fontMetrics().lineSpacing()); extensionLB = new TQListBox(gb); - connect(extensionLB, TQT_SIGNAL(highlighted(int)), TQT_SLOT(enableExtButtons(int))); + connect(extensionLB, TQ_SIGNAL(highlighted(int)), TQ_SLOT(enableExtButtons(int))); grid->addMultiCellWidget(extensionLB, 1, 2, 0, 0); grid->setRowStretch(0, 0); grid->setRowStretch(1, 1); @@ -59,16 +59,16 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) addExtButton = new TQPushButton(i18n("Add..."), gb); addExtButton->setEnabled(false); - connect(addExtButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(addExtension())); + connect(addExtButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(addExtension())); grid->addWidget(addExtButton, 1, 1); TQWhatsThis::add( addExtButton, i18n("Add a new pattern for the selected file type.") ); removeExtButton = new TQPushButton(i18n("Remove"), gb); removeExtButton->setEnabled(false); - connect(removeExtButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(removeExtension())); + connect(removeExtButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(removeExtension())); grid->addWidget(removeExtButton, 2, 1); TQWhatsThis::add( removeExtButton, i18n("Remove the selected filename pattern.") ); @@ -76,10 +76,10 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) gb = new TQGroupBox(i18n("Description"), firstWidget); firstLayout->addWidget(gb); - gb->setColumnLayout(1, Qt::Horizontal); + gb->setColumnLayout(1, TQt::Horizontal); description = new KLineEdit(gb); - connect(description, TQT_SIGNAL(textChanged(const TQString &)), - TQT_SLOT(updateDescription(const TQString &))); + connect(description, TQ_SIGNAL(textChanged(const TQString &)), + TQ_SLOT(updateDescription(const TQString &))); wtstr = i18n("You can enter a short description for files of the selected" " file type (e.g. 'HTML Page'). This description will be used by applications" @@ -88,7 +88,7 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) TQWhatsThis::add( description, wtstr ); serviceListWidget = new KServiceListWidget( KServiceListWidget::SERVICELIST_APPLICATIONS, firstWidget ); - connect( serviceListWidget, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + connect( serviceListWidget, TQ_SIGNAL(changed(bool)), this, TQ_SIGNAL(changed(bool))); firstLayout->addWidget(serviceListWidget, 5); // Second tab - Embedding @@ -106,10 +106,10 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) new TQRadioButton( i18n("Show file in embedded viewer"), m_autoEmbed ); new TQRadioButton( i18n("Show file in separate viewer"), m_autoEmbed ); m_rbGroupSettings = new TQRadioButton( i18n("Use settings for '%1' group"), m_autoEmbed ); - connect(m_autoEmbed, TQT_SIGNAL( clicked( int ) ), TQT_SLOT( slotAutoEmbedClicked( int ) )); + connect(m_autoEmbed, TQ_SIGNAL( clicked( int ) ), TQ_SLOT( slotAutoEmbedClicked( int ) )); m_chkAskSave = new TQCheckBox( i18n("Ask whether to save to disk instead"), m_autoEmbed); - connect(m_chkAskSave, TQT_SIGNAL( toggled(bool) ), TQT_SLOT( slotAskSaveToggled(bool) )); + connect(m_chkAskSave, TQ_SIGNAL( toggled(bool) ), TQ_SLOT( slotAskSaveToggled(bool) )); TQWhatsThis::add( m_autoEmbed, i18n("Here you can configure what the Konqueror file manager" " will do when you click on a file of this type. Konqueror can display the file in" @@ -121,7 +121,7 @@ FileTypeDetails::FileTypeDetails( TQWidget * parent, const char * name ) embedServiceListWidget = new KServiceListWidget( KServiceListWidget::SERVICELIST_SERVICES, secondWidget ); embedServiceListWidget->setMinimumHeight( serviceListWidget->sizeHint().height() ); - connect( embedServiceListWidget, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + connect( embedServiceListWidget, TQ_SIGNAL(changed(bool)), this, TQ_SIGNAL(changed(bool))); secondLayout->addWidget(embedServiceListWidget, 3); addTab( firstWidget, i18n("&General") ); diff --git a/kcontrol/filetypes/filetypedetails.h b/kcontrol/filetypes/filetypedetails.h index 936e1c535..23c8c63b6 100644 --- a/kcontrol/filetypes/filetypedetails.h +++ b/kcontrol/filetypes/filetypedetails.h @@ -20,7 +20,7 @@ class KServiceListWidget; */ class FileTypeDetails : public TQTabWidget { - Q_OBJECT + TQ_OBJECT public: FileTypeDetails(TQWidget *parent = 0, const char *name = 0); diff --git a/kcontrol/filetypes/filetypes.desktop b/kcontrol/filetypes/filetypes.desktop index 7903c3616..baab8210d 100644 --- a/kcontrol/filetypes/filetypes.desktop +++ b/kcontrol/filetypes/filetypes.desktop @@ -10,226 +10,7 @@ X-TDE-Library=filetypes X-TDE-ParentApp=kcontrol Name=File Associations -Name[af]=Lêer Assosiasies -Name[ar]=ارتباطات الملفات -Name[az]=Fayl Əlaqələri -Name[be]=Асацыяцыі файлаў -Name[bg]=Файлови асоциации -Name[bn]=ফাইল অ্যাসোসিয়েশন -Name[br]=Kevreañ restroù -Name[bs]=Asociranje datoteka -Name[ca]=Associacions de fitxers -Name[cs]=Asociace souborů -Name[csb]=Pòwiązania lopków -Name[cy]=Cysylltiadau Ffeiliau -Name[da]=Filassociationer -Name[de]=Dateizuordnungen -Name[el]=Συσχετίσεις αρχείων -Name[eo]=Dosiertipoj -Name[es]=Asociaciones de archivo -Name[et]=Failide seosed -Name[eu]=Fitxategi elkarketak -Name[fa]=انجمنهای پرونده -Name[fi]=Tiedostosidokset -Name[fr]=Associations de fichiers -Name[fy]=Triemassosjaasjes -Name[gl]=Asociacións de Ficheiros -Name[he]=שיוכי קבצים -Name[hi]=फ़ाइल असोसिएशन -Name[hr]=Pridruživanja datoteka -Name[hu]=Fájltársítások -Name[id]=Asosiasi File -Name[is]=Skráavensl -Name[it]=Associazioni file -Name[ja]=ファイルの関連付け -Name[ka]=ფაილთა მიბმა -Name[kk]=Файл сәйкестіктері -Name[km]=ទំនាក់ទំនងឯកសារ -Name[ko]=파일 연결 -Name[lo]=ການກຳນົດໃຊ້ແຟ້ມ -Name[lt]=Bylų asociacijos -Name[lv]=Failu Asociācijas -Name[mk]=Асоцијации на датотеки -Name[mn]=Файл холбоосууд -Name[mt]=Assoċjazzjonijiet tal-Fajls -Name[nb]=Filtilknytninger -Name[nds]=Datei-Toornen -Name[ne]=फाइल संयोजन -Name[nl]=Bestandsassociaties -Name[nn]=Filtilknytingar -Name[nso]=Dikopantsho tsa Difaele -Name[oc]=Associacions de fiquièrs -Name[pa]=ਫਾਇਲ ਸਬੰਧ -Name[pl]=Skojarzenia plików -Name[pt]=Associação de Ficheiros -Name[pt_BR]=Associações de arquivos -Name[ro]=Asociere fișiere -Name[ru]=Привязки файлов -Name[rw]=Ishyirahamwe ry'Idosiye -Name[se]=Fiilačatnagasat -Name[sk]=Asociácie súborov -Name[sl]=Datotečne povezave -Name[sr]=Придружења фајловима -Name[sr@Latn]=Pridruženja fajlovima -Name[sv]=Filbindningar -Name[ta]=கோப்பு ஒருங்கமைப்புகள் -Name[tg]=Вобастагонии Файл -Name[th]=กำหนดการใช้แฟ้ม -Name[tr]=Dosya İlişkileri -Name[tt]=Kiremnär Kileşterü -Name[uk]=Асоціації файлів -Name[uz]=Fayl turi bilan\nbogʻliqlar -Name[uz@cyrillic]=Файл тури билан\nбоғлиқлар -Name[ven]=U fanyisa faela -Name[vi]=Kiểu tập tin -Name[wa]=Elaxhaedjes di fitchîs -Name[xh]=Uyelemaniso Lwefayile -Name[zh_CN]=文件关联 -Name[zh_TW]=檔案關聯 -Name[zu]=Ubudlelwano befayela Comment=Configure file associations -Comment[af]=Konfigureer lêer assosiasies -Comment[ar]=إعداد إرتباطات الملفات -Comment[az]=Fayl əlaqələrini quraşdır -Comment[be]=Настаўленні асацыяцыяў файлаў -Comment[bg]=Настройване и асоцииране на файлови типове с програми -Comment[bn]=ফাইল অ্যাসোসিয়েশন কনফিগার করুন -Comment[br]=Kefluniañ kevreañ restroù -Comment[bs]=Podesite asocijacije datoteka -Comment[ca]=Configura les associacions de fitxers -Comment[cs]=Nastavení asociací souborů -Comment[csb]=Konfigùracëjô pòwiązaniów lopków -Comment[cy]=Ffurfweddu cysylltiadau ffeiliau -Comment[da]=Indstil filassociationer -Comment[de]=Dateizuordnungen vornehmen -Comment[el]=Ρύθμιση των συσχετίσεων αρχείων -Comment[eo]=Agordu de ligo de programoj al dosiertipoj -Comment[es]=Configuración de asociaciones de archivos -Comment[et]=Failide seoste seadistamine -Comment[eu]=Fitxategi elkarketak konfiguratzen ditu -Comment[fa]=پیکربندی انجمنهای پرونده -Comment[fi]=Tiedostosidokset -Comment[fr]=Configuration des associations de fichiers -Comment[fy]=Hjir kinne jo de triemassosjaasjes ynstelle -Comment[gl]=Configurar as asociacións de ficheiros -Comment[he]=שינוי הגדרות שיוכי הקבצים -Comment[hi]=फ़ाइल असोसिएशन कॉन्फ़िगर करें -Comment[hr]=Konfiguriranje pridruživanja datoteka -Comment[hu]=A fájlhozzárendelések módosítása -Comment[is]=Stilla skráavensl -Comment[it]=Configura associazioni dei file -Comment[ja]=ファイルの関連付けを設定 -Comment[ka]=ფაილთა მიბმის კონფიგურირება -Comment[kk]=Файл сәйкестіктерін баптау -Comment[km]=កំណត់រចនាសម្ព័ន្ធទំនាក់ទំនងឯកសារ -Comment[ko]=파일 연결 설정 -Comment[lo]=ບັນທຶກຄ່າປັບແຕ່ງຂອງການເລີ່ມລະບົບ -Comment[lt]=Konfigūruoti bylų sietis -Comment[lv]=Konfigurēt failu asociācijas -Comment[mk]=Конфигурирајте ги асоцијациите на датотеките -Comment[mn]=Файлын холбоосуудыг тохируулах -Comment[mt]=Ikkonfigura assoċjazzjoni ta' fajls -Comment[nb]=Sette opp filtilknytninger -Comment[nds]=Instellen, welk Dateitypen welk Programmen tohöört -Comment[ne]=फाइल संयोजन कन्फिगर गर्नुहोस् -Comment[nl]=Hier kunt u de bestandsassociaties instellen -Comment[nn]=Set opp filassosiasjonar -Comment[nso]=Beakanya dikopantsho tsa difaele -Comment[pa]=ਫਾਇਲ ਸਬੰਧ ਸੰਰਚਨਾ -Comment[pl]=Konfiguracja skojarzeń plików -Comment[pt]=Configuração das associações de ficheiros -Comment[pt_BR]=Configura associações de arquivos -Comment[ro]=Configurează asocierea fișierelor cu aplicații -Comment[ru]=Настройка привязки файлов -Comment[rw]=Kuboneza Ishyirahamwe ry'Idosiye -Comment[se]=Heivet fiilačatnagasaid -Comment[sk]=Nastavenie asociácií súborov -Comment[sl]=Nastavi datotečne povezave -Comment[sr]=Подешавање придружења фајловима -Comment[sr@Latn]=Podešavanje pridruženja fajlovima -Comment[sv]=Anpassa filbindningar -Comment[ta]=ஒருங்கிணைப்புகளை வடிவமை -Comment[tg]=Танзими вобастагони Файл -Comment[th]=ปรับแต่งการเรียกใช้งานแฟ้ม -Comment[tr]=Dosya bağıntılarını yapılandır -Comment[tt]=Biremnärne yazılımnarğa totaştırıp kileşterü -Comment[uk]=Налаштування асоціацій файлів -Comment[uz]=Fayl turi bilan bogʻliqlarni moslash -Comment[uz@cyrillic]=Файл тури билан боғлиқларни мослаш -Comment[ven]=Nzudzanyo yau fanyisa ha faela -Comment[vi]=Cấu hình kiểu tập tin -Comment[wa]=Apontiaedjes des elaxhaedjes di fitchîs -Comment[xh]=Qwalasela uloyamiso lwefayile -Comment[zh_CN]=配置文件关联 -Comment[zh_TW]=設定檔案關聯 -Comment[zu]=Hlanganisela ubudlelwano befayela Keywords=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern; -Keywords[ar]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;ملفات;أنواع الملفات; أنواع Mime;ارتباطات الملفات;ملفات;الملفات;نسق;الأنساق;النسق.; -Keywords[az]=Fayl Növləri;Fayl Əlaqələri;Mime Növləri;Fayl Qəlibləri;Fayllar; -Keywords[be]=Тыпы файлаў;асацыяцыі файлаў;сувязі файлаў;тыпы MIME;шаблоны файлаў;файлы;шаблон;Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern; -Keywords[bg]=файл; файлове; асоциация; асоциации; връзки; изпълнение; връзка; програма; тип на файл; тип; Filetypes; File Associations; Mime Types; File Patterns; Files; Pattern; -Keywords[ca]=Tipus de fitxer;Associacions de fitxers;Tipus Mime;Patrons de fitxer;Fitxers;Patró; -Keywords[cs]=Typy souborů;Asociace souborů;MIME typy;Vzory souborů;Soubory;Vzor; -Keywords[csb]=ôrt lopków;pòwiązania lopków;ôrtë MIME;mùster lopków;lopczi;mùster; -Keywords[cy]=Mathau o Ffeiliau;Cysylltiadau Ffeil;Mathau o Mime;Patrymau Ffeil;Ffeiliau;Patrwm; -Keywords[da]=Filtyper;Filassociationer;Mimetyper;Filmønstre;Filer;mønstre; -Keywords[de]=Dateitypen;Dateizuordnungen;MIME-Typen;Dateimuster;Filter;Muster;Dateien; -Keywords[el]=Τύποι αρχείων;Συσχετίσεις αρχείων;Τύποι mime;Μοτίβα αρχείων;Αρχεία;Μοτίβο; -Keywords[eo]=dosiertipoj;asocioj;MIME;dosieroj;ŝablonoj;dosieroj;MIME-tipoj; -Keywords[es]=Tipos de archivo;Asociaciones de archivo;Tipos MIME;Patrones de archivo;Archivos;Patrón; -Keywords[et]=Failitüübid;Failide seosed;MIME tüübid;failimustrid;failid;mustrid; -Keywords[eu]=Fitxategi motak;Fitxategi elkarketak;Mime motak; Fitxategi ereduak;Fitxategiak;Eredua; -Keywords[fa]=انواع پرونده، انجمنهای پرونده، انواع مایم، الگوهای پرونده، پروندهها، الگو; -Keywords[fi]=Tiedostotyypit;Tiedostosidokset;Mimetyypit;Tiedostokuviot;Tiedostot;Kuvio; -Keywords[fo]=fíla;fílir;fíluslag; -Keywords[fr]=types de fichiers;associations de fichiers;types MIME;motifs de fichier;fichiers;motif;extension;extensions de fichiers;applications; -Keywords[fy]=Triemtypen;Triemtaheaksels;Triemassosjaasjes;mime types;Triempatroanen;Taheaksels;Triemmen; -Keywords[gl]=Tipos de ficheiro; Asociacións de ficheiro;Tipos Mime;Patróns de ficheiro;Ficheiros;Patrón; -Keywords[he]=תבניות קבצים;קבצים;תבנית;סוגי קבצים;שיוכי קבצים;טיפוסי;Mime;Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern; -Keywords[hi]=फ़ाइल क़िस्म;फ़ाइल असोसिएशन;माइम क़िस्म;फ़ाइल पैटर्न;फ़ाइलें;पैटर्न; -Keywords[hr]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;Vrste datoteka;Pridruživanje datoteka;MIME vrste;Uzorci datoteka;datoteke;uzorci; -Keywords[hu]=fájltípusok;fájlhozzárendelések;MIME-típusok;fájlminták;fájlok;minta; -Keywords[id]=TipeFile;Asosiasi File;Mime Types;Pattern File;Files;Pattern; -Keywords[is]=Skráartegund;Skráavensl;Samhengi skráa;skráarbindingar;Mime-tög;síur;skrár;mynstur; -Keywords[it]=tipi di file;associazioni file;tipi MIME;MIME;pattern dei file;file;motivi dei file;schemi; -Keywords[ja]=ファイルタイプ;ファイルの関連付け;マイムタイプ;ファイルパターン;ファイル;パターン; -Keywords[km]=ប្រភេទឯកសារ;ទំនាក់ទំនងឯកសារ;ប្រភេទ Mime;លំនាំឯកសារ;ឯកសារ;លំនាំ; -Keywords[lt]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;Bylų tipai;Bylų Asociacijos;Mime Tipai;Bylų modeliai;Bylos;Modeliai; bylų sietys; -Keywords[lv]=Failutipi;Failu Asociācijas;Maime Tipi;Failu Maskas;Faili;Maskas; -Keywords[mk]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;Типови на датотеки;Асоцијации на датотеки;типови;Датотеки; -Keywords[mn]=Файлын төрөл;Файлын холбоос;MIME-төрөл;Файл загвар;Шүүлтүүр;Загвар;Файлууд; -Keywords[mt]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;Fajls;Assoċjazzjoni;Assoċjazzjonijiet; -Keywords[nb]=Filtyper;Filtilknytninger;Mime-typer;Filmønster;filer; -Keywords[nds]=Dateitypen;Datei-Tohören;Mime Typen;Dateimuster;Datei;Muster; -Keywords[ne]=फाइल प्रकार; फाइल संयोजन; माइम प्रकार; फाइल बाँन्की; फाइलहरू; बाँन्की; -Keywords[nl]=bestandstypen;bestandsextensies;bestandsassociaties;mime types;bestandspatronen;extensies;bestanden; -Keywords[nn]=filtypar;filtilknytingar;MIME-typar;filmønster;filer;mønster; -Keywords[nso]=Mehuta ya difaele;Dikopantsho tsa Difaele;Mehuta ya Kekiso;Mekgwa ya Difaele;Difaele;Mokgwa; -Keywords[pa]=Filetypes;File Associations;Mime Types;File Patterns;ਫਾਇਲਾਂ;Pattern;ਫਾਇਲ ਕਿਸਮ;ਫਾਇਲ ਸਬੰਧ; -Keywords[pl]=Typy plików;skojarzenia plików;typy MIME;wzorce plików;pliki;wzorzec; -Keywords[pt]=tipos de ficheiros;associações a ficheiros;tipos mime;padrões de ficheiros;ficheiros;padrão; -Keywords[pt_BR]=tipos de arquivo;associações de arquivo;tipos MIME;padrões de arquivo;arquivos;MIME;padrão; -Keywords[ro]=tipuri de fișiere;asocieri fișiere;tipuri MIME;modele de fișiere;fișiere; -Keywords[rw]=Amokodosiye;Amashyirahamwe dosiye;Amoko Mime;Amashusho Dosiye;Amadosiye;Igishushanyo; -Keywords[se]=Fiilašlájat;Fiilačatnagasat;Mime-šlájat;Fiilaminsttar; fiillat;minsttar; -Keywords[sk]=Typy súborov;Prípony;Mime typy;Súbory;Vzorky;Vzorky súborov; -Keywords[sl]=vrste datotek;vezi datotek;vzorci datotek;datoteke;vzorec; -Keywords[sr]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;врсте фајлова;узорци фајлова;узорак;придружење;MIME типови; -Keywords[sr@Latn]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;vrste fajlova;uzorci fajlova;uzorak;pridruženje;MIME tipovi; -Keywords[sv]=Filtyper;Filbindningar;Mime-typer;Filmönster;Filer;Mönster; -Keywords[ta]=கோப்பு வகைகள்;கோப்பு சேர்ப்புகள்; மைம் வகைகள்; கோப்பு மாதிரிகள்;கோப்புகள்;மாதிரிகள்; -Keywords[th]=ประเภทแฟ้ม;กำหนดการใช้แฟ้ม;ประเภท Mime;รูปแบบแฟ้ม;แฟ้ม;รูปแบบ; -Keywords[tr]=Dosya Türleri;Dosya İlişkileri;Mime Türleri;Dosya Kalıpları;Dosyalar; -Keywords[uk]=типи файлів;асоціації файлів;типи MIME;MIME;шаблони файлів;файли;взірці;файли; -Keywords[uz]=Fayl turlari;Fayl bilan bogʻlangan dasturlar;MIME turlari;Fayl namunalari;Fayllar;Namuna; -Keywords[uz@cyrillic]=Файл турлари;Файл билан боғланган дастурлар;MIME турлари;Файл намуналари;Файллар;Намуна; -Keywords[ven]=Tshakha dza faela;U fanyisa ha Faela;Tshakha dza Maimi;Phathene ya Faela;Dzifaela;Phathene; -Keywords[vi]=Kiểu tập tin;Đuôi tập tin;Kiểu MIME;Mẫu tập tin;Tập tin; Mẫu; -Keywords[wa]=Sôre di fitchî;sôrt di fitchî;elaxhaedje di fitchî;Sôre MIME; Sôrt MIME;Modeles di fitchî;Fitchîs;Modele; -Keywords[xh]=Iindidi zefayile;Unxubelelaniso lwefayile;Iindidi zeMime;Imilinganiselo yefayile;Iifayile;Umlinganiselo; -Keywords[zh_CN]=Filetypes;File Associations;Mime Types;File Patterns;Files;文件类型;文件关联;Mime 类型;文件模式;文件; -Keywords[zh_TW]=Filetypes;File Associations;Mime Types;File Patterns;Files;Pattern;檔案類型;檔案關聯;MIME 類型;檔案樣式;檔案;樣式; -Keywords[zu]=Izinhlobo zamafayela; Ubudlelwano bamafayela;Izinhlobo zamafayela;Amaphethini amafayela;Iphethini; - diff --git a/kcontrol/filetypes/filetypesview.cpp b/kcontrol/filetypes/filetypesview.cpp index 58bbbbd09..e414014fe 100644 --- a/kcontrol/filetypes/filetypesview.cpp +++ b/kcontrol/filetypes/filetypesview.cpp @@ -11,12 +11,12 @@ #include <tdeapplication.h> #include <kcursor.h> #include <kdebug.h> -#include <kdesktopfile.h> +#include <tdedesktopfile.h> #include <kipc.h> #include <klineedit.h> #include <tdelistview.h> #include <tdelocale.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include "newtypedlg.h" #include "filetypedetails.h" @@ -57,7 +57,7 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) leftLayout->setSpacing( KDialog::spacingHint() ); leftLayout->setColStretch(1, 1); - l->addLayout( TQT_TQLAYOUT(leftLayout) ); + l->addLayout( leftLayout ); TQLabel *patternFilterLBL = new TQLabel(i18n("F&ind filename pattern:"), this); leftLayout->addMultiCellWidget(patternFilterLBL, 0, 0, 0, 2); @@ -66,8 +66,8 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) patternFilterLBL->setBuddy( patternFilterLE ); leftLayout->addMultiCellWidget(patternFilterLE, 1, 1, 0, 2); - connect(patternFilterLE, TQT_SIGNAL(textChanged(const TQString &)), - this, TQT_SLOT(slotFilter(const TQString &))); + connect(patternFilterLE, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(slotFilter(const TQString &))); wtstr = i18n("Enter a part of a filename pattern. Only file types with a " "matching file pattern will appear in the list."); @@ -81,10 +81,10 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) typesLV->addColumn(i18n("Known Types")); leftLayout->addMultiCellWidget(typesLV, 2, 2, 0, 2); - connect(typesLV, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(updateDisplay(TQListViewItem *))); - connect(typesLV, TQT_SIGNAL(doubleClicked(TQListViewItem *)), - this, TQT_SLOT(slotDoubleClicked(TQListViewItem *))); + connect(typesLV, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(updateDisplay(TQListViewItem *))); + connect(typesLV, TQ_SIGNAL(doubleClicked(TQListViewItem *)), + this, TQ_SLOT(slotDoubleClicked(TQListViewItem *))); TQWhatsThis::add( typesLV, i18n("Here you can see a hierarchical list of" " the file types which are known on your system. Click on the '+' sign" @@ -93,13 +93,13 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) " file type using the controls on the right.") ); TQPushButton *addTypeB = new TQPushButton(i18n("Add..."), this); - connect(addTypeB, TQT_SIGNAL(clicked()), TQT_SLOT(addType())); + connect(addTypeB, TQ_SIGNAL(clicked()), TQ_SLOT(addType())); leftLayout->addWidget(addTypeB, 3, 0); TQWhatsThis::add( addTypeB, i18n("Click here to add a new file type.") ); m_removeTypeB = new TQPushButton(i18n("&Remove"), this); - connect(m_removeTypeB, TQT_SIGNAL(clicked()), TQT_SLOT(removeType())); + connect(m_removeTypeB, TQ_SIGNAL(clicked()), TQ_SLOT(removeType())); leftLayout->addWidget(m_removeTypeB, 3, 2); m_removeTypeB->setEnabled(false); @@ -112,16 +112,16 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) // File Type Details m_details = new FileTypeDetails( m_widgetStack ); - connect( m_details, TQT_SIGNAL( changed(bool) ), - this, TQT_SLOT( setDirty(bool) ) ); - connect( m_details, TQT_SIGNAL( embedMajor(const TQString &, bool &) ), - this, TQT_SLOT( slotEmbedMajor(const TQString &, bool &))); + connect( m_details, TQ_SIGNAL( changed(bool) ), + this, TQ_SLOT( setDirty(bool) ) ); + connect( m_details, TQ_SIGNAL( embedMajor(const TQString &, bool &) ), + this, TQ_SLOT( slotEmbedMajor(const TQString &, bool &))); m_widgetStack->addWidget( m_details, 1 /*id*/ ); // File Group Details m_groupDetails = new FileGroupDetails( m_widgetStack ); - connect( m_groupDetails, TQT_SIGNAL( changed(bool) ), - this, TQT_SLOT( setDirty(bool) ) ); + connect( m_groupDetails, TQ_SIGNAL( changed(bool) ), + this, TQ_SLOT( setDirty(bool) ) ); m_widgetStack->addWidget( m_groupDetails, 2 /*id*/ ); // Widget shown on startup @@ -132,9 +132,9 @@ FileTypesView::FileTypesView(TQWidget *p, const char *name) m_widgetStack->raiseWidget( m_emptyWidget ); - TQTimer::singleShot( 0, this, TQT_SLOT( init() ) ); // this takes some time + TQTimer::singleShot( 0, this, TQ_SLOT( init() ) ); // this takes some time - connect( KSycoca::self(), TQT_SIGNAL( databaseChanged() ), TQT_SLOT( slotDatabaseChanged() ) ); + connect( KSycoca::self(), TQ_SIGNAL( databaseChanged() ), TQ_SLOT( slotDatabaseChanged() ) ); } FileTypesView::~FileTypesView() @@ -362,7 +362,7 @@ bool FileTypesView::sync( TQValueList<TypesListItem *>& itemsModified ) loc = m_ptr->desktopEntryPath(); loc = locateLocal("mime", loc); - KDesktopFile config(loc, false, "mime"); + TDEDesktopFile config(loc, false, "mime"); config.writeEntry("Type", "MimeType"); config.writeEntry("MimeType", m_ptr->name()); config.writeEntry("Hidden", true); diff --git a/kcontrol/filetypes/filetypesview.h b/kcontrol/filetypes/filetypesview.h index 16e7bff3e..2c684ca4c 100644 --- a/kcontrol/filetypes/filetypesview.h +++ b/kcontrol/filetypes/filetypesview.h @@ -23,7 +23,7 @@ class TQWidgetStack; class FileTypesView : public TDECModule { - Q_OBJECT + TQ_OBJECT public: FileTypesView(TQWidget *p = 0, const char *name = 0); ~FileTypesView(); diff --git a/kcontrol/filetypes/keditfiletype.cpp b/kcontrol/filetypes/keditfiletype.cpp index 19aa01a59..b78886ef7 100644 --- a/kcontrol/filetypes/keditfiletype.cpp +++ b/kcontrol/filetypes/keditfiletype.cpp @@ -27,9 +27,9 @@ #include <kdebug.h> #include <tdecmdlineargs.h> #include <tdesycoca.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> -#ifdef Q_WS_X11 +#ifdef TQ_WS_X11 #include <X11/Xlib.h> #include <X11/Xutil.h> #endif @@ -58,11 +58,11 @@ void FileTypeDialog::init( KMimeType::Ptr mime, bool newItem ) // This code is very similar to kcdialog.cpp setMainWidget( m_details ); - connect(m_details, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(clientChanged(bool))); + connect(m_details, TQ_SIGNAL(changed(bool)), this, TQ_SLOT(clientChanged(bool))); // TODO setHelp() enableButton(Apply, false); - connect( KSycoca::self(), TQT_SIGNAL( databaseChanged() ), TQT_SLOT( slotDatabaseChanged() ) ); + connect( KSycoca::self(), TQ_SIGNAL( databaseChanged() ), TQ_SLOT( slotDatabaseChanged() ) ); } void FileTypeDialog::save() @@ -159,7 +159,7 @@ int main(int argc, char ** argv) } FileTypeDialog dlg( mime, createType ); -#if defined Q_WS_X11 +#if defined TQ_WS_X11 if( args->isSet( "parent" )) { bool ok; long id = args->getOption("parent").toLong(&ok); diff --git a/kcontrol/filetypes/keditfiletype.h b/kcontrol/filetypes/keditfiletype.h index 3ae7c0e35..f4abc8d3a 100644 --- a/kcontrol/filetypes/keditfiletype.h +++ b/kcontrol/filetypes/keditfiletype.h @@ -27,7 +27,7 @@ class FileTypeDetails; // A dialog for ONE file type to be edited. class FileTypeDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: FileTypeDialog( KMimeType::Ptr mime ); FileTypeDialog( KMimeType::Ptr mime, bool newItem ); diff --git a/kcontrol/filetypes/kservicelistwidget.cpp b/kcontrol/filetypes/kservicelistwidget.cpp index d0463d7ad..bc8555634 100644 --- a/kcontrol/filetypes/kservicelistwidget.cpp +++ b/kcontrol/filetypes/kservicelistwidget.cpp @@ -35,7 +35,7 @@ #include "kserviceselectdlg.h" #include "typeslistitem.h" #include <kpropertiesdialog.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> KServiceListItem::KServiceListItem( KService *pService, int kind ) : TQListBoxText(), desktopPath(pService->desktopEntryPath()) @@ -74,9 +74,9 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n grid->setRowStretch(6, 1); servicesLB = new TQListBox(gb); - connect(servicesLB, TQT_SIGNAL(highlighted(int)), TQT_SLOT(enableMoveButtons(int))); + connect(servicesLB, TQ_SIGNAL(highlighted(int)), TQ_SLOT(enableMoveButtons(int))); grid->addMultiCellWidget(servicesLB, 1, 6, 0, 0); - connect( servicesLB, TQT_SIGNAL( doubleClicked ( TQListBoxItem * )), this, TQT_SLOT( editService())); + connect( servicesLB, TQ_SIGNAL( doubleClicked ( TQListBoxItem * )), this, TQ_SLOT( editService())); TQString wtstr = (kind == SERVICELIST_APPLICATIONS ? @@ -96,7 +96,7 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n servUpButton = new TQPushButton(i18n("Move &Up"), gb); servUpButton->setEnabled(false); - connect(servUpButton, TQT_SIGNAL(clicked()), TQT_SLOT(promoteService())); + connect(servUpButton, TQ_SIGNAL(clicked()), TQ_SLOT(promoteService())); grid->addWidget(servUpButton, 2, 1); TQWhatsThis::add( servUpButton, kind == SERVICELIST_APPLICATIONS ? @@ -109,7 +109,7 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n servDownButton = new TQPushButton(i18n("Move &Down"), gb); servDownButton->setEnabled(false); - connect(servDownButton, TQT_SIGNAL(clicked()), TQT_SLOT(demoteService())); + connect(servDownButton, TQ_SIGNAL(clicked()), TQ_SLOT(demoteService())); grid->addWidget(servDownButton, 3, 1); TQWhatsThis::add( servDownButton, kind == SERVICELIST_APPLICATIONS ? @@ -122,7 +122,7 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n servNewButton = new TQPushButton(i18n("Add..."), gb); servNewButton->setEnabled(false); - connect(servNewButton, TQT_SIGNAL(clicked()), TQT_SLOT(addService())); + connect(servNewButton, TQ_SIGNAL(clicked()), TQ_SLOT(addService())); grid->addWidget(servNewButton, 1, 1); TQWhatsThis::add( servNewButton, i18n( "Add a new application for this file type." ) ); @@ -130,7 +130,7 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n servEditButton = new TQPushButton(i18n("Edit..."), gb); servEditButton->setEnabled(false); - connect(servEditButton, TQT_SIGNAL(clicked()), TQT_SLOT(editService())); + connect(servEditButton, TQ_SIGNAL(clicked()), TQ_SLOT(editService())); grid->addWidget(servEditButton, 4, 1); TQWhatsThis::add( servEditButton, i18n( "Edit command line of the selected application." ) ); @@ -138,7 +138,7 @@ KServiceListWidget::KServiceListWidget(int kind, TQWidget *parent, const char *n servRemoveButton = new TQPushButton(i18n("Remove"), gb); servRemoveButton->setEnabled(false); - connect(servRemoveButton, TQT_SIGNAL(clicked()), TQT_SLOT(removeService())); + connect(servRemoveButton, TQ_SIGNAL(clicked()), TQ_SLOT(removeService())); grid->addWidget(servRemoveButton, 5, 1); TQWhatsThis::add( servRemoveButton, i18n( "Remove the selected application from the list." ) ); diff --git a/kcontrol/filetypes/kservicelistwidget.h b/kcontrol/filetypes/kservicelistwidget.h index 0e4a3e3a3..5c16fa07f 100644 --- a/kcontrol/filetypes/kservicelistwidget.h +++ b/kcontrol/filetypes/kservicelistwidget.h @@ -45,7 +45,7 @@ public: */ class KServiceListWidget : public TQGroupBox { - Q_OBJECT + TQ_OBJECT public: enum { SERVICELIST_APPLICATIONS, SERVICELIST_SERVICES }; KServiceListWidget(int kind, TQWidget *parent = 0, const char *name = 0); diff --git a/kcontrol/filetypes/kserviceselectdlg.cpp b/kcontrol/filetypes/kserviceselectdlg.cpp index f8c4f0dd4..e9618683d 100644 --- a/kcontrol/filetypes/kserviceselectdlg.cpp +++ b/kcontrol/filetypes/kserviceselectdlg.cpp @@ -50,7 +50,7 @@ KServiceSelectDlg::KServiceSelectDlg( const TQString& /*serviceType*/, const TQS m_listbox->sort(); m_listbox->setMinimumHeight(350); m_listbox->setMinimumWidth(300); - connect(m_listbox,TQT_SIGNAL(doubleClicked ( TQListBoxItem * )),TQT_SLOT(slotOk())); + connect(m_listbox,TQ_SIGNAL(doubleClicked ( TQListBoxItem * )),TQ_SLOT(slotOk())); setMainWidget(vbox); } diff --git a/kcontrol/filetypes/kserviceselectdlg.h b/kcontrol/filetypes/kserviceselectdlg.h index 3b3ea87e7..3365fbffe 100644 --- a/kcontrol/filetypes/kserviceselectdlg.h +++ b/kcontrol/filetypes/kserviceselectdlg.h @@ -23,7 +23,7 @@ class KServiceSelectDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: /** * Create a dialog to select a service (not application) for a given service type. diff --git a/kcontrol/filetypes/newtypedlg.cpp b/kcontrol/filetypes/newtypedlg.cpp index dbb37344c..e2a9b28a7 100644 --- a/kcontrol/filetypes/newtypedlg.cpp +++ b/kcontrol/filetypes/newtypedlg.cpp @@ -19,7 +19,7 @@ NewTypeDialog::NewTypeDialog(TQStringList groups, TQGridLayout *grid = new TQGridLayout(2, 2); grid->setColStretch(1, 1); - topl->addLayout(TQT_TQLAYOUT(grid)); + topl->addLayout(grid); TQLabel *l = new TQLabel(i18n("Group:"), main); grid->addWidget(l, 0, 0); diff --git a/kcontrol/filetypes/typeslistitem.cpp b/kcontrol/filetypes/typeslistitem.cpp index 63d65e4ec..1c5d8b6f7 100644 --- a/kcontrol/filetypes/typeslistitem.cpp +++ b/kcontrol/filetypes/typeslistitem.cpp @@ -20,8 +20,8 @@ #include <tdeconfig.h> #include <kdebug.h> #include <kiconloader.h> -#include <kstandarddirs.h> -#include <kdesktopfile.h> +#include <tdestandarddirs.h> +#include <tdedesktopfile.h> #include <kstaticdeleter.h> #include "typeslistitem.h" |