xref: /haiku/src/apps/terminal/TermConst.cpp (revision 23d878482ed22e55dad6d1fca1df7bea42eb157c)
1 /*
2  * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "TermConst.h"
8 
9 #include <Catalog.h>
10 
11 
12 #undef B_TRANSLATION_CONTEXT
13 #define B_TRANSLATION_CONTEXT "Terminal ToolTips"
14 
15 
16 const char* const kTooTipSetTabTitlePlaceholders = B_TRANSLATE(
17 	"\t%d\t-\tThe current working directory of the active process.\n"
18 	"\t\t\tOptionally the maximum number of path components can be\n"
19 	"\t\t\tspecified. E.g. '%2d' for at most two components.\n"
20 	"\t%i\t-\tThe index of the tab.\n"
21 	"\t%p\t-\tThe name of the active process.\n"
22 	"\t%%\t-\tThe character '%'.");
23 
24 const char* const kTooTipSetWindowTitlePlaceholders = B_TRANSLATE(
25 	"\t%d\t-\tThe current working directory of the active process in the\n"
26 	"\t\t\tcurrent tab. Optionally the maximum number of path components\n"
27 	"\t\t\tcan be specified. E.g. '%2d' for at most two components.\n"
28 	"\t%i\t-\tThe index of the window.\n"
29 	"\t%p\t-\tThe name of the active process in the current tab.\n"
30 	"\t%t\t-\tThe title of the current tab.\n"
31 	"\t%%\t-\tThe character '%'.");
32