about summary refs log tree commit diff stats
path: root/wiki/lib/plugins/authpdo/lang/en
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/lib/plugins/authpdo/lang/en')
-rw-r--r--wiki/lib/plugins/authpdo/lang/en/lang.php12
-rw-r--r--wiki/lib/plugins/authpdo/lang/en/settings.php25
2 files changed, 0 insertions, 37 deletions
diff --git a/wiki/lib/plugins/authpdo/lang/en/lang.php b/wiki/lib/plugins/authpdo/lang/en/lang.php
deleted file mode 100644
index 3e1482e..0000000
--- a/wiki/lib/plugins/authpdo/lang/en/lang.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-/**
- * English language file for authpdo plugin
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
- *
- */
-
-$lang['connectfail']    = 'Failed to connect to database.';
-$lang['userexists']     = 'Sorry, a user with this login already exists.';
-$lang['writefail']      = 'Unable to modify user data. Please inform the Wiki-Admin';
-
-//Setup VIM: ex: et ts=4 :
diff --git a/wiki/lib/plugins/authpdo/lang/en/settings.php b/wiki/lib/plugins/authpdo/lang/en/settings.php
deleted file mode 100644
index 1aaaec0..0000000
--- a/wiki/lib/plugins/authpdo/lang/en/settings.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-/**
- * english language file for authpdo plugin
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-
-$lang['debug']              = 'Print out detailed error messages. Should be disabled after setup.';
-$lang['dsn']                = 'The DSN to connect to the database.';
-$lang['user']               = 'The user for the above database connection (empty for sqlite)';
-$lang['pass']               = 'The password for the above database connection (empty for sqlite)';
-$lang['select-user']        = 'SQL Statement to select the data of a single user';
-$lang['select-user-groups'] = 'SQL Statement to select all groups of a single user';
-$lang['select-groups']      = 'SQL Statement to select all available groups';
-$lang['insert-user']        = 'SQL Statement to insert a new user into the database';
-$lang['delete-user']        = 'SQL Statement to remove a single user from the database';
-$lang['list-users']         = 'SQL Statement to list users matching a filter';
-$lang['count-users']        = 'SQL Statement to count users matching a filter';
-$lang['update-user-info']   = 'SQL Statement to update the full name and email address of a single user';
-$lang['update-user-login']  = 'SQL Statement to update the login name of a single user';
-$lang['update-user-pass']   = 'SQL Statement to update the password of a single user';
-$lang['insert-group']       = 'SQL Statement to insert a new group into the database';
-$lang['join-group']         = 'SQL Statement to add a user to an existing group';
-$lang['leave-group']        = 'SQL Statement to remove a user from a group';
-$lang['check-pass']         = 'SQL Statement to check the password for a user. Can be left empty if password info is fetched in select-user.';
id='n205' href='#n205'>205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347