Adjust some more branding texts

Replaces ownCloud with Nextcloud in the user-facing messages
This commit is contained in:
Lukas Reschke 2016-06-11 10:46:02 +02:00
parent 7a10bedbc6
commit 218e4b48ad
No known key found for this signature in database
GPG Key ID: 9AB0ADB949B6898C
5 changed files with 11 additions and 11 deletions

View File

@ -57,7 +57,7 @@ class DummyGetResponsePlugin extends \Sabre\DAV\ServerPlugin {
*/
function httpGet(RequestInterface $request, ResponseInterface $response) {
$string = 'This is the WebDAV interface. It can only be accessed by ' .
'WebDAV clients such as the ownCloud desktop sync client.';
'WebDAV clients such as the Nextcloud desktop sync client.';
$stream = fopen('php://memory','r+');
fwrite($stream, $string);
rewind($stream);

View File

@ -8,17 +8,17 @@ style('federation', 'settings-admin')
?>
<div id="ocFederationSettings" class="section">
<h2><?php p($l->t('Federation')); ?></h2>
<em><?php p($l->t('ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.')); ?></em>
<em><?php p($l->t('Nextcloud Federation allows you to connect with other trusted Nextclouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.')); ?></em>
<p>
<input id="autoAddServers" type="checkbox" class="checkbox" <?php if($_['autoAddServers']) p('checked'); ?> />
<label for="autoAddServers">Add server automatically once a federated share was created successfully</label>
<label for="autoAddServers"><?php p($l->t('Add server automatically once a federated share was created successfully')) ?></label>
</p>
<h3>Trusted ownCloud Servers</h3>
<h3><?php p($l->t('Trusted Nextcloud Servers')) ?></h3>
<p id="ocFederationAddServer">
<button id="ocFederationAddServerButton" class="">+ Add ownCloud server</button>
<input id="serverUrl" class="hidden" type="text" value="" placeholder="ownCloud Server" name="server_url"/>
<button id="ocFederationAddServerButton" class=""><?php p($l->t('+ Add Nextcloud server')) ?></button>
<input id="serverUrl" class="hidden" type="text" value="" placeholder="Nextcloud Server" name="server_url"/>
<span class="msg"></span>
</p>
<ul id="listOfTrustedServers">

View File

@ -73,7 +73,7 @@ $thumbSize = 1024;
?>
<span id="save" data-protected="<?php p($_['protected']) ?>"
data-owner-display-name="<?php p($_['displayName']) ?>" data-owner="<?php p($_['owner']) ?>" data-name="<?php p($_['filename']) ?>">
<button id="save-button"><?php p($l->t('Add to your ownCloud')) ?></button>
<button id="save-button"><?php p($l->t('Add to your Nextcloud')) ?></button>
<form class="save-form hidden" action="#">
<input type="text" id="remote_address" placeholder="example.com/owncloud"/>
<button id="save-button-confirm" class="icon-confirm svg" disabled></button>

View File

@ -119,7 +119,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
$('#apps-list-empty').removeClass('hidden').find('h2').text(t('settings', 'No apps found for your version'));
}
$('.app-level .official').tipsy({fallback: t('settings', 'Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use.')});
$('.app-level .official').tipsy({fallback: t('settings', 'Official apps are developed by and within the Nextcloud community. They offer functionality central to Nextcloud and are ready for production use.')});
$('.app-level .approved').tipsy({fallback: t('settings', 'Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.')});
$('.app-level .experimental').tipsy({fallback: t('settings', 'This app is not checked for security issues and is new or known to be unstable. Install at your own risk.')});
},

View File

@ -8,12 +8,12 @@
'{linkclose}',
],
[
'<a href="https://owncloud.org/contact" target="_blank" rel="noreferrer">',
'<a href="https://github.com/owncloud" target="_blank" rel="noreferrer">',
'<a href="https://nextcloud.com/contact" target="_blank" rel="noreferrer">',
'<a href="https://github.com/nextcloud" target="_blank" rel="noreferrer">',
'<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">',
'</a>',
],
$l->t('Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title="Affero General Public License">AGPL</abbr>{linkclose}.')
$l->t('Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title="Affero General Public License">AGPL</abbr>{linkclose}.')
)); ?>
</p>
<?php endif; ?>