1/***************************************************************************
2 whatthis.h - description
3 -------------------
4 begin : fri 12 march CEST 2004
5 copyright : (C) 2004 Emiliano Gulmini
6 email : <emi_barbarossa@yahoo.it>
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef WHATTHIS_H
18#define WHATTHIS_H
19
20// QT
21#include <qstring.h>
22
23// KDE
24#include <klocale.h>
25
26namespace whatthisNameSpace
27{
28 //KFileReplaceView messages
29 const QString lvResultWhatthis = i18n("Shows the statistics of your operations. Note that the columns content changes depending on what kind of operation you are performing.");
30
31 const QString lvStringsWhatthis = i18n("Shows a list of strings to search for (and if you specified it, a list of strings to replace with). Use the \"add strings\" dialog to edit your string list or double click on a string.");
32
33 //KNewProjectDlg messages
34 const QString cbLocationWhatthis = i18n("Base folder for operations of search/replace. Insert path string here by hand or use the search button.");
35
36 const QString cbFilterWhatthis = i18n("Shell-like wildcards. Example: \"*.html;*.txt;*.xml\".");
37
38 const QString edSizeMinWhatthis = i18n("Insert the minimum file size you want to search, or leave it unchecked if you do not want a minimum size limit.");
39
40 const QString edSizeMaxWhatthis = i18n("Insert the maximum file size you want to search, or leave it unchecked if you do not want a maximum size limit.");
41
42 const QString edDateMinWhatthis = i18n("Insert the minimum value for file access date that you want to search, or leave it unchecked if you do not want a minimum limit.");
43
44 const QString edDateMaxWhatthis = i18n("Insert the maximum value for file access date that you want to search, or leave it unchecked if you do not want a maximum limit.");
45
46 const QString cbDateValidWhatthis = i18n("Select \"writing\" if you want to use the date of the last modification, or \"reading\" to use the date of the last access.");
47
48 const QString chbDateMinWhatthis = i18n("Minimum value for access date.");
49
50 const QString chbDateMaxWhatthis = i18n("Maximum value for access date.");
51
52 const QString leSearchWhatthis = i18n("Insert here the string to search for.");
53
54 const QString leReplaceWhatthis = i18n("Insert here the string to replace with.");
55
56 //KOptionsDlg messages
57 const QString chbCaseSensitiveWhatthis = i18n("Enable this option if your search is case sensitive.");
58
59 const QString chbRecursiveWhatthis = i18n("Enable this option to search in sub folders too.");
60
61 const QString chbHaltOnFirstOccurrenceWhatthis = i18n("Enable this option when you are searching for a string and you are only interested to know if the string is present or not in the current file.");
62
63 const QString chbIgnoreWhitespacesWhatthis ="";
64
65 const QString chbFollowSymLinksWhatthis = i18n("If set, then if kfilereplace encounters a symbolic link it treats it like a normal folder or file.");
66
67 const QString chbIgnoreHiddenWhatthis = i18n("Enable this option to ignore hidden files or folders.");
68
69 const QString chbIgnoreFilesWhatthis = i18n("If this option is enabled, KFR will show even the names of the files in which no string has been found or replaced.");
70
71 const QString chbRegularExpressionsWhatthis = i18n("Allows you to apply Qt-like regular expressions on the search string. Note that a complex regular expression could affect speed performance.");
72
73 const QString chbVariablesWhatthis = i18n("Enable \"commands\". For example: if search string is \"user\" and replace string is the command \"[$user:uid$]\", KFR will substitute \"user\" with the uid of the user.");
74
75 const QString chbBackupWhatthis = i18n("Enable this option if you want leave original files untouched.");
76
77 const QString chbConfirmStringsWhatthis = i18n("Enable this option if you want to be asked for single string replacement confirmation.");
78
79 //KFileReplacePart
80 const QString fileSimulateWhatthis = i18n("Enable this option to perform replacing as a simulation, i.e. without making any changes to files.");
81
82 const QString optionsRegularExpressionsWhatthis = chbRegularExpressionsWhatthis;
83
84 const QString optionsBackupWhatthis = chbBackupWhatthis;
85
86 const QString optionsCaseWhatthis = chbCaseSensitiveWhatthis;
87
88 const QString optionsVarWhatthis = chbVariablesWhatthis;
89
90 const QString optionsRecursiveWhatthis = chbRecursiveWhatthis;
91
92 //KAddStringDlg
93 const QString rbSearchOnlyWhatthis = i18n("Select search-only mode.");
94
95 const QString rbSearchReplaceWhatthis = i18n("Select search-and-replace mode.");
96
97 const QString edSearchWhatthis = i18n("Insert here a string you want search for.");
98
99 const QString edReplaceWhatthis = i18n("Insert here the string that KFR will use to replace the search string.");
100}
101#endif
102