Update strings

update strings to contain addon
This commit is contained in:
Adam Magness 2018-01-20 11:01:59 -05:00
parent c71f7b0e1a
commit 96c41e5623
519 changed files with 829 additions and 829 deletions

View file

@ -1,7 +1,7 @@
<?php
/**
* GuessContentType plugin
* GuessContentType addon
*
* A lot of the built-in File objects just return application/octet-stream
* as a content-type by default. This is a problem for some clients, because
@ -43,7 +43,7 @@ class Sabre_DAV_Browser_GuessContentType extends Sabre_DAV_ServerPlugin {
);
/**
* Initializes the plugin
* Initializes the addon
*
* @param Sabre_DAV_Server $server
* @return void

View file

@ -1,7 +1,7 @@
<?php
/**
* This is a simple plugin that will map any GET request for non-files to
* This is a simple addon that will map any GET request for non-files to
* PROPFIND allprops-requests.
*
* This should allow easy debugging of PROPFIND
@ -22,7 +22,7 @@ class Sabre_DAV_Browser_MapGetToPropFind extends Sabre_DAV_ServerPlugin {
protected $server;
/**
* Initializes the plugin and subscribes to events
* Initializes the addon and subscribes to events
*
* @param Sabre_DAV_Server $server
* @return void

View file

@ -3,7 +3,7 @@
/**
* Browser Plugin
*
* This plugin provides a html representation, so that a WebDAV server may be accessed
* This addon provides a html representation, so that a WebDAV server may be accessed
* using a browser.
*
* The class intercepts GET requests to collection resources and generates a simple
@ -60,7 +60,7 @@ class Sabre_DAV_Browser_Plugin extends Sabre_DAV_ServerPlugin {
protected $enablePost = true;
/**
* By default the browser plugin will generate a favicon and other images.
* By default the browser addon will generate a favicon and other images.
* To turn this off, set this property to false.
*
* @var bool
@ -84,7 +84,7 @@ class Sabre_DAV_Browser_Plugin extends Sabre_DAV_ServerPlugin {
}
/**
* Initializes the plugin and subscribes to events
* Initializes the addon and subscribes to events
*
* @param Sabre_DAV_Server $server
* @return void
@ -122,7 +122,7 @@ class Sabre_DAV_Browser_Plugin extends Sabre_DAV_ServerPlugin {
$node = $this->server->tree->getNodeForPath($uri);
} catch (Sabre_DAV_Exception_NotFound $e) {
// We're simply stopping when the file isn't found to not interfere
// with other plugins.
// with other addons.
return;
}
if ($node instanceof Sabre_DAV_IFile)