Skip to content

Commit

Permalink
fix: Casing for Nextcloud Assistant
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliushaertl committed Aug 14, 2023
1 parent 2507140 commit bfeeedf
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nextcloud assistant
# Nextcloud Assistant

This app brings a user interface to use the Nextcloud text processing feature.

Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<info>
<id>assistant</id>
<name>Nextcloud assistant</name>
<name>Nextcloud Assistant</name>
<summary>Process and transform text</summary>
<description><![CDATA[
This app brings a user interface to use the Nextcloud text processing feature.
Expand Down
2 changes: 1 addition & 1 deletion lib/Notification/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function getID(): string {
* @since 17.0.0
*/
public function getName(): string {
return $this->factory->get(Application::APP_ID)->t('Nextcloud assistant');
return $this->factory->get(Application::APP_ID)->t('Nextcloud Assistant');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "assistant",
"version": "0.0.1",
"description": "Nextcloud assistant",
"description": "Nextcloud Assistant",
"main": "index.js",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div id="assistant_prefs" class="section">
<h2>
<AssistantIcon class="icon" />
{{ t('assistant', 'Nextcloud assistant') }}
{{ t('assistant', 'Nextcloud Assistant') }}
</h2>
<div id="assistant-content">
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/AssistantForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="assistant-form">
<span class="assistant-bubble">
<CreationIcon :size="16" class="icon" />
<span>{{ t('assistant', 'Nextcloud assistant') }}</span>
<span>{{ t('assistant', 'Nextcloud Assistant') }}</span>
</span>
<NcSelect
:value="selectedTaskType"
Expand Down
2 changes: 1 addition & 1 deletion src/components/AssistantHeaderMenuEntry.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div id="assistant"
class="header-menu"
:title="t('assistant', 'Nextcloud assistant')">
:title="t('assistant', 'Nextcloud Assistant')">
<a
href="#"
@click="$emit('click')">
Expand Down
2 changes: 1 addition & 1 deletion src/components/AssistantModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default {
return {
show: true,
closeButtonTitle: t('assistant', 'Close'),
closeButtonLabel: t('assistant', 'Close Nextcloud assistant'),
closeButtonLabel: t('assistant', 'Close Nextcloud Assistant'),
modalSize: 'normal',
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/PersonalSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div id="assistant_prefs" class="section">
<h2>
<AssistantIcon class="icon" />
{{ t('assistant', 'Nextcloud assistant') }}
{{ t('assistant', 'Nextcloud Assistant') }}
</h2>
<div id="assistant-content">
<NcCheckboxRadioSwitch
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<clover outputFile="./clover.xml"/>
</report>
</coverage>
<testsuite name="Nextcloud assistant integration App Tests">
<testsuite name="Nextcloud Assistant integration App Tests">
<directory suffix="Test.php">.</directory>
</testsuite>
<!-- filters for code coverage -->
Expand Down

0 comments on commit bfeeedf

Please sign in to comment.