Skip to content

Commit

Permalink
Merge pull request #4 from rakekniven/patch-1
Browse files Browse the repository at this point in the history
i18n: Fixes and improvements
  • Loading branch information
mijorus authored Nov 20, 2024
2 parents 8a40ebf + 6acffd4 commit d647f57
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>rolls</id>
<name>Rolls</name>
<summary>Share quick videos with your collegues</summary>
<summary>Share quick videos with your colleagues</summary>
<website>https://github.com/mijorus/rolls</website>
<description>
This plugin allows you to create screen recordings and share them with anyone withing your organization.
Expand Down
2 changes: 1 addition & 1 deletion src/components/ScreenBeingRecorded.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<NcEmptyContent :name="t('rolls', 'Recording...')">
<NcEmptyContent :name="t('rolls', 'Recording')">
<template #icon>
<RecordRec />
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectAScreenPlaceholder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<NcEmptyContent
:name="t('rolls', 'Select a screen to get started')"
:description="
t('rolls', 'If you decide to share a only window, the webcam Picture in Picture will not be available')
t('rolls', 'If you decide to share a window only, the webcam Picture in Picture will not be available')
"
>
<template #icon>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Watch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<Check v-else :size="20" />
</template>
<div class="tw-capitalize">
<span v-if="!isCopying">{{ t("rolls", "Copy url") }}</span>
<span v-if="!isCopying">{{ t("rolls", "Copy URL") }}</span>
<span v-else>{{ t("rolls", "Copied!") }}</span>
</div>
</NcButton>
Expand Down Expand Up @@ -392,4 +392,4 @@ div.content-wrapper.text-editor__content-wrapper > div.editor__content.text-edit
.editor .text-readonly-bar:has(span.format-list-bulleted-icon) {
display: none;
}
</style>
</style>

0 comments on commit d647f57

Please sign in to comment.