1 /*
2  * Copyright (C) 2007-2009 David Robillard <d@drobilla.net>
3  * Copyright (C) 2007 Tim Mayberry <mojofunk@gmail.com>
4  * Copyright (C) 2008-2016 Paul Davis <paul@linuxaudiosystems.com>
5  * Copyright (C) 2013-2018 Robin Gareus <robin@gareus.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #include "ardour/directory_names.h"
23 
24 #include "pbd/i18n.h"
25 
26 namespace ARDOUR {
27 
28 const char* const old_sound_dir_name = X_("sounds");
29 const char* const sound_dir_name = X_("audiofiles");
30 const char* const midi_dir_name = X_("midifiles");
31 const char* const midi_patch_dir_name = X_("patchfiles");
32 const char* const video_dir_name = X_("videofiles");
33 const char* const peak_dir_name = X_("peaks");
34 const char* const dead_dir_name = X_("dead");
35 const char* const interchange_dir_name = X_("interchange");
36 const char* const export_dir_name = X_("export");
37 const char* const backup_dir_name = X_("backup");
38 const char* const export_formats_dir_name = X_("export");
39 const char* const templates_dir_name = X_("templates");
40 const char* const plugin_metadata_dir_name = X_("plugin_metadata");
41 const char* const route_templates_dir_name = X_("route_templates");
42 const char* const surfaces_dir_name = X_("surfaces");
43 const char* const ladspa_dir_name = X_("ladspa");
44 const char* const theme_dir_name = X_("themes");
45 const char* const panner_dir_name = X_("panners");
46 const char* const backend_dir_name = X_("backends");
47 const char* const automation_dir_name = X_("automation");
48 const char* const analysis_dir_name = X_("analysis");
49 const char* const plugins_dir_name = X_("plugins");
50 const char* const externals_dir_name = X_("externals");
51 const char* const lua_dir_name = X_("scripts");
52 
53 }
54