Merge pull request #10025 from owncloud/l10n-typo

typo fix from transifex suggestion
remotes/origin/fix-10825
Thomas Müller 2014-08-04 11:03:50 +07:00
commit 65903a012a
1 changed files with 8 additions and 8 deletions

@ -926,7 +926,7 @@ class Share extends \OC\Share\Constants {
} }
/** /**
* validate expire date if it meets all constraints * validate expiration date if it meets all constraints
* *
* @param string $expireDate well formate date string, e.g. "DD-MM-YYYY" * @param string $expireDate well formate date string, e.g. "DD-MM-YYYY"
* @param string $shareTime timestamp when the file was shared * @param string $shareTime timestamp when the file was shared
@ -956,16 +956,16 @@ class Share extends \OC\Share\Constants {
$maxDays = \OCP\Config::getAppValue('core', 'shareapi_expire_after_n_days', '7'); $maxDays = \OCP\Config::getAppValue('core', 'shareapi_expire_after_n_days', '7');
$maxDate->add(new \DateInterval('P' . $maxDays . 'D')); $maxDate->add(new \DateInterval('P' . $maxDays . 'D'));
if ($date > $maxDate) { if ($date > $maxDate) {
$warning = 'Can not set expire date. Shares can not expire later then ' . $maxDays . ' after they where shared'; $warning = 'Cannot set expiration date. Shares cannot expire later than ' . $maxDays . ' after they where shared';
$warning_t = $l->t('Can not set expire date. Shares can not expire later then %s after they where shared', array($maxDays)); $warning_t = $l->t('Cannot set expiration date. Shares cannot expire later than %s after they where shared', array($maxDays));
\OCP\Util::writeLog('OCP\Share', $warning, \OCP\Util::WARN); \OCP\Util::writeLog('OCP\Share', $warning, \OCP\Util::WARN);
throw new \Exception($warning_t); throw new \Exception($warning_t);
} }
} }
if ($date < $today) { if ($date < $today) {
$message = 'Can not set expire date. Expire date is in the past'; $message = 'Cannot set expiration date. Expiration date is in the past';
$message_t = $l->t('Can not set expire date. Expire date is in the past'); $message_t = $l->t('Cannot set expiration date. Expiration date is in the past');
\OCP\Util::writeLog('OCP\Share', $message, \OCP\Util::WARN); \OCP\Util::writeLog('OCP\Share', $message, \OCP\Util::WARN);
throw new \Exception($message_t); throw new \Exception($message_t);
} }
@ -1018,10 +1018,10 @@ class Share extends \OC\Share\Constants {
$result = false; $result = false;
// only use default expire date for link shares // only use default expiration date for link shares
if ((int) $item['share_type'] === self::SHARE_TYPE_LINK) { if ((int) $item['share_type'] === self::SHARE_TYPE_LINK) {
// calculate expire date // calculate expiration date
if (!empty($item['expiration'])) { if (!empty($item['expiration'])) {
$userDefinedExpire = new \DateTime($item['expiration']); $userDefinedExpire = new \DateTime($item['expiration']);
$expires = $userDefinedExpire->getTimestamp(); $expires = $userDefinedExpire->getTimestamp();
@ -1030,7 +1030,7 @@ class Share extends \OC\Share\Constants {
} }
// get default expire settings // get default expiration settings
$defaultSettings = Helper::getDefaultExpireSetting(); $defaultSettings = Helper::getDefaultExpireSetting();
$expires = Helper::calculateExpireDate($defaultSettings, $item['stime'], $expires); $expires = Helper::calculateExpireDate($defaultSettings, $item['stime'], $expires);