##// END OF EJS Templates
i18n: fix typo
marcink -
r2147:d5d92585 default
parent child Browse files
Show More
@@ -1,30 +1,30 b''
1 # Copyright (C) 2016-2017 RhodeCode GmbH
1 # Copyright (C) 2016-2017 RhodeCode GmbH
2 #
2 #
3 # This program is free software: you can redistribute it and/or modify
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU Affero General Public License, version 3
4 # it under the terms of the GNU Affero General Public License, version 3
5 # (only), as published by the Free Software Foundation.
5 # (only), as published by the Free Software Foundation.
6 #
6 #
7 # This program is distributed in the hope that it will be useful,
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
10 # GNU General Public License for more details.
11 #
11 #
12 # You should have received a copy of the GNU Affero General Public License
12 # You should have received a copy of the GNU Affero General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #
14 #
15 # This program is dual-licensed. If you wish to learn more about the
15 # This program is dual-licensed. If you wish to learn more about the
16 # RhodeCode Enterprise Edition, including its added features, Support services,
16 # RhodeCode Enterprise Edition, including its added features, Support services,
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
18
18
19
19
20 from rhodecode.events.base import RhodecodeEvent
20 from rhodecode.events.base import RhodecodeEvent
21 from rhodecode.translation import _
21 from rhodecode.translation import _
22
22
23
23
24 class ModDavSvnConfigChange(RhodecodeEvent):
24 class ModDavSvnConfigChange(RhodecodeEvent):
25 """
25 """
26 This event will be triggered on every change of the mod dav svn
26 This event will be triggered on every change of the mod dav svn
27 configuration.
27 configuration.
28 """
28 """
29 name = 'mod-dav-svn-config-change'
29 name = 'mod-dav-svn-config-change'
30 display_name = _('Configuration for Apaache mad_dav_svn changed.')
30 display_name = _('Configuration for Apache mad_dav_svn changed.')
General Comments 0
You need to be logged in to leave comments. Login now