mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-03-14 00:41:58 -04:00
Compare commits
2 Commits
ltimoodle1
...
v7.6.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b7427869b6 | ||
|
|
11449c2187 |
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## [7.6.0](https://github.com/mediacms-io/mediacms/compare/v7.5.0...v7.6.0) (2026-02-07)
|
||||
|
||||
### Features
|
||||
|
||||
* Create SECURITY.md ([#1485](https://github.com/mediacms-io/mediacms/issues/1485)) ([11449c2](https://github.com/mediacms-io/mediacms/commit/11449c2187d0f450b86915d88f92595a1825e4cf))
|
||||
|
||||
## [7.5.0](https://github.com/mediacms-io/mediacms/compare/v7.4.0...v7.5.0) (2026-02-06)
|
||||
|
||||
### Features
|
||||
|
||||
23
HISTORY.md
Normal file
23
HISTORY.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# History
|
||||
|
||||
## 3.0.0
|
||||
|
||||
### Features
|
||||
- Updates Python/Django requirements and Dockerfile to use latest 3.11 Python - https://github.com/mediacms-io/mediacms/pull/826/files. This update requires some manual steps, for existing (not new) installations. Check the update section under the [Admin docs](https://github.com/mediacms-io/mediacms/blob/main/docs/admins_docs.md#2-server-installation), either for single server or for Docker Compose installations
|
||||
- Upgrade postgres on Docker Compose - https://github.com/mediacms-io/mediacms/pull/749
|
||||
|
||||
### Fixes
|
||||
- video player options for HLS - https://github.com/mediacms-io/mediacms/pull/832
|
||||
- AVI videos not correctly recognised as videos - https://github.com/mediacms-io/mediacms/pull/833
|
||||
|
||||
## 2.1.0
|
||||
|
||||
### Fixes
|
||||
- Increase uwsgi buffer-size parameter. This prevents an error by uwsgi with large headers - [#5b60](https://github.com/mediacms-io/mediacms/commit/5b601698a41ad97f08c1830e14b1c18f73ab8315)
|
||||
- Fix issues with comments. These were not reported on the tracker but it is certain that they would not show comments on media files (non videos but also videos). Unfortunately this reverts work done with Timestamps on comments + Mentions on comments, more on PR [#802](https://github.com/mediacms-io/mediacms/pull/802)
|
||||
|
||||
### Features
|
||||
- Allow tags to contains other characters too, not only English alphabet ones [#801](https://github.com/mediacms-io/mediacms/pull/801)
|
||||
- Add simple cookie consent code [#799](https://github.com/mediacms-io/mediacms/pull/799)
|
||||
- Allow password reset & email verify pages on global login required [#790](https://github.com/mediacms-io/mediacms/pull/790)
|
||||
- Add api_url field to search api [#692](https://github.com/mediacms-io/mediacms/pull/692)
|
||||
@@ -108,7 +108,7 @@ There are two ways to run MediaCMS, through Docker Compose and through installin
|
||||
|
||||
## Technology
|
||||
|
||||
This software uses the following list of awesome technologies: Python, Django, Django Rest Framework, Celery, PostgreSQL, Redis, Nginx, Gunicorn, React, Fine Uploader, video.js, FFMPEG, Bento4
|
||||
This software uses the following list of awesome technologies: Python, Django, Django Rest Framework, Celery, PostgreSQL, Redis, Nginx, uWSGI, React, Fine Uploader, video.js, FFMPEG, Bento4
|
||||
|
||||
|
||||
## Who is using it
|
||||
|
||||
54
SECURITY.md
Normal file
54
SECURITY.md
Normal file
@@ -0,0 +1,54 @@
|
||||
# Security Policy
|
||||
|
||||
Thank you for helping improve the security of MediaCMS.
|
||||
We take security vulnerabilities seriously and appreciate responsible disclosure.
|
||||
|
||||
---
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
If you discover a security vulnerability in MediaCMS, **please do not open a public GitHub issue**.
|
||||
|
||||
Instead, report it using one of the following methods:
|
||||
|
||||
- **GitHub Security Advisories (preferred)**
|
||||
Use the "Report a vulnerability" feature in this repository.
|
||||
|
||||
- **Contact Form**
|
||||
Submit details via the official contact page:
|
||||
https://mediacms.io/contact/
|
||||
|
||||
Please include as much of the following information as possible:
|
||||
- Affected version(s)
|
||||
- Detailed description of the issue
|
||||
- Steps to reproduce (PoC if available)
|
||||
- Impact assessment (e.g. RCE, XSS, privilege escalation)
|
||||
- Any potential mitigations you are aware of
|
||||
|
||||
---
|
||||
|
||||
## Supported Versions
|
||||
|
||||
Security updates are provided for the **latest stable release** of MediaCMS.
|
||||
Older versions may not receive security patches.
|
||||
|
||||
---
|
||||
|
||||
## Disclosure Policy
|
||||
|
||||
- We aim to acknowledge reports within **7 days**
|
||||
- We aim to provide a fix or mitigation within **90 days**, depending on severity
|
||||
- Please allow us time to investigate before any public disclosure
|
||||
|
||||
We follow responsible disclosure practices and will coordinate disclosure timelines when appropriate.
|
||||
|
||||
---
|
||||
|
||||
## Recognition
|
||||
|
||||
At this time, MediaCMS does not operate a formal bug bounty program.
|
||||
However, we are happy to acknowledge valid security reports in release notes or advisories (with your permission).
|
||||
|
||||
---
|
||||
|
||||
Thank you for helping keep MediaCMS secure.
|
||||
@@ -24,7 +24,6 @@ INSTALLED_APPS = [
|
||||
"actions.apps.ActionsConfig",
|
||||
"rbac.apps.RbacConfig",
|
||||
"identity_providers.apps.IdentityProvidersConfig",
|
||||
"lti.apps.LtiConfig",
|
||||
"debug_toolbar",
|
||||
"mptt",
|
||||
"crispy_forms",
|
||||
|
||||
@@ -300,7 +300,6 @@ INSTALLED_APPS = [
|
||||
"actions.apps.ActionsConfig",
|
||||
"rbac.apps.RbacConfig",
|
||||
"identity_providers.apps.IdentityProvidersConfig",
|
||||
"lti.apps.LtiConfig",
|
||||
"debug_toolbar",
|
||||
"mptt",
|
||||
"crispy_forms",
|
||||
@@ -556,7 +555,6 @@ DJANGO_ADMIN_URL = "admin/"
|
||||
USE_SAML = False
|
||||
USE_RBAC = False
|
||||
USE_IDENTITY_PROVIDERS = False
|
||||
USE_LTI = False # Enable LTI 1.3 integration
|
||||
JAZZMIN_UI_TWEAKS = {"theme": "flatly"}
|
||||
|
||||
USE_ROUNDED_CORNERS = True
|
||||
@@ -652,18 +650,3 @@ if USERS_NEEDS_TO_BE_APPROVED:
|
||||
)
|
||||
auth_index = MIDDLEWARE.index("django.contrib.auth.middleware.AuthenticationMiddleware")
|
||||
MIDDLEWARE.insert(auth_index + 1, "cms.middleware.ApprovalMiddleware")
|
||||
|
||||
|
||||
# LTI 1.3 Integration Settings
|
||||
if USE_LTI:
|
||||
# Session timeout for LTI launches (seconds)
|
||||
LTI_SESSION_TIMEOUT = 3600 # 1 hour
|
||||
|
||||
# Cookie settings required for iframe embedding from LMS
|
||||
# IMPORTANT: Requires HTTPS to be enabled
|
||||
SESSION_COOKIE_SAMESITE = 'None'
|
||||
SESSION_COOKIE_SECURE = True
|
||||
CSRF_COOKIE_SAMESITE = 'None'
|
||||
CSRF_COOKIE_SECURE = True
|
||||
# SESSION_ENGINE = "django.contrib.sessions.backends.cached_db"
|
||||
# Consider using cached_db for reliability if sessions are lost between many LTI launches
|
||||
|
||||
@@ -25,7 +25,6 @@ urlpatterns = [
|
||||
re_path(r"^", include("files.urls")),
|
||||
re_path(r"^", include("users.urls")),
|
||||
re_path(r"^accounts/", include("allauth.urls")),
|
||||
re_path(r"^lti/", include("lti.urls")),
|
||||
re_path(r"^api-auth/", include("rest_framework.urls")),
|
||||
path(settings.DJANGO_ADMIN_URL, admin.site.urls),
|
||||
re_path(r'^swagger(?P<format>\.json|\.yaml)$', schema_view.without_ui(cache_timeout=0), name='schema-json'),
|
||||
|
||||
@@ -1 +1 @@
|
||||
VERSION = "8.35"
|
||||
VERSION = "7.5"
|
||||
|
||||
@@ -73,8 +73,3 @@ Can be set through the SAML Configurations tab:
|
||||
3. **Group Role Mapping**: Maps the role returned by SAML (as set in the SAML Configuration tab) with the role in groups that user will be added
|
||||
4. **Group mapping**: This creates groups associated with this IDP. Group ids as they come from SAML, associated with MediaCMS groups
|
||||
5. **Category Mapping**: This maps a group id (from SAML response) with a category in MediaCMS
|
||||
|
||||
|
||||
## More options
|
||||
USER_SEARCH_FIELD = "name_username_email"
|
||||
ALLOW_MEDIA_REPLACEMENT = True
|
||||
|
||||
@@ -1,9 +1,3 @@
|
||||
# Use existing X-Forwarded-Proto from reverse proxy if present, otherwise use $scheme
|
||||
map $http_x_forwarded_proto $forwarded_proto {
|
||||
default $http_x_forwarded_proto;
|
||||
'' $scheme;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80 ;
|
||||
|
||||
@@ -34,10 +28,7 @@ server {
|
||||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
||||
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
||||
|
||||
proxy_pass http://127.0.0.1:9000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $forwarded_proto;
|
||||
include /etc/nginx/sites-enabled/uwsgi_params;
|
||||
uwsgi_pass 127.0.0.1:9000;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,6 +37,7 @@ fi
|
||||
|
||||
cp deploy/docker/nginx_http_only.conf /etc/nginx/sites-available/default
|
||||
cp deploy/docker/nginx_http_only.conf /etc/nginx/sites-enabled/default
|
||||
cp deploy/docker/uwsgi_params /etc/nginx/sites-enabled/uwsgi_params
|
||||
cp deploy/docker/nginx.conf /etc/nginx/
|
||||
|
||||
#### Supervisord Configurations #####
|
||||
@@ -44,12 +45,12 @@ cp deploy/docker/nginx.conf /etc/nginx/
|
||||
cp deploy/docker/supervisord/supervisord-debian.conf /etc/supervisor/conf.d/supervisord-debian.conf
|
||||
|
||||
if [ X"$ENABLE_UWSGI" = X"yes" ] ; then
|
||||
echo "Enabling gunicorn app server"
|
||||
cp deploy/docker/supervisord/supervisord-gunicorn.conf /etc/supervisor/conf.d/supervisord-gunicorn.conf
|
||||
echo "Enabling uwsgi app server"
|
||||
cp deploy/docker/supervisord/supervisord-uwsgi.conf /etc/supervisor/conf.d/supervisord-uwsgi.conf
|
||||
fi
|
||||
|
||||
if [ X"$ENABLE_NGINX" = X"yes" ] ; then
|
||||
echo "Enabling nginx as gunicorn app proxy and media server"
|
||||
echo "Enabling nginx as uwsgi app proxy and media server"
|
||||
cp deploy/docker/supervisord/supervisord-nginx.conf /etc/supervisor/conf.d/supervisord-nginx.conf
|
||||
fi
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ else
|
||||
echo "There is no script $PRE_START_PATH"
|
||||
fi
|
||||
|
||||
# Start Supervisor, with Nginx and Gunicorn
|
||||
# Start Supervisor, with Nginx and uWSGI
|
||||
echo "Starting server using supervisord..."
|
||||
|
||||
exec /usr/bin/supervisord
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
[program:gunicorn]
|
||||
command=/home/mediacms.io/bin/gunicorn cms.wsgi:application --workers=2 --threads=2 --worker-class=gthread --bind=127.0.0.1:9000 --user=www-data --group=www-data --timeout=120 --keep-alive=5 --max-requests=1000 --max-requests-jitter=50 --access-logfile=- --error-logfile=- --log-level=info --chdir=/home/mediacms.io/mediacms
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
priority=100
|
||||
startinorder=true
|
||||
startsecs=0
|
||||
9
deploy/docker/supervisord/supervisord-uwsgi.conf
Normal file
9
deploy/docker/supervisord/supervisord-uwsgi.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
[program:uwsgi]
|
||||
command=/home/mediacms.io/bin/uwsgi --ini /home/mediacms.io/mediacms/deploy/docker/uwsgi.ini
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
priority=100
|
||||
startinorder=true
|
||||
startsecs=0
|
||||
24
deploy/docker/uwsgi.ini
Normal file
24
deploy/docker/uwsgi.ini
Normal file
@@ -0,0 +1,24 @@
|
||||
[uwsgi]
|
||||
|
||||
chdir = /home/mediacms.io/mediacms/
|
||||
virtualenv = /home/mediacms.io
|
||||
module = cms.wsgi
|
||||
|
||||
uid=www-data
|
||||
gid=www-data
|
||||
|
||||
processes = 2
|
||||
threads = 2
|
||||
|
||||
master = true
|
||||
|
||||
socket = 127.0.0.1:9000
|
||||
|
||||
workers = 2
|
||||
|
||||
vacuum = true
|
||||
|
||||
hook-master-start = unix_signal:15 gracefully_kill_them_all
|
||||
need-app = true
|
||||
die-on-term = true
|
||||
buffer-size=32768
|
||||
16
deploy/docker/uwsgi_params
Normal file
16
deploy/docker/uwsgi_params
Normal file
@@ -0,0 +1,16 @@
|
||||
uwsgi_param QUERY_STRING $query_string;
|
||||
uwsgi_param REQUEST_METHOD $request_method;
|
||||
uwsgi_param CONTENT_TYPE $content_type;
|
||||
uwsgi_param CONTENT_LENGTH $content_length;
|
||||
|
||||
uwsgi_param REQUEST_URI $request_uri;
|
||||
uwsgi_param PATH_INFO $document_uri;
|
||||
uwsgi_param DOCUMENT_ROOT $document_root;
|
||||
uwsgi_param SERVER_PROTOCOL $server_protocol;
|
||||
uwsgi_param REQUEST_SCHEME $scheme;
|
||||
uwsgi_param HTTPS $https if_not_empty;
|
||||
|
||||
uwsgi_param REMOTE_ADDR $remote_addr;
|
||||
uwsgi_param REMOTE_PORT $remote_port;
|
||||
uwsgi_param SERVER_PORT $server_port;
|
||||
uwsgi_param SERVER_NAME $server_name;
|
||||
22
deploy/local_install/celery_beat.service
Normal file
22
deploy/local_install/celery_beat.service
Normal file
@@ -0,0 +1,22 @@
|
||||
[Unit]
|
||||
Description=MediaCMS celery beat
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=www-data
|
||||
Group=www-data
|
||||
Restart=always
|
||||
RestartSec=10
|
||||
WorkingDirectory=/home/mediacms.io/mediacms
|
||||
Environment=CELERY_BIN="/home/mediacms.io/bin/celery"
|
||||
Environment=CELERYD_PID_FILE="/home/mediacms.io/mediacms/pids/beat%n.pid"
|
||||
Environment=CELERYD_LOG_FILE="/home/mediacms.io/mediacms/logs/beat%N.log"
|
||||
Environment=CELERYD_LOG_LEVEL="INFO"
|
||||
|
||||
ExecStart=/bin/sh -c '${CELERY_BIN} -A cms beat --pidfile=${CELERYD_PID_FILE} --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL}'
|
||||
ExecStop=/bin/kill -s TERM $MAINPID
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
29
deploy/local_install/celery_long.service
Normal file
29
deploy/local_install/celery_long.service
Normal file
@@ -0,0 +1,29 @@
|
||||
[Unit]
|
||||
Description=MediaCMS celery long queue
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
User=www-data
|
||||
Group=www-data
|
||||
Restart=always
|
||||
RestartSec=10
|
||||
WorkingDirectory=/home/mediacms.io/mediacms
|
||||
Environment=CELERYD_NODES="long1"
|
||||
Environment=CELERY_QUEUE="long_tasks"
|
||||
Environment=CELERY_BIN="/home/mediacms.io/bin/celery"
|
||||
Environment=CELERYD_MULTI="multi"
|
||||
Environment=CELERYD_OPTS="-Ofair --prefetch-multiplier=1"
|
||||
Environment=CELERYD_PID_FILE="/home/mediacms.io/mediacms/pids/%n.pid"
|
||||
Environment=CELERYD_LOG_FILE="/home/mediacms.io/mediacms/logs/%N.log"
|
||||
Environment=CELERYD_LOG_LEVEL="INFO"
|
||||
|
||||
ExecStart=/bin/sh -c '${CELERY_BIN} -A cms multi start ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE} --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS} -Q ${CELERY_QUEUE}'
|
||||
|
||||
ExecStop=/bin/sh -c '${CELERY_BIN} -A cms multi stopwait ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE}'
|
||||
|
||||
ExecReload=/bin/sh -c '${CELERY_BIN} -A cms multi restart ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE} --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS} -Q ${CELERY_QUEUE}'
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
39
deploy/local_install/celery_short.service
Normal file
39
deploy/local_install/celery_short.service
Normal file
@@ -0,0 +1,39 @@
|
||||
[Unit]
|
||||
Description=MediaCMS celery short queue
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
User=www-data
|
||||
Group=www-data
|
||||
Restart=always
|
||||
RestartSec=10
|
||||
WorkingDirectory=/home/mediacms.io/mediacms
|
||||
Environment=CELERYD_NODES="short1 short2"
|
||||
Environment=CELERY_QUEUE="short_tasks"
|
||||
# Absolute or relative path to the 'celery' command:
|
||||
Environment=CELERY_BIN="/home/mediacms.io/bin/celery"
|
||||
# App instance to use
|
||||
# comment out this line if you don't use an app
|
||||
# or fully qualified:
|
||||
#CELERY_APP="proj.tasks:app"
|
||||
# How to call manage.py
|
||||
Environment=CELERYD_MULTI="multi"
|
||||
# Extra command-line arguments to the worker
|
||||
Environment=CELERYD_OPTS="--soft-time-limit=300 -c10"
|
||||
# - %n will be replaced with the first part of the nodename.
|
||||
# - %I will be replaced with the current child process index
|
||||
# and is important when using the prefork pool to avoid race conditions.
|
||||
Environment=CELERYD_PID_FILE="/home/mediacms.io/mediacms/pids/%n.pid"
|
||||
Environment=CELERYD_LOG_FILE="/home/mediacms.io/mediacms/logs/%N.log"
|
||||
Environment=CELERYD_LOG_LEVEL="INFO"
|
||||
|
||||
ExecStart=/bin/sh -c '${CELERY_BIN} -A cms multi start ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE} --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS} -Q ${CELERY_QUEUE}'
|
||||
|
||||
ExecStop=/bin/sh -c '${CELERY_BIN} -A cms multi stopwait ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE}'
|
||||
|
||||
ExecReload=/bin/sh -c '${CELERY_BIN} -A cms multi restart ${CELERYD_NODES} --pidfile=${CELERYD_PID_FILE} --logfile=${CELERYD_LOG_FILE} --loglevel=${CELERYD_LOG_LEVEL} ${CELERYD_OPTS} -Q ${CELERY_QUEUE}'
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
13
deploy/local_install/dhparams.pem
Normal file
13
deploy/local_install/dhparams.pem
Normal file
@@ -0,0 +1,13 @@
|
||||
-----BEGIN DH PARAMETERS-----
|
||||
MIICCAKCAgEAo3MMiEY/fNbu+usIM0cDi6x8G3JBApv0Lswta4kiyedWT1WN51iQ
|
||||
9zhOFpmcu6517f/fR9MUdyhVKHxxSqWQTcmTEFtz4P3VLTS/W1N5VbKE2VEMLpIi
|
||||
wr350aGvV1Er0ujcp5n4O4h0I1tn4/fNyDe7+pHCdwM+hxe8hJ3T0/tKtad4fnIs
|
||||
WHDjl4f7m7KuFfheiK7Efb8MsT64HDDAYXn+INjtDZrbE5XPw20BqyWkrf07FcPx
|
||||
8o9GW50Ox7/FYq7jVMI/skEu0BRc8u6uUD9+UOuWUQpdeHeFcvLOgW53Z03XwWuX
|
||||
RXosUKzBPuGtUDAaKD/HsGW6xmGr2W9yRmu27jKpfYLUb/eWbbnRJwCw04LdzPqv
|
||||
jmtq02Gioo3lf5H5wYV9IYF6M8+q/slpbttsAcKERimD1273FBRt5VhSugkXWKjr
|
||||
XDhoXu6vZgj8Opei38qPa8pI1RUFoXHFlCe6WpZQmU8efL8gAMrJr9jUIY8eea1n
|
||||
u20t5B9ueb9JMjrNafcq6QkKhZLi6fRDDTUyeDvc0dN9R/3Yts97SXfdi1/lX7HS
|
||||
Ht4zXd5hEkvjo8GcnjsfZpAC39QfHWkDaeUGEqsl3jXjVMfkvoVY51OuokPWZzrJ
|
||||
M5+wyXNpfGbH67dPk7iHgN7VJvgX0SYscDPTtms50Vk7RwEzLeGuSHMCAQI=
|
||||
-----END DH PARAMETERS-----
|
||||
84
deploy/local_install/mediacms.io
Normal file
84
deploy/local_install/mediacms.io
Normal file
@@ -0,0 +1,84 @@
|
||||
server {
|
||||
listen 80 ;
|
||||
server_name localhost;
|
||||
|
||||
gzip on;
|
||||
access_log /var/log/nginx/mediacms.io.access.log;
|
||||
|
||||
error_log /var/log/nginx/mediacms.io.error.log warn;
|
||||
|
||||
# # redirect to https if logged in
|
||||
# if ($http_cookie ~* "sessionid") {
|
||||
# rewrite ^/(.*)$ https://localhost/$1 permanent;
|
||||
# }
|
||||
|
||||
# # redirect basic forms to https
|
||||
# location ~ (login|login_form|register|mail_password_form)$ {
|
||||
# rewrite ^/(.*)$ https://localhost/$1 permanent;
|
||||
# }
|
||||
|
||||
location /static {
|
||||
alias /home/mediacms.io/mediacms/static ;
|
||||
}
|
||||
|
||||
location /media/original {
|
||||
alias /home/mediacms.io/mediacms/media_files/original;
|
||||
}
|
||||
|
||||
location /media {
|
||||
alias /home/mediacms.io/mediacms/media_files ;
|
||||
}
|
||||
|
||||
location / {
|
||||
add_header 'Access-Control-Allow-Origin' '*';
|
||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
||||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
||||
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
||||
|
||||
include /etc/nginx/sites-enabled/uwsgi_params;
|
||||
uwsgi_pass 127.0.0.1:9000;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
server_name localhost;
|
||||
|
||||
ssl_certificate_key /etc/letsencrypt/live/localhost/privkey.pem;
|
||||
ssl_certificate /etc/letsencrypt/live/localhost/fullchain.pem;
|
||||
ssl_dhparam /etc/nginx/dhparams/dhparams.pem;
|
||||
|
||||
ssl_protocols TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
|
||||
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
||||
ssl_ecdh_curve secp521r1:secp384r1;
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
gzip on;
|
||||
access_log /var/log/nginx/mediacms.io.access.log;
|
||||
|
||||
error_log /var/log/nginx/mediacms.io.error.log warn;
|
||||
|
||||
location /static {
|
||||
alias /home/mediacms.io/mediacms/static ;
|
||||
}
|
||||
|
||||
location /media/original {
|
||||
alias /home/mediacms.io/mediacms/media_files/original;
|
||||
#auth_basic "auth protected area";
|
||||
#auth_basic_user_file /home/mediacms.io/mediacms/deploy/local_install/.htpasswd;
|
||||
}
|
||||
|
||||
location /media {
|
||||
alias /home/mediacms.io/mediacms/media_files ;
|
||||
}
|
||||
|
||||
location / {
|
||||
add_header 'Access-Control-Allow-Origin' '*';
|
||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
||||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
||||
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
||||
|
||||
include /etc/nginx/sites-enabled/uwsgi_params;
|
||||
uwsgi_pass 127.0.0.1:9000;
|
||||
}
|
||||
}
|
||||
58
deploy/local_install/mediacms.io_fullchain.pem
Normal file
58
deploy/local_install/mediacms.io_fullchain.pem
Normal file
@@ -0,0 +1,58 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIFTjCCBDagAwIBAgISBNOUeDlerH9MkKmHLvZJeMYgMA0GCSqGSIb3DQEBCwUA
|
||||
MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQD
|
||||
ExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMzAeFw0yMDAzMTAxNzUxNDFaFw0y
|
||||
MDA2MDgxNzUxNDFaMBYxFDASBgNVBAMTC21lZGlhY21zLmlvMIIBIjANBgkqhkiG
|
||||
9w0BAQEFAAOCAQ8AMIIBCgKCAQEAps5Jn18nW2tq/LYFDgQ1YZGLlpF/B2AAPvvH
|
||||
3yuD+AcT4skKdZouVL/a5pXrptuYL5lthO9dlcja2tuO2ltYrb7Dp01dAIFaJE8O
|
||||
DKd+Sv5wr8VWQZykqzMiMBgviml7TBvUHQjvCJg8UwmnN0XSUILCttd6u4qOzS7d
|
||||
lKMMsKpYzLhElBT0rzhhsWulDiy6aAZbMV95bfR74nIWsBJacy6jx3jvxAuvCtkB
|
||||
OVdOoVL6BPjDE3SNEk53bAZGIb5A9ri0O5jh/zBFT6tQSjUhAUTkmv9oZP547RnV
|
||||
fDj+rdvCVk/fE+Jno36mcT183Qd/Ty3fWuqFoM5g/luhnfvWEwIDAQABo4ICYDCC
|
||||
AlwwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD
|
||||
AjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTd5EZBt74zu5XxT1uXQs6oM8qOuDAf
|
||||
BgNVHSMEGDAWgBSoSmpjBH3duubRObemRWXv86jsoTBvBggrBgEFBQcBAQRjMGEw
|
||||
LgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLmludC14My5sZXRzZW5jcnlwdC5vcmcw
|
||||
LwYIKwYBBQUHMAKGI2h0dHA6Ly9jZXJ0LmludC14My5sZXRzZW5jcnlwdC5vcmcv
|
||||
MBYGA1UdEQQPMA2CC21lZGlhY21zLmlvMEwGA1UdIARFMEMwCAYGZ4EMAQIBMDcG
|
||||
CysGAQQBgt8TAQEBMCgwJgYIKwYBBQUHAgEWGmh0dHA6Ly9jcHMubGV0c2VuY3J5
|
||||
cHQub3JnMIIBBAYKKwYBBAHWeQIEAgSB9QSB8gDwAHYAXqdz+d9WwOe1Nkh90Eng
|
||||
MnqRmgyEoRIShBh1loFxRVgAAAFwxcnL+AAABAMARzBFAiAb3yeBuW3j9MxcRc0T
|
||||
icUBvEa/rH7Fv2eB0oQlnZ1exQIhAPf+CtTXmzxoeT/BBiivj4AmGDsq4xWhe/U6
|
||||
BytYrKLeAHYAB7dcG+V9aP/xsMYdIxXHuuZXfFeUt2ruvGE6GmnTohwAAAFwxcnM
|
||||
HAAABAMARzBFAiAuP5gKyyaT0LVXxwjYD9zhezvxf4Icx0P9pk75c5ao+AIhAK0+
|
||||
fSJv+WTXciMT6gA1sk/tuCHuDFAuexSA/6TcRXcVMA0GCSqGSIb3DQEBCwUAA4IB
|
||||
AQCPCYBU4Q/ro2MUkjDPKGmeqdxQycS4R9WvKTG/nmoahKNg30bnLaDPUcpyMU2k
|
||||
sPDemdZ7uTGLZ3ZrlIva8DbrnJmrTPf9BMwaM6j+ZV/QhxvKZVIWkLkZrwiVI57X
|
||||
Ba+rs5IEB4oWJ0EBaeIrzeKG5zLMkRcIdE4Hlhuwu3zGG56c+wmAPuvpIDlYoO6o
|
||||
W22xRdxoTIHBvkzwonpVYUaRcaIw+48xnllxh1dHO+X69DT45wlF4tKveOUi+L50
|
||||
4GWJ8Vjv7Fot/WNHEM4Mnmw0jHj9TPkIZKnPNRMdHmJ5CF/FJFDiptOeuzbfohG+
|
||||
mdvuInb8JDc0XBE99Gf/S4/y
|
||||
-----END CERTIFICATE-----
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/
|
||||
MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT
|
||||
DkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0Nlow
|
||||
SjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMT
|
||||
GkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOC
|
||||
AQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EF
|
||||
q6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8
|
||||
SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0
|
||||
Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWA
|
||||
a6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj
|
||||
/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0T
|
||||
AQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIG
|
||||
CCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNv
|
||||
bTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9k
|
||||
c3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAw
|
||||
VAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcC
|
||||
ARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAz
|
||||
MDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwu
|
||||
Y3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsF
|
||||
AAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJo
|
||||
uM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/
|
||||
wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwu
|
||||
X4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlG
|
||||
PfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6
|
||||
KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg==
|
||||
-----END CERTIFICATE-----
|
||||
28
deploy/local_install/mediacms.io_privkey.pem
Normal file
28
deploy/local_install/mediacms.io_privkey.pem
Normal file
@@ -0,0 +1,28 @@
|
||||
-----BEGIN PRIVATE KEY-----
|
||||
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCmzkmfXydba2r8
|
||||
tgUOBDVhkYuWkX8HYAA++8ffK4P4BxPiyQp1mi5Uv9rmleum25gvmW2E712VyNra
|
||||
247aW1itvsOnTV0AgVokTw4Mp35K/nCvxVZBnKSrMyIwGC+KaXtMG9QdCO8ImDxT
|
||||
Cac3RdJQgsK213q7io7NLt2UowywqljMuESUFPSvOGGxa6UOLLpoBlsxX3lt9Hvi
|
||||
chawElpzLqPHeO/EC68K2QE5V06hUvoE+MMTdI0STndsBkYhvkD2uLQ7mOH/MEVP
|
||||
q1BKNSEBROSa/2hk/njtGdV8OP6t28JWT98T4mejfqZxPXzdB39PLd9a6oWgzmD+
|
||||
W6Gd+9YTAgMBAAECggEADnEJuryYQbf5GUwBAAepP3tEZJLQNqk/HDTcRxwTXuPt
|
||||
+tKBD1F79WZu40vTjSyx7l0QOFQo/BDZsd0Ubx89fD1p3xA5nxOT5FTb2IifzIpe
|
||||
4zjokOGo+BGDQjq10vvy6tH1+VWOrGXRwzawvX5UCRhpFz9sptQGLQmDsZy0Oo9B
|
||||
LtavYVUqsbyqRWlzaclHgbythegIACWkqcalOzOtx+l6TGBRjej+c7URcwYBfr7t
|
||||
XTAzbP+vnpaJovZyZT1eekr0OLzMpnjx4HvRvzL+NxauRpn6KfabsTfZlk8nrs4I
|
||||
UdSjeukj1Iz8rGQilHdN/4dVJ3KzrlHVkVTBSjmMUQKBgQDaVXZnhAScfdiKeZbO
|
||||
rdUAWcnwfkDghtRuAmzHaRM/FhFBEoVhdSbBuu+OUyBnIw/Ra4o2ePuEBcKIUiQO
|
||||
w2tnE1CY5PPAcjw+OCSpvzy5xxjaqaRbm9BJp3FTeEYGLXERnchPpHg/NpexuF22
|
||||
QOJ+FrysPyNMxuQp47ZwO9WT3QKBgQDDlSGjq/eeWxemwf7ZqMVlRyqsdJsgnCew
|
||||
DkC62IGiYCBDfeEmndN+vcA/uzJHYV4iXiqS3aYJCWGaZFMhdIhIn5MgULvO1j5G
|
||||
u/MxuzaaNPz22FlNCWTLBw4T1HOOvyTL+nLtZDKJ/BHxgHCmur1kiGvvZWrcCthD
|
||||
afLEmseqrwKBgBuLZKCymxJTHhp6NHhmndSpfzyD8RNibzJhw+90ZiUzV4HqIEGn
|
||||
Ufhm6Qn/mrroRXqaIpm0saZ6Q4yHMF1cchRS73wahlXlE4yV8KopojOd1pjfhgi4
|
||||
o5JnOXjaV5s36GfcjATgLvtqm8CkDc6MaQaXP75LSNzKysYuIDoQkmVRAoGAAghF
|
||||
rja2Pv4BU+lGJarcSj4gEmSvy/nza5/qSka/qhlHnIvtUAJp1TJRkhf24MkBOmgy
|
||||
Fw6YkBV53ynVt05HsEGAPOC54t9VDFUdpNGmMpoEWuhKnUNQuc9b9RbLEJup3TjA
|
||||
Avl8kPR+lzzXbtQX7biBLp6mKp0uPB0YubRGCN8CgYA0JMxK0x38Q2x3AQVhOmZh
|
||||
YubtIa0JqVJhvpweOCFnkq3ebBpLsWYwiLTn86vuD0jupe5M3sxtefjkJmAKd8xY
|
||||
aBU7QWhjh1fX4mzmggnbjcrIFbkIHsxwMeg567U/4AGxOOUsv9QUn37mqycqRKEn
|
||||
YfUyYNLM6F3MmQAOs2kaHw==
|
||||
-----END PRIVATE KEY-----
|
||||
13
deploy/local_install/mediacms.service
Normal file
13
deploy/local_install/mediacms.service
Normal file
@@ -0,0 +1,13 @@
|
||||
[Unit]
|
||||
Description=MediaCMS uwsgi
|
||||
|
||||
[Service]
|
||||
ExecStart=/home/mediacms.io/bin/uwsgi --ini /home/mediacms.io/mediacms/deploy/local_install/uwsgi.ini
|
||||
ExecStop=/usr/bin/killall -9 uwsgi
|
||||
RestartSec=3
|
||||
#ExecRestart=killall -9 uwsgi; sleep 5; /home/sss/bin/uwsgi --ini /home/sss/wordgames/uwsgi.ini
|
||||
Restart=always
|
||||
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
7
deploy/local_install/mediacms_logrorate
Normal file
7
deploy/local_install/mediacms_logrorate
Normal file
@@ -0,0 +1,7 @@
|
||||
/home/mediacms.io/mediacms/logs/*.log {
|
||||
weekly
|
||||
missingok
|
||||
rotate 7
|
||||
compress
|
||||
notifempty
|
||||
}
|
||||
38
deploy/local_install/nginx.conf
Normal file
38
deploy/local_install/nginx.conf
Normal file
@@ -0,0 +1,38 @@
|
||||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 10240;
|
||||
}
|
||||
|
||||
worker_rlimit_nofile 20000; #each connection needs a filehandle (or 2 if you are proxying)
|
||||
http {
|
||||
proxy_connect_timeout 75;
|
||||
proxy_read_timeout 12000;
|
||||
client_max_body_size 5800M;
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 10;
|
||||
types_hash_max_size 2048;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
gzip on;
|
||||
gzip_disable "msie6";
|
||||
|
||||
log_format compression '$remote_addr - $remote_user [$time_local] '
|
||||
'"$request" $status $body_bytes_sent '
|
||||
'"$http_referer" "$http_user_agent" "$gzip_ratio"';
|
||||
|
||||
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
34
deploy/local_install/selinux-mediacms.te
Normal file
34
deploy/local_install/selinux-mediacms.te
Normal file
@@ -0,0 +1,34 @@
|
||||
module selinux-mediacms 1.0;
|
||||
|
||||
require {
|
||||
type init_t;
|
||||
type var_t;
|
||||
type redis_port_t;
|
||||
type postgresql_port_t;
|
||||
type httpd_t;
|
||||
type httpd_sys_content_t;
|
||||
type httpd_sys_rw_content_t;
|
||||
class file { append create execute execute_no_trans getattr ioctl lock open read rename setattr unlink write };
|
||||
class dir { add_name remove_name rmdir };
|
||||
class tcp_socket name_connect;
|
||||
class lnk_file read;
|
||||
}
|
||||
|
||||
#============= httpd_t ==============
|
||||
|
||||
allow httpd_t var_t:file { getattr open read };
|
||||
|
||||
#============= init_t ==============
|
||||
allow init_t postgresql_port_t:tcp_socket name_connect;
|
||||
|
||||
allow init_t redis_port_t:tcp_socket name_connect;
|
||||
|
||||
allow init_t httpd_sys_content_t:dir rmdir;
|
||||
|
||||
allow init_t httpd_sys_content_t:file { append create execute execute_no_trans ioctl lock open read rename setattr unlink write };
|
||||
|
||||
allow init_t httpd_sys_content_t:lnk_file read;
|
||||
|
||||
allow init_t httpd_sys_rw_content_t:dir { add_name remove_name rmdir };
|
||||
|
||||
allow init_t httpd_sys_rw_content_t:file { create ioctl lock open read setattr unlink write };
|
||||
27
deploy/local_install/uwsgi.ini
Normal file
27
deploy/local_install/uwsgi.ini
Normal file
@@ -0,0 +1,27 @@
|
||||
[uwsgi]
|
||||
|
||||
chdir = /home/mediacms.io/mediacms/
|
||||
virtualenv = /home/mediacms.io
|
||||
module = cms.wsgi
|
||||
|
||||
uid=www-data
|
||||
gid=www-data
|
||||
|
||||
processes = 2
|
||||
threads = 2
|
||||
|
||||
master = true
|
||||
|
||||
socket = 127.0.0.1:9000
|
||||
#socket = /home/mediacms.io/mediacms/deploy/uwsgi.sock
|
||||
|
||||
|
||||
workers = 2
|
||||
|
||||
|
||||
vacuum = true
|
||||
|
||||
logto = /home/mediacms.io/mediacms/logs/errorlog.txt
|
||||
|
||||
disable-logging = true
|
||||
buffer-size=32768
|
||||
16
deploy/local_install/uwsgi_params
Normal file
16
deploy/local_install/uwsgi_params
Normal file
@@ -0,0 +1,16 @@
|
||||
uwsgi_param QUERY_STRING $query_string;
|
||||
uwsgi_param REQUEST_METHOD $request_method;
|
||||
uwsgi_param CONTENT_TYPE $content_type;
|
||||
uwsgi_param CONTENT_LENGTH $content_length;
|
||||
|
||||
uwsgi_param REQUEST_URI $request_uri;
|
||||
uwsgi_param PATH_INFO $document_uri;
|
||||
uwsgi_param DOCUMENT_ROOT $document_root;
|
||||
uwsgi_param SERVER_PROTOCOL $server_protocol;
|
||||
uwsgi_param REQUEST_SCHEME $scheme;
|
||||
uwsgi_param HTTPS $https if_not_empty;
|
||||
|
||||
uwsgi_param REMOTE_ADDR $remote_addr;
|
||||
uwsgi_param REMOTE_PORT $remote_port;
|
||||
uwsgi_param SERVER_PORT $server_port;
|
||||
uwsgi_param SERVER_NAME $server_name;
|
||||
@@ -23,7 +23,7 @@ and will start all services required for MediaCMS, as Celery/Redis for asynchron
|
||||
For Django, the changes from the image produced by docker-compose.yaml are these:
|
||||
|
||||
* Django runs in debug mode, with `python manage.py runserver`
|
||||
* gunicorn and nginx are not run
|
||||
* uwsgi and nginx are not run
|
||||
* Django runs in Debug mode, with Debug Toolbar
|
||||
* Static files (js/css) are loaded from static/ folder
|
||||
* corsheaders is installed and configured to allow all origins
|
||||
|
||||
@@ -65,7 +65,6 @@ class CategoryAdminForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = Category
|
||||
# LTI fields will be shown as read-only when USE_LTI is enabled
|
||||
fields = '__all__'
|
||||
|
||||
def clean(self):
|
||||
@@ -136,7 +135,7 @@ class CategoryAdmin(admin.ModelAdmin):
|
||||
list_display = ["title", "user", "add_date", "media_count"]
|
||||
list_filter = []
|
||||
ordering = ("-add_date",)
|
||||
readonly_fields = ("user", "media_count", "lti_platform", "lti_context_id")
|
||||
readonly_fields = ("user", "media_count")
|
||||
change_form_template = 'admin/files/category/change_form.html'
|
||||
|
||||
def get_list_filter(self, request):
|
||||
@@ -146,8 +145,6 @@ class CategoryAdmin(admin.ModelAdmin):
|
||||
list_filter.insert(0, "is_rbac_category")
|
||||
if getattr(settings, 'USE_IDENTITY_PROVIDERS', False):
|
||||
list_filter.insert(-1, "identity_provider")
|
||||
if getattr(settings, 'USE_LTI', False):
|
||||
list_filter.append("is_lms_course")
|
||||
|
||||
return list_filter
|
||||
|
||||
@@ -157,8 +154,6 @@ class CategoryAdmin(admin.ModelAdmin):
|
||||
list_display.insert(-1, "is_rbac_category")
|
||||
if getattr(settings, 'USE_IDENTITY_PROVIDERS', False):
|
||||
list_display.insert(-1, "identity_provider")
|
||||
if getattr(settings, 'USE_LTI', False):
|
||||
list_display.insert(-1, "is_lms_course")
|
||||
|
||||
return list_display
|
||||
|
||||
@@ -172,14 +167,6 @@ class CategoryAdmin(admin.ModelAdmin):
|
||||
),
|
||||
]
|
||||
|
||||
additional_fieldsets = []
|
||||
|
||||
if getattr(settings, 'USE_LTI', False):
|
||||
lti_fieldset = [
|
||||
('LTI Integration', {'fields': ['lti_platform', 'lti_context_id'], 'classes': ['tab'], 'description': 'LTI/LMS integration settings (automatically managed by LTI provisioning)'}),
|
||||
]
|
||||
additional_fieldsets.extend(lti_fieldset)
|
||||
|
||||
if getattr(settings, 'USE_RBAC', False):
|
||||
rbac_fieldset = [
|
||||
('RBAC Settings', {'fields': ['is_rbac_category'], 'classes': ['tab'], 'description': 'Role-Based Access Control settings'}),
|
||||
@@ -190,9 +177,9 @@ class CategoryAdmin(admin.ModelAdmin):
|
||||
('RBAC Settings', {'fields': ['is_rbac_category', 'identity_provider'], 'classes': ['tab'], 'description': 'Role-Based Access Control settings'}),
|
||||
('Group Access', {'fields': ['rbac_groups'], 'description': 'Select the Groups that have access to category'}),
|
||||
]
|
||||
additional_fieldsets.extend(rbac_fieldset)
|
||||
|
||||
return basic_fieldset + additional_fieldsets
|
||||
return basic_fieldset + rbac_fieldset
|
||||
else:
|
||||
return basic_fieldset
|
||||
|
||||
|
||||
class TagAdmin(admin.ModelAdmin):
|
||||
|
||||
@@ -64,10 +64,4 @@ def stuff(request):
|
||||
if request.user.is_superuser:
|
||||
ret["DJANGO_ADMIN_URL"] = settings.DJANGO_ADMIN_URL
|
||||
|
||||
if getattr(settings, 'USE_LTI', False):
|
||||
lti_session = request.session.get('lti_session')
|
||||
|
||||
if lti_session and request.user.is_authenticated:
|
||||
ret['lti_session'] = lti_session
|
||||
|
||||
return ret
|
||||
|
||||
@@ -127,7 +127,6 @@ class MediaPublishForm(forms.ModelForm):
|
||||
|
||||
def __init__(self, user, *args, **kwargs):
|
||||
self.user = user
|
||||
self.request = kwargs.pop('request', None)
|
||||
super(MediaPublishForm, self).__init__(*args, **kwargs)
|
||||
|
||||
self.has_custom_permissions = self.instance.permissions.exists() if self.instance.pk else False
|
||||
@@ -170,16 +169,6 @@ class MediaPublishForm(forms.ModelForm):
|
||||
|
||||
self.fields['category'].queryset = Category.objects.filter(id__in=combined_category_ids).order_by('title')
|
||||
|
||||
# Filter for LMS courses only when in embed mode
|
||||
if self.request and 'category' in self.fields:
|
||||
is_embed_mode = self._check_embed_mode()
|
||||
if is_embed_mode:
|
||||
current_queryset = self.fields['category'].queryset
|
||||
self.fields['category'].queryset = current_queryset.filter(is_lms_course=True)
|
||||
self.fields['category'].label = 'Course'
|
||||
self.fields['category'].help_text = 'Media can be shared with one or more courses'
|
||||
self.fields['category'].widget.is_lms_mode = True
|
||||
|
||||
self.helper = FormHelper()
|
||||
self.helper.form_tag = True
|
||||
self.helper.form_class = 'post-form'
|
||||
@@ -197,22 +186,6 @@ class MediaPublishForm(forms.ModelForm):
|
||||
|
||||
self.helper.layout.append(FormActions(Submit('submit', 'Publish Media', css_class='primaryAction')))
|
||||
|
||||
def _check_embed_mode(self):
|
||||
"""Check if the current request is in embed mode"""
|
||||
if not self.request:
|
||||
return False
|
||||
|
||||
# Check query parameter
|
||||
mode = self.request.GET.get('mode', '')
|
||||
if mode == 'lms_embed_mode':
|
||||
return True
|
||||
|
||||
# Check session storage
|
||||
if self.request.session.get('lms_embed_mode') == 'true':
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
def clean(self):
|
||||
cleaned_data = super().clean()
|
||||
state = cleaned_data.get("state")
|
||||
|
||||
@@ -57,4 +57,4 @@ def translate_string(language_code, string):
|
||||
if not check_language_code(language_code):
|
||||
return string
|
||||
|
||||
return translation_strings[language_code].get(string) or string
|
||||
return translation_strings[language_code].get(string, string)
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "حذف الوسائط",
|
||||
"DOWNLOAD": "تحميل",
|
||||
"DURATION": "المدة",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "حذف الوسائط",
|
||||
"Delete media": "حذف الوسائط",
|
||||
"Disable Comments": "تعطيل التعليقات",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "فشل تغيير المالك. يرجى المحاولة مرة أخرى.",
|
||||
"Failed to copy media.": "فشل نسخ الوسائط.",
|
||||
"Failed to create playlist": "فشل إنشاء قائمة التشغيل",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "فشل حذف الوسائط. يرجى المحاولة مرة أخرى.",
|
||||
"Failed to disable comments.": "فشل تعطيل التعليقات.",
|
||||
"Failed to disable download.": "فشل تعطيل التنزيل.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "تصفية المستخدمين الموجودين...",
|
||||
"Filter playlists...": "تصفية قوائم التشغيل...",
|
||||
"Filters": "الفلاتر",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "اذهب",
|
||||
"History": "التاريخ",
|
||||
"Home": "الرئيسية",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "إدارة التعليقات",
|
||||
"Manage media": "إدارة الوسائط",
|
||||
"Manage users": "إدارة المستخدمين",
|
||||
"Management": "",
|
||||
"Media": "وسائط",
|
||||
"Media I own": "الوسائط التي أمتلكها",
|
||||
"Media was edited": "تم تعديل الوسائط",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "لا توجد نتائج لـ",
|
||||
"No tags": "لا توجد علامات",
|
||||
"No users to add": "لا يوجد مستخدمون لإضافتهم",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "قوائم التشغيل",
|
||||
"PUBLISH STATE": "حالة النشر",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "نشر في",
|
||||
"Recent uploads": "التحميلات الأخيرة",
|
||||
"Recommended": "موصى به",
|
||||
"Record": "",
|
||||
"Record Screen": "تسجيل الشاشة",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "تسجيل",
|
||||
"Remove category": "إزالة الفئة",
|
||||
"Remove from list": "إزالة من القائمة",
|
||||
"Remove tag": "إزالة العلامة",
|
||||
"Remove user": "إزالة المستخدم",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "حفظ",
|
||||
"SEARCH": "بحث",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "تحديد جميع الوسائط",
|
||||
"Select publish state:": "اختر حالة النشر:",
|
||||
"Selected": "محدد",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "مشاركة مني",
|
||||
"Shared with me": "مشاركة معي",
|
||||
"Sharing": "",
|
||||
"Sign in": "تسجيل الدخول",
|
||||
"Sign out": "تسجيل الخروج",
|
||||
"Sort By": "ترتيب حسب",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "تم تفعيل التعليقات بنجاح",
|
||||
"Successfully changed owner": "تم تغيير المالك بنجاح",
|
||||
"Successfully deleted": "تم الحذف بنجاح",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "تم التحديث بنجاح",
|
||||
"Successfully updated categories": "تم تحديث الفئات بنجاح",
|
||||
"Successfully updated playlist membership": "تم تحديث عضوية قائمة التشغيل بنجاح",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "رفع الوسائط",
|
||||
"Uploads": "التحميلات",
|
||||
"Users": "المستخدمون",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "عرض الكل",
|
||||
"Video": "فيديو",
|
||||
"View all": "عرض الكل",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "مرحباً",
|
||||
"You are going to copy": "سوف تقوم بالنسخ",
|
||||
"You are going to delete": "سوف تقوم بالحذف",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "سوف تقوم بتعطيل التعليقات لـ",
|
||||
"You are going to disable download for": "سوف تقوم بتعطيل التنزيل لـ",
|
||||
"You are going to enable comments to": "سوف تقوم بتفعيل التعليقات لـ",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "মিডিয়া মুছুন",
|
||||
"DOWNLOAD": "ডাউনলোড",
|
||||
"DURATION": "সময়কাল",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "",
|
||||
"Delete media": "মিডিয়া মুছুন",
|
||||
"Disable Comments": "",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "",
|
||||
"Failed to copy media.": "মিডিয়া কপি করতে ব্যর্থ হয়েছে।",
|
||||
"Failed to create playlist": "",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "মিডিয়া মুছতে ব্যর্থ হয়েছে। দয়া করে আবার চেষ্টা করুন।",
|
||||
"Failed to disable comments.": "মন্তব্য নিষ্ক্রিয় করতে ব্যর্থ হয়েছে।",
|
||||
"Failed to disable download.": "ডাউনলোড নিষ্ক্রিয় করতে ব্যর্থ হয়েছে।",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "",
|
||||
"Filter playlists...": "",
|
||||
"Filters": "ফিল্টার",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "যাও",
|
||||
"History": "ইতিহাস",
|
||||
"Home": "বাড়ি",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "মন্তব্য পরিচালনা করুন",
|
||||
"Manage media": "মিডিয়া পরিচালনা করুন",
|
||||
"Manage users": "ব্যবহারকারীদের পরিচালনা করুন",
|
||||
"Management": "",
|
||||
"Media": "মিডিয়া",
|
||||
"Media I own": "",
|
||||
"Media was edited": "মিডিয়া সম্পাদিত হয়েছে",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "এর জন্য কোন ফলাফল নেই",
|
||||
"No tags": "",
|
||||
"No users to add": "",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "প্লেলিস্ট",
|
||||
"PUBLISH STATE": "প্রকাশের অবস্থা",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "প্রকাশিত",
|
||||
"Recent uploads": "সাম্প্রতিক আপলোড",
|
||||
"Recommended": "প্রস্তাবিত",
|
||||
"Record": "",
|
||||
"Record Screen": "স্ক্রিন রেকর্ড করুন",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "নিবন্ধন করুন",
|
||||
"Remove category": "",
|
||||
"Remove from list": "",
|
||||
"Remove tag": "",
|
||||
"Remove user": "",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "সংরক্ষণ করুন",
|
||||
"SEARCH": "অনুসন্ধান",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "",
|
||||
"Select publish state:": "",
|
||||
"Selected": "",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "আমার দ্বারা শেয়ার করা",
|
||||
"Shared with me": "আমার সাথে শেয়ার করা",
|
||||
"Sharing": "",
|
||||
"Sign in": "সাইন ইন করুন",
|
||||
"Sign out": "সাইন আউট করুন",
|
||||
"Sort By": "সাজান",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "মন্তব্য সফলভাবে সক্রিয় হয়েছে",
|
||||
"Successfully changed owner": "",
|
||||
"Successfully deleted": "সফলভাবে মুছে ফেলা হয়েছে",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "",
|
||||
"Successfully updated categories": "",
|
||||
"Successfully updated playlist membership": "",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "মিডিয়া আপলোড করুন",
|
||||
"Uploads": "আপলোডসমূহ",
|
||||
"Users": "",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "সব দেখুন",
|
||||
"Video": "ভিডিও",
|
||||
"View all": "সব দেখুন",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "স্বাগতম",
|
||||
"You are going to copy": "আপনি কপি করতে চলেছেন",
|
||||
"You are going to delete": "আপনি মুছে ফেলতে চলেছেন",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "আপনি মন্তব্য নিষ্ক্রিয় করতে চলেছেন",
|
||||
"You are going to disable download for": "আপনি ডাউনলোড নিষ্ক্রিয় করতে চলেছেন",
|
||||
"You are going to enable comments to": "আপনি মন্তব্য সক্রিয় করতে চলেছেন",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "SLET MEDIE",
|
||||
"DOWNLOAD": "HENT",
|
||||
"DURATION": "VARIGHED",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Slet Medie",
|
||||
"Delete media": "Slet medie",
|
||||
"Disable Comments": "Deaktiver Kommentarer",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Ændring af ejer mislykkedes. Prøv venligst igen.",
|
||||
"Failed to copy media.": "Kopiering af medie mislykkedes.",
|
||||
"Failed to create playlist": "Oprettelse af playliste mislykkedes",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Sletning af medie mislykkedes. Prøv venligst igen.",
|
||||
"Failed to disable comments.": "Deaktivering af kommentarer mislykkedes.",
|
||||
"Failed to disable download.": "Deaktivering af download mislykkedes.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtrer eksisterende brugere...",
|
||||
"Filter playlists...": "Filtrer playlister...",
|
||||
"Filters": "Filtre",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Vælg",
|
||||
"History": "Historik",
|
||||
"Home": "Hjem",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Administrer kommentarer",
|
||||
"Manage media": "Administrer medier",
|
||||
"Manage users": "Administrer brugere",
|
||||
"Management": "",
|
||||
"Media": "Medier",
|
||||
"Media I own": "Medier jeg ejer",
|
||||
"Media was edited": "Mediet er blevet redigeret",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Ingen resultater for",
|
||||
"No tags": "Ingen tags",
|
||||
"No users to add": "Ingen brugere at tilføje",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "PLAYLISTER",
|
||||
"PUBLISH STATE": "PUBLICERINGSSTATUS",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Udgivet på",
|
||||
"Recent uploads": "Nylige uploads",
|
||||
"Recommended": "Anbefalet",
|
||||
"Record": "",
|
||||
"Record Screen": "Optag skærm",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registrer",
|
||||
"Remove category": "Fjern kategori",
|
||||
"Remove from list": "Fjern fra liste",
|
||||
"Remove tag": "Fjern tag",
|
||||
"Remove user": "Fjern bruger",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "GEM",
|
||||
"SEARCH": "SØG",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Vælg alle medier",
|
||||
"Select publish state:": "Vælg publiceringsstatus:",
|
||||
"Selected": "Valgt",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Delt af mig",
|
||||
"Shared with me": "Delt med mig",
|
||||
"Sharing": "",
|
||||
"Sign in": "Log ind",
|
||||
"Sign out": "Log ud",
|
||||
"Sort By": "Sorter efter",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Kommentarer aktiveret med succes",
|
||||
"Successfully changed owner": "Ejer ændret med succes",
|
||||
"Successfully deleted": "Slettet med succes",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Opdateret med succes",
|
||||
"Successfully updated categories": "Kategorier opdateret med succes",
|
||||
"Successfully updated playlist membership": "Playlistemedlemskab opdateret med succes",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Upload medie",
|
||||
"Uploads": "Uploads",
|
||||
"Users": "Brugere",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "SE ALLE",
|
||||
"Video": "Video",
|
||||
"View all": "Se alle",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Velkommen",
|
||||
"You are going to copy": "Du er ved at kopiere",
|
||||
"You are going to delete": "Du er ved at slette",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Du er ved at deaktivere kommentarer til",
|
||||
"You are going to disable download for": "Du er ved at deaktivere download for",
|
||||
"You are going to enable comments to": "Du er ved at aktivere kommentarer til",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "MEDIEN LÖSCHEN",
|
||||
"DOWNLOAD": "HERUNTERLADEN",
|
||||
"DURATION": "DAUER",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Medien löschen",
|
||||
"Delete media": "Medien löschen",
|
||||
"Disable Comments": "Kommentare deaktivieren",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Fehler beim Ändern des Eigentümers. Bitte versuchen Sie es erneut.",
|
||||
"Failed to copy media.": "Fehler beim Kopieren der Medien.",
|
||||
"Failed to create playlist": "Fehler beim Erstellen der Playlist",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Fehler beim Löschen der Medien. Bitte versuchen Sie es erneut.",
|
||||
"Failed to disable comments.": "Fehler beim Deaktivieren der Kommentare.",
|
||||
"Failed to disable download.": "Fehler beim Deaktivieren des Downloads.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Vorhandene Benutzer filtern...",
|
||||
"Filter playlists...": "Playlists filtern...",
|
||||
"Filters": "Filter",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Los",
|
||||
"History": "Verlauf",
|
||||
"Home": "Startseite",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Kommentare verwalten",
|
||||
"Manage media": "Medien verwalten",
|
||||
"Manage users": "Benutzer verwalten",
|
||||
"Management": "",
|
||||
"Media": "Medien",
|
||||
"Media I own": "Medien, die mir gehören",
|
||||
"Media was edited": "Medien wurden bearbeitet",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Keine Ergebnisse für",
|
||||
"No tags": "Keine Tags",
|
||||
"No users to add": "Keine Benutzer hinzuzufügen",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "PLAYLISTS",
|
||||
"PUBLISH STATE": "VERÖFFENTLICHUNGSSTATUS",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Veröffentlicht am",
|
||||
"Recent uploads": "Neue Uploads",
|
||||
"Recommended": "Empfohlen",
|
||||
"Record": "",
|
||||
"Record Screen": "Bildschirm aufnehmen",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registrieren",
|
||||
"Remove category": "Kategorie entfernen",
|
||||
"Remove from list": "Aus Liste entfernen",
|
||||
"Remove tag": "Tag entfernen",
|
||||
"Remove user": "Benutzer entfernen",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "SPEICHERN",
|
||||
"SEARCH": "SUCHE",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Alle Medien auswählen",
|
||||
"Select publish state:": "Veröffentlichungsstatus auswählen:",
|
||||
"Selected": "Ausgewählt",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Von mir geteilt",
|
||||
"Shared with me": "Mit mir geteilt",
|
||||
"Sharing": "",
|
||||
"Sign in": "Anmelden",
|
||||
"Sign out": "Abmelden",
|
||||
"Sort By": "Sortieren nach",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Kommentare erfolgreich aktiviert",
|
||||
"Successfully changed owner": "Eigentümer erfolgreich geändert",
|
||||
"Successfully deleted": "Erfolgreich gelöscht",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Erfolgreich aktualisiert",
|
||||
"Successfully updated categories": "Kategorien erfolgreich aktualisiert",
|
||||
"Successfully updated playlist membership": "Playlist-Mitgliedschaft erfolgreich aktualisiert",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Medien hochladen",
|
||||
"Uploads": "Uploads",
|
||||
"Users": "Benutzer",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "ALLE ANZEIGEN",
|
||||
"Video": "Video",
|
||||
"View all": "Alle anzeigen",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Willkommen",
|
||||
"You are going to copy": "Sie werden kopieren",
|
||||
"You are going to delete": "Sie werden löschen",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Sie werden Kommentare deaktivieren für",
|
||||
"You are going to disable download for": "Sie werden Download deaktivieren für",
|
||||
"You are going to enable comments to": "Sie werden Kommentare aktivieren für",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "ΔΙΑΓΡΑΦΗ ΑΡΧΕΙΟΥ",
|
||||
"DOWNLOAD": "ΚΑΤΕΒΑΣΜΑ",
|
||||
"DURATION": "ΔΙΑΡΚΕΙΑ",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Διαγραφή Αρχείου",
|
||||
"Delete media": "Διαγραφή αρχείου",
|
||||
"Disable Comments": "Απενεργοποίηση Σχολίων",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Αποτυχία αλλαγής ιδιοκτήτη. Παρακαλώ δοκιμάστε ξανά.",
|
||||
"Failed to copy media.": "Αποτυχία αντιγραφής αρχείου.",
|
||||
"Failed to create playlist": "Αποτυχία δημιουργίας λίστας",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Αποτυχία διαγραφής αρχείου. Παρακαλώ δοκιμάστε ξανά.",
|
||||
"Failed to disable comments.": "Αποτυχία απενεργοποίησης σχολίων.",
|
||||
"Failed to disable download.": "Αποτυχία απενεργοποίησης λήψης.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Φιλτράρισμα υπαρχόντων χρηστών...",
|
||||
"Filter playlists...": "Φιλτράρισμα λιστών...",
|
||||
"Filters": "Φίλτρα",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Μετάβαση",
|
||||
"History": "Ιστορικό",
|
||||
"Home": "Αρχική",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Διαχείριση σχολίων",
|
||||
"Manage media": "Διαχείριση αρχείων",
|
||||
"Manage users": "Διαχείριση χρηστών",
|
||||
"Management": "",
|
||||
"Media": "Αρχεία",
|
||||
"Media I own": "Δικά μου αρχεία",
|
||||
"Media was edited": "Το αρχείο επεξεργάστηκε",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Δεν υπάρχουν αποτελέσματα για",
|
||||
"No tags": "Δεν υπάρχουν ετικέτες",
|
||||
"No users to add": "Δεν υπάρχουν χρήστες για προσθήκη",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "ΛΙΣΤΕΣ",
|
||||
"PUBLISH STATE": "ΚΑΤΑΣΤΑΣΗ ΔΗΜΟΣΙΕΥΣΗΣ",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Δημοσιεύτηκε στις",
|
||||
"Recent uploads": "Πρόσφατα ανεβάσματα",
|
||||
"Recommended": "Προτεινόμενα",
|
||||
"Record": "",
|
||||
"Record Screen": "Καταγραφή οθόνης",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Εγγραφή",
|
||||
"Remove category": "Αφαίρεση κατηγορίας",
|
||||
"Remove from list": "Αφαίρεση από λίστα",
|
||||
"Remove tag": "Αφαίρεση ετικέτας",
|
||||
"Remove user": "Αφαίρεση χρήστη",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "ΑΠΟΘΗΚΕΥΣΗ",
|
||||
"SEARCH": "ΑΝΑΖΗΤΗΣΗ",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Επιλογή όλων των αρχείων",
|
||||
"Select publish state:": "Επιλέξτε κατάσταση δημοσίευσης:",
|
||||
"Selected": "Επιλεγμένα",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Κοινοποιήθηκαν από εμένα",
|
||||
"Shared with me": "Κοινοποιήθηκαν σε εμένα",
|
||||
"Sharing": "",
|
||||
"Sign in": "Σύνδεση",
|
||||
"Sign out": "Αποσύνδεση",
|
||||
"Sort By": "Ταξινόμηση",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Τα σχόλια ενεργοποιήθηκαν με επιτυχία",
|
||||
"Successfully changed owner": "Ο ιδιοκτήτης άλλαξε με επιτυχία",
|
||||
"Successfully deleted": "Διαγράφηκε με επιτυχία",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Ενημερώθηκε με επιτυχία",
|
||||
"Successfully updated categories": "Οι κατηγορίες ενημερώθηκαν με επιτυχία",
|
||||
"Successfully updated playlist membership": "Η συμμετοχή στη λίστα ενημερώθηκε με επιτυχία",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Ανέβασμα αρχείων",
|
||||
"Uploads": "Ανεβάσματα",
|
||||
"Users": "Χρήστες",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "ΔΕΣ ΤΑ ΟΛΑ",
|
||||
"Video": "Βίντεο",
|
||||
"View all": "Δες τα όλα",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Καλώς ήρθατε",
|
||||
"You are going to copy": "Πρόκειται να αντιγράψετε",
|
||||
"You are going to delete": "Πρόκειται να διαγράψετε",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Πρόκειται να απενεργοποιήσετε τα σχόλια για",
|
||||
"You are going to disable download for": "Πρόκειται να απενεργοποιήσετε τη λήψη για",
|
||||
"You are going to enable comments to": "Πρόκειται να ενεργοποιήσετε τα σχόλια για",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE": "",
|
||||
"DELETE MEDIA": "",
|
||||
"Delete media": "",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "",
|
||||
"Disable Comments": "",
|
||||
"Disable Download": "",
|
||||
@@ -72,7 +71,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "",
|
||||
"Failed to copy media.": "",
|
||||
"Failed to create playlist": "",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "",
|
||||
"Failed to disable comments.": "",
|
||||
"Failed to disable download.": "",
|
||||
@@ -104,7 +102,6 @@ translation_strings = {
|
||||
"Filter existing users...": "",
|
||||
"Filter playlists...": "",
|
||||
"Filters": "",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "",
|
||||
"History": "",
|
||||
"Home": "",
|
||||
@@ -120,7 +117,6 @@ translation_strings = {
|
||||
"Loading existing users...": "",
|
||||
"Loading playlists...": "",
|
||||
"Loading tags...": "",
|
||||
"Management": "",
|
||||
"Manage": "",
|
||||
"Manage comments": "",
|
||||
"Manage media": "",
|
||||
@@ -147,7 +143,6 @@ translation_strings = {
|
||||
"No results for": "",
|
||||
"No tags": "",
|
||||
"No users to add": "",
|
||||
"Organization": "",
|
||||
"or": "",
|
||||
"Pdf": "",
|
||||
"PLAYLISTS": "",
|
||||
@@ -167,11 +162,8 @@ translation_strings = {
|
||||
"Published": "",
|
||||
"Published on": "",
|
||||
"Recent uploads": "",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Recommended": "",
|
||||
"Record": "",
|
||||
"Record Screen": "",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "",
|
||||
"Replace": "",
|
||||
"Remove category": "",
|
||||
@@ -179,7 +171,6 @@ translation_strings = {
|
||||
"Remove tag": "",
|
||||
"Remove user": "",
|
||||
"results for": "",
|
||||
"Settings": "",
|
||||
"SAVE": "",
|
||||
"SEARCH": "",
|
||||
"Search": "",
|
||||
@@ -193,12 +184,6 @@ translation_strings = {
|
||||
"Selected": "",
|
||||
"selected": "",
|
||||
"SHARE": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Sharing": "",
|
||||
"Share with": "",
|
||||
"Shared by me": "",
|
||||
"Shared with me": "",
|
||||
"SHOW MORE": "",
|
||||
@@ -216,7 +201,6 @@ translation_strings = {
|
||||
"Successfully changed owner": "",
|
||||
"Successfully Copied": "",
|
||||
"Successfully deleted": "",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully Disabled comments": "",
|
||||
"Successfully Disabled Download": "",
|
||||
"Successfully Enabled comments": "",
|
||||
@@ -256,7 +240,6 @@ translation_strings = {
|
||||
"UPLOAD MEDIA": "",
|
||||
"Upload media": "",
|
||||
"Uploads": "",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"Users": "",
|
||||
"Video": "",
|
||||
"view": "",
|
||||
@@ -269,7 +252,6 @@ translation_strings = {
|
||||
"yet": "",
|
||||
"You are going to copy": "",
|
||||
"You are going to delete": "",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "",
|
||||
"You are going to disable download for": "",
|
||||
"You are going to enable comments to": "",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "ELIMINAR MEDIOS",
|
||||
"DOWNLOAD": "DESCARGAR",
|
||||
"DURATION": "DURACIÓN",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Eliminar Medio",
|
||||
"Delete media": "Eliminar medios",
|
||||
"Disable Comments": "Deshabilitar Comentarios",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Error al cambiar propietario. Por favor, inténtelo de nuevo.",
|
||||
"Failed to copy media.": "Error al copiar medios.",
|
||||
"Failed to create playlist": "Error al crear lista de reproducción",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Error al eliminar medios. Por favor, inténtelo de nuevo.",
|
||||
"Failed to disable comments.": "Error al deshabilitar comentarios.",
|
||||
"Failed to disable download.": "Error al deshabilitar descarga.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtrar usuarios existentes...",
|
||||
"Filter playlists...": "Filtrar listas de reproducción...",
|
||||
"Filters": "Filtros",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Ir",
|
||||
"History": "Historial",
|
||||
"Home": "Inicio",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Gestionar comentarios",
|
||||
"Manage media": "Gestionar medios",
|
||||
"Manage users": "Gestionar usuarios",
|
||||
"Management": "",
|
||||
"Media": "Medios",
|
||||
"Media I own": "Medios que poseo",
|
||||
"Media was edited": "El medio fue editado",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "No hay resultados para",
|
||||
"No tags": "Sin etiquetas",
|
||||
"No users to add": "No hay usuarios para agregar",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "LISTAS DE REPRODUCCIÓN",
|
||||
"PUBLISH STATE": "ESTADO DE PUBLICACIÓN",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Publicado en",
|
||||
"Recent uploads": "Subidas recientes",
|
||||
"Recommended": "Recomendado",
|
||||
"Record": "",
|
||||
"Record Screen": "Grabar pantalla",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registrarse",
|
||||
"Remove category": "Eliminar categoría",
|
||||
"Remove from list": "Eliminar de la lista",
|
||||
"Remove tag": "Eliminar etiqueta",
|
||||
"Remove user": "Eliminar usuario",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "GUARDAR",
|
||||
"SEARCH": "BUSCAR",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Seleccionar todos los medios",
|
||||
"Select publish state:": "Seleccionar estado de publicación:",
|
||||
"Selected": "Seleccionado",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Compartido por mí",
|
||||
"Shared with me": "Compartido conmigo",
|
||||
"Sharing": "",
|
||||
"Sign in": "Iniciar sesión",
|
||||
"Sign out": "Cerrar sesión",
|
||||
"Sort By": "Ordenar por",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Comentarios habilitados exitosamente",
|
||||
"Successfully changed owner": "Propietario cambiado exitosamente",
|
||||
"Successfully deleted": "Eliminado exitosamente",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Actualizado exitosamente",
|
||||
"Successfully updated categories": "Categorías actualizadas exitosamente",
|
||||
"Successfully updated playlist membership": "Membresía de lista de reproducción actualizada exitosamente",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Subir medios",
|
||||
"Uploads": "Subidas",
|
||||
"Users": "Usuarios",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "VER TODO",
|
||||
"Video": "Video",
|
||||
"View all": "Ver todo",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Bienvenido",
|
||||
"You are going to copy": "Vas a copiar",
|
||||
"You are going to delete": "Vas a eliminar",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Vas a deshabilitar comentarios de",
|
||||
"You are going to disable download for": "Vas a deshabilitar descarga de",
|
||||
"You are going to enable comments to": "Vas a habilitar comentarios de",
|
||||
|
||||
@@ -49,7 +49,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "SUPPRIMER LE MÉDIA",
|
||||
"DOWNLOAD": "TÉLÉCHARGER",
|
||||
"DURATION": "DURÉE",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Supprimer le média",
|
||||
"Delete media": "Supprimer le média",
|
||||
"Disable Comments": "Désactiver les commentaires",
|
||||
@@ -72,7 +71,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Échec du changement de propriétaire. Veuillez réessayer.",
|
||||
"Failed to copy media.": "Échec de la copie du média.",
|
||||
"Failed to create playlist": "Échec de la création de la playlist",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Échec de la suppression du média. Veuillez réessayer.",
|
||||
"Failed to disable comments.": "Échec de la désactivation des commentaires.",
|
||||
"Failed to disable download.": "Échec de la désactivation du téléchargement.",
|
||||
@@ -104,7 +102,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtrer les utilisateurs existants...",
|
||||
"Filter playlists...": "Filtrer les playlists...",
|
||||
"Filters": "Filtres",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Aller",
|
||||
"History": "Historique",
|
||||
"Home": "Accueil",
|
||||
@@ -125,7 +122,6 @@ translation_strings = {
|
||||
"Manage comments": "Gérer les commentaires",
|
||||
"Manage media": "Gérer les médias",
|
||||
"Manage users": "Gérer les utilisateurs",
|
||||
"Management": "",
|
||||
"Media": "Média",
|
||||
"Media I own": "Médias que je possède",
|
||||
"Media was edited": "Le média a été modifié",
|
||||
@@ -142,7 +138,6 @@ translation_strings = {
|
||||
"No results for": "Aucun résultat pour",
|
||||
"No tags": "Aucun tag",
|
||||
"No users to add": "Aucun utilisateur à ajouter",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "PLAYLISTS",
|
||||
"PUBLISH STATE": "ÉTAT DE PUBLICATION",
|
||||
"Pdf": "PDF",
|
||||
@@ -162,15 +157,12 @@ translation_strings = {
|
||||
"Published on": "Publié le",
|
||||
"Recent uploads": "Téléchargements récents",
|
||||
"Recommended": "Recommandé",
|
||||
"Record": "",
|
||||
"Record Screen": "Enregistrer l'écran",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "S'inscrire",
|
||||
"Remove category": "Supprimer la catégorie",
|
||||
"Remove from list": "Supprimer de la liste",
|
||||
"Remove tag": "Supprimer le tag",
|
||||
"Remove user": "Supprimer l'utilisateur",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "ENREGISTRER",
|
||||
"SEARCH": "RECHERCHER",
|
||||
@@ -187,15 +179,8 @@ translation_strings = {
|
||||
"Select all media": "Sélectionner tous les médias",
|
||||
"Select publish state:": "Sélectionner l'état de publication:",
|
||||
"Selected": "Sélectionné",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Partagé par moi",
|
||||
"Shared with me": "Partagé avec moi",
|
||||
"Sharing": "",
|
||||
"Sign in": "Se connecter",
|
||||
"Sign out": "Se déconnecter",
|
||||
"Sort By": "Trier par",
|
||||
@@ -212,7 +197,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Commentaires activés avec succès",
|
||||
"Successfully changed owner": "Propriétaire changé avec succès",
|
||||
"Successfully deleted": "Supprimé avec succès",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Mis à jour avec succès",
|
||||
"Successfully updated categories": "Catégories mises à jour avec succès",
|
||||
"Successfully updated playlist membership": "Adhésion à la playlist mise à jour avec succès",
|
||||
@@ -249,7 +233,6 @@ translation_strings = {
|
||||
"Upload media": "Télécharger des médias",
|
||||
"Uploads": "Téléchargements",
|
||||
"Users": "Utilisateurs",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "VOIR TOUT",
|
||||
"Video": "Vidéo",
|
||||
"View all": "Voir tout",
|
||||
@@ -258,7 +241,6 @@ translation_strings = {
|
||||
"Welcome": "Bienvenue",
|
||||
"You are going to copy": "Vous allez copier",
|
||||
"You are going to delete": "Vous allez supprimer",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Vous allez désactiver les commentaires de",
|
||||
"You are going to disable download for": "Vous allez désactiver le téléchargement de",
|
||||
"You are going to enable comments to": "Vous allez activer les commentaires de",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "מחק מדיה",
|
||||
"DOWNLOAD": "הורד",
|
||||
"DURATION": "משך",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "",
|
||||
"Delete media": "מחק מדיה",
|
||||
"Disable Comments": "",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "",
|
||||
"Failed to copy media.": "העתקת המדיה נכשלה.",
|
||||
"Failed to create playlist": "",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "מחיקת המדיה נכשלה. אנא נסה שוב.",
|
||||
"Failed to disable comments.": "ביטול התגובות נכשל.",
|
||||
"Failed to disable download.": "ביטול ההורדה נכשל.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "",
|
||||
"Filter playlists...": "",
|
||||
"Filters": "מסננים",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "בצע",
|
||||
"History": "היסטוריה",
|
||||
"Home": "דף הבית",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "ניהול תגובות",
|
||||
"Manage media": "ניהול מדיה",
|
||||
"Manage users": "ניהול משתמשים",
|
||||
"Management": "",
|
||||
"Media": "מדיה",
|
||||
"Media I own": "",
|
||||
"Media was edited": "המדיה נערכה",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "אין תוצאות עבור",
|
||||
"No tags": "",
|
||||
"No users to add": "",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "פלייליסטים",
|
||||
"PUBLISH STATE": "מצב פרסום",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "פורסם בתאריך",
|
||||
"Recent uploads": "העלאות אחרונות",
|
||||
"Recommended": "מומלץ",
|
||||
"Record": "",
|
||||
"Record Screen": "הקלטת מסך",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "הרשמה",
|
||||
"Remove category": "",
|
||||
"Remove from list": "",
|
||||
"Remove tag": "",
|
||||
"Remove user": "",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "שמור",
|
||||
"SEARCH": "חפש",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "",
|
||||
"Select publish state:": "",
|
||||
"Selected": "",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "שותף על ידי",
|
||||
"Shared with me": "שותף איתי",
|
||||
"Sharing": "",
|
||||
"Sign in": "התחבר",
|
||||
"Sign out": "התנתק",
|
||||
"Sort By": "מיין לפי",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "התגובות הופעלו בהצלחה",
|
||||
"Successfully changed owner": "",
|
||||
"Successfully deleted": "נמחק בהצלחה",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "",
|
||||
"Successfully updated categories": "",
|
||||
"Successfully updated playlist membership": "",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "העלה מדיה",
|
||||
"Uploads": "העלאות",
|
||||
"Users": "",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "הצג הכל",
|
||||
"Video": "וידאו",
|
||||
"View all": "הצג הכל",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "ברוך הבא",
|
||||
"You are going to copy": "אתה עומד להעתיק",
|
||||
"You are going to delete": "אתה עומד למחוק",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "אתה עומד לבטל תגובות ל",
|
||||
"You are going to disable download for": "אתה עומד לבטל הורדה עבור",
|
||||
"You are going to enable comments to": "אתה עומד להפעיל תגובות ל",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "मीडिया हटाएं",
|
||||
"DOWNLOAD": "डाउनलोड करें",
|
||||
"DURATION": "अवधि",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "मीडिया हटाएं",
|
||||
"Delete media": "मीडिया हटाएं",
|
||||
"Disable Comments": "टिप्पणियां अक्षम करें",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "स्वामी बदलने में विफल। कृपया पुनः प्रयास करें।",
|
||||
"Failed to copy media.": "मीडिया कॉपी करने में विफल।",
|
||||
"Failed to create playlist": "प्लेलिस्ट बनाने में विफल",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "मीडिया हटाने में विफल। कृपया पुनः प्रयास करें।",
|
||||
"Failed to disable comments.": "टिप्पणियों को अक्षम करने में विफल।",
|
||||
"Failed to disable download.": "डाउनलोड अक्षम करने में विफल।",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "मौजूदा उपयोगकर्ताओं को फ़िल्टर करें...",
|
||||
"Filter playlists...": "प्लेलिस्ट फ़िल्टर करें...",
|
||||
"Filters": "फ़िल्टर",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "जाएं",
|
||||
"History": "इतिहास",
|
||||
"Home": "मुख्य पृष्ठ",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "टिप्पणियाँ प्रबंधित करें",
|
||||
"Manage media": "मीडिया प्रबंधित करें",
|
||||
"Manage users": "उपयोगकर्ताओं को प्रबंधित करें",
|
||||
"Management": "",
|
||||
"Media": "मीडिया",
|
||||
"Media I own": "मेरे स्वामित्व वाली मीडिया",
|
||||
"Media was edited": "मीडिया संपादित किया गया था",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "के लिए कोई परिणाम नहीं",
|
||||
"No tags": "कोई टैग नहीं",
|
||||
"No users to add": "जोड़ने के लिए कोई उपयोगकर्ता नहीं",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "प्लेलिस्ट",
|
||||
"PUBLISH STATE": "प्रकाशन स्थिति",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "पर प्रकाशित",
|
||||
"Recent uploads": "हाल के अपलोड",
|
||||
"Recommended": "अनुशंसित",
|
||||
"Record": "",
|
||||
"Record Screen": "स्क्रीन रिकॉर्ड करें",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "पंजीकरण करें",
|
||||
"Remove category": "श्रेणी हटाएं",
|
||||
"Remove from list": "सूची से हटाएं",
|
||||
"Remove tag": "टैग हटाएं",
|
||||
"Remove user": "उपयोगकर्ता हटाएं",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "सहेजें",
|
||||
"SEARCH": "खोजें",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "सभी मीडिया चुनें",
|
||||
"Select publish state:": "प्रकाशन स्थिति चुनें:",
|
||||
"Selected": "चयनित",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "मेरे द्वारा साझा किया गया",
|
||||
"Shared with me": "मेरे साथ साझा किया गया",
|
||||
"Sharing": "",
|
||||
"Sign in": "साइन इन करें",
|
||||
"Sign out": "साइन आउट करें",
|
||||
"Sort By": "इसके अनुसार क्रमबद्ध करें",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "टिप्पणियां सफलतापूर्वक सक्षम की गईं",
|
||||
"Successfully changed owner": "स्वामी सफलतापूर्वक बदला गया",
|
||||
"Successfully deleted": "सफलतापूर्वक हटाया गया",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "सफलतापूर्वक अपडेट किया गया",
|
||||
"Successfully updated categories": "श्रेणियां सफलतापूर्वक अपडेट की गईं",
|
||||
"Successfully updated playlist membership": "प्लेलिस्ट सदस्यता सफलतापूर्वक अपडेट की गई",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "मीडिया अपलोड करें",
|
||||
"Uploads": "अपलोड",
|
||||
"Users": "उपयोगकर्ता",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "सभी देखें",
|
||||
"Video": "वीडियो",
|
||||
"View all": "सभी देखें",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "स्वागत है",
|
||||
"You are going to copy": "आप कॉपी करने जा रहे हैं",
|
||||
"You are going to delete": "आप हटाने जा रहे हैं",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "आप टिप्पणियों को अक्षम करने जा रहे हैं",
|
||||
"You are going to disable download for": "आप डाउनलोड को अक्षम करने जा रहे हैं",
|
||||
"You are going to enable comments to": "आप टिप्पणियों को सक्षम करने जा रहे हैं",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "HAPUS MEDIA",
|
||||
"DOWNLOAD": "UNDUH",
|
||||
"DURATION": "DURASI",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Hapus Media",
|
||||
"Delete media": "Hapus media",
|
||||
"Disable Comments": "Nonaktifkan Komentar",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Gagal mengganti pemilik. Silakan coba lagi.",
|
||||
"Failed to copy media.": "Gagal menyalin media.",
|
||||
"Failed to create playlist": "Gagal membuat daftar putar",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Gagal menghapus media. Silakan coba lagi.",
|
||||
"Failed to disable comments.": "Gagal menonaktifkan komentar.",
|
||||
"Failed to disable download.": "Gagal menonaktifkan unduhan.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filter pengguna yang ada...",
|
||||
"Filter playlists...": "Filter daftar putar...",
|
||||
"Filters": "Filter",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Pergi",
|
||||
"History": "Riwayat",
|
||||
"Home": "Beranda",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Kelola komentar",
|
||||
"Manage media": "Kelola media",
|
||||
"Manage users": "Kelola pengguna",
|
||||
"Management": "",
|
||||
"Media": "Media",
|
||||
"Media I own": "Media yang saya miliki",
|
||||
"Media was edited": "Media telah diedit",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Tidak ada hasil untuk",
|
||||
"No tags": "Tidak ada tag",
|
||||
"No users to add": "Tidak ada pengguna untuk ditambahkan",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "DAFTAR PUTAR",
|
||||
"PUBLISH STATE": "STATUS PUBLIKASI",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Diterbitkan pada",
|
||||
"Recent uploads": "Unggahan terbaru",
|
||||
"Recommended": "Direkomendasikan",
|
||||
"Record": "",
|
||||
"Record Screen": "Rekam Layar",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Daftar",
|
||||
"Remove category": "Hapus kategori",
|
||||
"Remove from list": "Hapus dari daftar",
|
||||
"Remove tag": "Hapus tag",
|
||||
"Remove user": "Hapus pengguna",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "SIMPAN",
|
||||
"SEARCH": "CARI",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Pilih semua media",
|
||||
"Select publish state:": "Pilih status publikasi:",
|
||||
"Selected": "Dipilih",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Dibagikan oleh saya",
|
||||
"Shared with me": "Dibagikan dengan saya",
|
||||
"Sharing": "",
|
||||
"Sign in": "Masuk",
|
||||
"Sign out": "Keluar",
|
||||
"Sort By": "Urutkan Berdasarkan",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Komentar berhasil diaktifkan",
|
||||
"Successfully changed owner": "Berhasil mengganti pemilik",
|
||||
"Successfully deleted": "Berhasil dihapus",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Berhasil diperbarui",
|
||||
"Successfully updated categories": "Kategori berhasil diperbarui",
|
||||
"Successfully updated playlist membership": "Keanggotaan daftar putar berhasil diperbarui",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Unggah media",
|
||||
"Uploads": "Unggahan",
|
||||
"Users": "Pengguna",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "LIHAT SEMUA",
|
||||
"Video": "Video",
|
||||
"View all": "Lihat semua",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Selamat datang",
|
||||
"You are going to copy": "Anda akan menyalin",
|
||||
"You are going to delete": "Anda akan menghapus",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Anda akan menonaktifkan komentar untuk",
|
||||
"You are going to disable download for": "Anda akan menonaktifkan unduhan untuk",
|
||||
"You are going to enable comments to": "Anda akan mengaktifkan komentar untuk",
|
||||
|
||||
@@ -49,7 +49,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "ELIMINA MEDIA",
|
||||
"DOWNLOAD": "SCARICA",
|
||||
"DURATION": "DURATA",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Elimina Media",
|
||||
"Delete media": "Elimina media",
|
||||
"Disable Comments": "Disabilita Commenti",
|
||||
@@ -72,7 +71,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Impossibile cambiare proprietario. Riprova.",
|
||||
"Failed to copy media.": "Impossibile copiare il media.",
|
||||
"Failed to create playlist": "Impossibile creare playlist",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Impossibile eliminare il media. Riprova.",
|
||||
"Failed to disable comments.": "Impossibile disabilitare i commenti.",
|
||||
"Failed to disable download.": "Impossibile disabilitare il download.",
|
||||
@@ -104,7 +102,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtra utenti esistenti...",
|
||||
"Filter playlists...": "Filtra playlist...",
|
||||
"Filters": "Filtri",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Vai",
|
||||
"History": "Cronologia",
|
||||
"Home": "Home",
|
||||
@@ -125,7 +122,6 @@ translation_strings = {
|
||||
"Manage comments": "Gestisci i commenti",
|
||||
"Manage media": "Gestisci i media",
|
||||
"Manage users": "Gestisci gli utenti",
|
||||
"Management": "",
|
||||
"Media": "Media",
|
||||
"Media I own": "Media di mia proprietà",
|
||||
"Media was edited": "Il media è stato modificato",
|
||||
@@ -142,7 +138,6 @@ translation_strings = {
|
||||
"No results for": "Nessun risultato per",
|
||||
"No tags": "Nessun tag",
|
||||
"No users to add": "Nessun utente da aggiungere",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "PLAYLIST",
|
||||
"PUBLISH STATE": "STATO DI PUBBLICAZIONE",
|
||||
"Pdf": "PDF",
|
||||
@@ -162,15 +157,12 @@ translation_strings = {
|
||||
"Published on": "Pubblicato il",
|
||||
"Recent uploads": "Caricamenti recenti",
|
||||
"Recommended": "Raccomandati",
|
||||
"Record": "",
|
||||
"Record Screen": "Registra schermo",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registrati",
|
||||
"Remove category": "Rimuovi categoria",
|
||||
"Remove from list": "Rimuovi dalla lista",
|
||||
"Remove tag": "Rimuovi tag",
|
||||
"Remove user": "Rimuovi utente",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "SALVA",
|
||||
"SEARCH": "CERCA",
|
||||
@@ -187,15 +179,8 @@ translation_strings = {
|
||||
"Select all media": "Seleziona tutti i media",
|
||||
"Select publish state:": "Seleziona stato di pubblicazione:",
|
||||
"Selected": "Selezionato",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Condiviso da me",
|
||||
"Shared with me": "Condiviso con me",
|
||||
"Sharing": "",
|
||||
"Sign in": "Login",
|
||||
"Sign out": "Logout",
|
||||
"Sort By": "Ordina per",
|
||||
@@ -212,7 +197,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Commenti abilitati con successo",
|
||||
"Successfully changed owner": "Proprietario cambiato con successo",
|
||||
"Successfully deleted": "Eliminato con successo",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Aggiornato con successo",
|
||||
"Successfully updated categories": "Categorie aggiornate con successo",
|
||||
"Successfully updated playlist membership": "Appartenenza alla playlist aggiornata con successo",
|
||||
@@ -249,7 +233,6 @@ translation_strings = {
|
||||
"Upload media": "Carica i media",
|
||||
"Uploads": "Caricamenti",
|
||||
"Users": "Utenti",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "MOSTRA TUTTI",
|
||||
"Video": "Video",
|
||||
"View all": "Mostra tutti",
|
||||
@@ -258,7 +241,6 @@ translation_strings = {
|
||||
"Welcome": "Benvenuto",
|
||||
"You are going to copy": "Stai per copiare",
|
||||
"You are going to delete": "Stai per eliminare",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Stai per disabilitare i commenti di",
|
||||
"You are going to disable download for": "Stai per disabilitare il download di",
|
||||
"You are going to enable comments to": "Stai per abilitare i commenti di",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "メディアを削除",
|
||||
"DOWNLOAD": "ダウンロード",
|
||||
"DURATION": "期間",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "メディアを削除",
|
||||
"Delete media": "メディアを削除",
|
||||
"Disable Comments": "コメントを無効化",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "所有者の変更に失敗しました。もう一度お試しください。",
|
||||
"Failed to copy media.": "メディアのコピーに失敗しました。",
|
||||
"Failed to create playlist": "プレイリストの作成に失敗しました",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "メディアの削除に失敗しました。もう一度お試しください。",
|
||||
"Failed to disable comments.": "コメントの無効化に失敗しました。",
|
||||
"Failed to disable download.": "ダウンロードの無効化に失敗しました。",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "既存ユーザーをフィルター...",
|
||||
"Filter playlists...": "プレイリストをフィルター...",
|
||||
"Filters": "フィルター",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "行く",
|
||||
"History": "履歴",
|
||||
"Home": "ホーム",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "コメントを管理",
|
||||
"Manage media": "メディアを管理",
|
||||
"Manage users": "ユーザーを管理",
|
||||
"Management": "",
|
||||
"Media": "メディア",
|
||||
"Media I own": "自分が所有するメディア",
|
||||
"Media was edited": "メディアが編集されました",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "の結果はありません",
|
||||
"No tags": "タグなし",
|
||||
"No users to add": "追加するユーザーなし",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "プレイリスト",
|
||||
"PUBLISH STATE": "公開状態",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "公開日",
|
||||
"Recent uploads": "最近のアップロード",
|
||||
"Recommended": "おすすめ",
|
||||
"Record": "",
|
||||
"Record Screen": "画面を録画",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "登録",
|
||||
"Remove category": "カテゴリーを削除",
|
||||
"Remove from list": "リストから削除",
|
||||
"Remove tag": "タグを削除",
|
||||
"Remove user": "ユーザーを削除",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "保存",
|
||||
"SEARCH": "検索",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "すべてのメディアを選択",
|
||||
"Select publish state:": "公開状態を選択:",
|
||||
"Selected": "選択済み",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "自分が共有",
|
||||
"Shared with me": "共有されたもの",
|
||||
"Sharing": "",
|
||||
"Sign in": "サインイン",
|
||||
"Sign out": "サインアウト",
|
||||
"Sort By": "並び替え",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "コメントが正常に有効化されました",
|
||||
"Successfully changed owner": "所有者が正常に変更されました",
|
||||
"Successfully deleted": "正常に削除されました",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "正常に更新されました",
|
||||
"Successfully updated categories": "カテゴリーが正常に更新されました",
|
||||
"Successfully updated playlist membership": "プレイリストメンバーシップが正常に更新されました",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "メディアをアップロード",
|
||||
"Uploads": "アップロード",
|
||||
"Users": "ユーザー",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "すべて表示",
|
||||
"Video": "ビデオ",
|
||||
"View all": "すべて表示",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "ようこそ",
|
||||
"You are going to copy": "コピーします",
|
||||
"You are going to delete": "削除します",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "コメントを無効化します",
|
||||
"You are going to disable download for": "ダウンロードを無効化します",
|
||||
"You are going to enable comments to": "コメントを有効化します",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "미디어 삭제",
|
||||
"DOWNLOAD": "다운로드",
|
||||
"DURATION": "재생 시간",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "미디어 삭제",
|
||||
"Delete media": "미디어 삭제",
|
||||
"Disable Comments": "댓글 비활성화",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "소유자 변경에 실패했습니다. 다시 시도해주세요.",
|
||||
"Failed to copy media.": "미디어 복사에 실패했습니다.",
|
||||
"Failed to create playlist": "재생 목록 만들기 실패",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "미디어 삭제에 실패했습니다. 다시 시도해주세요.",
|
||||
"Failed to disable comments.": "댓글 비활성화에 실패했습니다.",
|
||||
"Failed to disable download.": "다운로드 비활성화에 실패했습니다.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "기존 사용자 필터링...",
|
||||
"Filter playlists...": "재생 목록 필터링...",
|
||||
"Filters": "필터",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "이동",
|
||||
"History": "기록",
|
||||
"Home": "홈",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "댓글 관리",
|
||||
"Manage media": "미디어 관리",
|
||||
"Manage users": "사용자 관리",
|
||||
"Management": "",
|
||||
"Media": "미디어",
|
||||
"Media I own": "내가 소유한 미디어",
|
||||
"Media was edited": "미디어가 편집되었습니다",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "결과 없음",
|
||||
"No tags": "태그 없음",
|
||||
"No users to add": "추가할 사용자 없음",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "재생 목록",
|
||||
"PUBLISH STATE": "게시 상태",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "게시일",
|
||||
"Recent uploads": "최근 업로드",
|
||||
"Recommended": "추천",
|
||||
"Record": "",
|
||||
"Record Screen": "화면 녹화",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "등록",
|
||||
"Remove category": "카테고리 제거",
|
||||
"Remove from list": "목록에서 제거",
|
||||
"Remove tag": "태그 제거",
|
||||
"Remove user": "사용자 제거",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "저장",
|
||||
"SEARCH": "검색",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "모든 미디어 선택",
|
||||
"Select publish state:": "게시 상태 선택:",
|
||||
"Selected": "선택됨",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "내가 공유함",
|
||||
"Shared with me": "나와 공유됨",
|
||||
"Sharing": "",
|
||||
"Sign in": "로그인",
|
||||
"Sign out": "로그아웃",
|
||||
"Sort By": "정렬",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "댓글이 활성화되었습니다",
|
||||
"Successfully changed owner": "소유자가 변경되었습니다",
|
||||
"Successfully deleted": "삭제 성공",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "업데이트 성공",
|
||||
"Successfully updated categories": "카테고리가 업데이트되었습니다",
|
||||
"Successfully updated playlist membership": "재생 목록 멤버십이 업데이트되었습니다",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "미디어 업로드",
|
||||
"Uploads": "업로드",
|
||||
"Users": "사용자",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "모두 보기",
|
||||
"Video": "비디오",
|
||||
"View all": "모두 보기",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "환영합니다",
|
||||
"You are going to copy": "복사하려고 합니다",
|
||||
"You are going to delete": "삭제하려고 합니다",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "댓글을 비활성화하려고 합니다",
|
||||
"You are going to disable download for": "다운로드를 비활성화하려고 합니다",
|
||||
"You are going to enable comments to": "댓글을 활성화하려고 합니다",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "MEDIA VERWIJDEREN",
|
||||
"DOWNLOAD": "DOWNLOADEN",
|
||||
"DURATION": "DUUR",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Media verwijderen",
|
||||
"Delete media": "Media verwijderen",
|
||||
"Disable Comments": "Reacties uitschakelen",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Eigenaar wijzigen mislukt. Probeer het opnieuw.",
|
||||
"Failed to copy media.": "Media kopiëren mislukt.",
|
||||
"Failed to create playlist": "Afspeellijst maken mislukt",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Media verwijderen mislukt. Probeer het opnieuw.",
|
||||
"Failed to disable comments.": "Reacties uitschakelen mislukt.",
|
||||
"Failed to disable download.": "Download uitschakelen mislukt.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filter bestaande gebruikers...",
|
||||
"Filter playlists...": "Filter afspeellijsten...",
|
||||
"Filters": "Filters",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Ga",
|
||||
"History": "Geschiedenis",
|
||||
"Home": "Home",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Reacties beheren",
|
||||
"Manage media": "Media beheren",
|
||||
"Manage users": "Gebruikers beheren",
|
||||
"Management": "",
|
||||
"Media": "Media",
|
||||
"Media I own": "Media die ik bezit",
|
||||
"Media was edited": "Media is bewerkt",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Geen resultaten voor",
|
||||
"No tags": "Geen tags",
|
||||
"No users to add": "Geen gebruikers om toe te voegen",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "AFSPEELLIJSTEN",
|
||||
"PUBLISH STATE": "PUBLICATIESTATUS",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Gepubliceerd op",
|
||||
"Recent uploads": "Recente uploads",
|
||||
"Recommended": "Aanbevolen",
|
||||
"Record": "",
|
||||
"Record Screen": "Scherm opnemen",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registreren",
|
||||
"Remove category": "Categorie verwijderen",
|
||||
"Remove from list": "Verwijderen uit lijst",
|
||||
"Remove tag": "Tag verwijderen",
|
||||
"Remove user": "Gebruiker verwijderen",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "OPSLAAN",
|
||||
"SEARCH": "ZOEKEN",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Alle media selecteren",
|
||||
"Select publish state:": "Selecteer publicatiestatus:",
|
||||
"Selected": "Geselecteerd",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Gedeeld door mij",
|
||||
"Shared with me": "Gedeeld met mij",
|
||||
"Sharing": "",
|
||||
"Sign in": "Inloggen",
|
||||
"Sign out": "Uitloggen",
|
||||
"Sort By": "Sorteer op",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Reacties succesvol ingeschakeld",
|
||||
"Successfully changed owner": "Eigenaar succesvol gewijzigd",
|
||||
"Successfully deleted": "Succesvol verwijderd",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Succesvol bijgewerkt",
|
||||
"Successfully updated categories": "Categorieën succesvol bijgewerkt",
|
||||
"Successfully updated playlist membership": "Afspeellijstlidmaatschap succesvol bijgewerkt",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Media uploaden",
|
||||
"Uploads": "Uploads",
|
||||
"Users": "Gebruikers",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "BEKIJK ALLES",
|
||||
"Video": "Video",
|
||||
"View all": "Bekijk alles",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Welkom",
|
||||
"You are going to copy": "Je gaat kopiëren",
|
||||
"You are going to delete": "Je gaat verwijderen",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Je gaat reacties uitschakelen voor",
|
||||
"You are going to disable download for": "Je gaat download uitschakelen voor",
|
||||
"You are going to enable comments to": "Je gaat reacties inschakelen voor",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "EXCLUIR MÍDIA",
|
||||
"DOWNLOAD": "BAIXAR",
|
||||
"DURATION": "DURAÇÃO",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Excluir mídia",
|
||||
"Delete media": "Excluir mídia",
|
||||
"Disable Comments": "Desativar comentários",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Falha ao mudar proprietário. Por favor, tente novamente.",
|
||||
"Failed to copy media.": "Falha ao copiar mídia.",
|
||||
"Failed to create playlist": "Falha ao criar playlist",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Falha ao excluir mídia. Por favor, tente novamente.",
|
||||
"Failed to disable comments.": "Falha ao desativar comentários.",
|
||||
"Failed to disable download.": "Falha ao desativar download.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtrar usuários existentes...",
|
||||
"Filter playlists...": "Filtrar playlists...",
|
||||
"Filters": "Filtros",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Ir",
|
||||
"History": "Histórico",
|
||||
"Home": "Início",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Gerenciar comentários",
|
||||
"Manage media": "Gerenciar mídia",
|
||||
"Manage users": "Gerenciar usuários",
|
||||
"Management": "",
|
||||
"Media": "Mídia",
|
||||
"Media I own": "Mídia que possuo",
|
||||
"Media was edited": "Mídia foi editada",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Nenhum resultado para",
|
||||
"No tags": "Nenhuma tag",
|
||||
"No users to add": "Nenhum usuário para adicionar",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "PLAYLISTS",
|
||||
"PUBLISH STATE": "ESTADO DE PUBLICAÇÃO",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Publicado em",
|
||||
"Recent uploads": "Uploads recentes",
|
||||
"Recommended": "Recomendado",
|
||||
"Record": "",
|
||||
"Record Screen": "Gravar tela",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registrar",
|
||||
"Remove category": "Remover categoria",
|
||||
"Remove from list": "Remover da lista",
|
||||
"Remove tag": "Remover tag",
|
||||
"Remove user": "Remover usuário",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "SALVAR",
|
||||
"SEARCH": "PESQUISAR",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Selecionar todas as mídias",
|
||||
"Select publish state:": "Selecionar estado de publicação:",
|
||||
"Selected": "Selecionado",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Compartilhado por mim",
|
||||
"Shared with me": "Compartilhado comigo",
|
||||
"Sharing": "",
|
||||
"Sign in": "Entrar",
|
||||
"Sign out": "Sair",
|
||||
"Sort By": "Ordenar por",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Comentários ativados com sucesso",
|
||||
"Successfully changed owner": "Proprietário alterado com sucesso",
|
||||
"Successfully deleted": "Excluído com sucesso",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Atualizado com sucesso",
|
||||
"Successfully updated categories": "Categorias atualizadas com sucesso",
|
||||
"Successfully updated playlist membership": "Associação da playlist atualizada com sucesso",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Carregar mídia",
|
||||
"Uploads": "Uploads",
|
||||
"Users": "Usuários",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "VER TODOS",
|
||||
"Video": "Vídeo",
|
||||
"View all": "Ver todos",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Bem-vindo",
|
||||
"You are going to copy": "Você vai copiar",
|
||||
"You are going to delete": "Você vai excluir",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Você vai desativar comentários de",
|
||||
"You are going to disable download for": "Você vai desativar download de",
|
||||
"You are going to enable comments to": "Você vai ativar comentários de",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "УДАЛИТЬ МЕДИА",
|
||||
"DOWNLOAD": "СКАЧАТЬ",
|
||||
"DURATION": "ДЛИТЕЛЬНОСТЬ",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Удалить медиа",
|
||||
"Delete media": "Удалить медиа",
|
||||
"Disable Comments": "Отключить комментарии",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Не удалось изменить владельца. Пожалуйста, попробуйте снова.",
|
||||
"Failed to copy media.": "Не удалось скопировать медиа.",
|
||||
"Failed to create playlist": "Не удалось создать плейлист",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Не удалось удалить медиа. Пожалуйста, попробуйте снова.",
|
||||
"Failed to disable comments.": "Не удалось отключить комментарии.",
|
||||
"Failed to disable download.": "Не удалось отключить загрузку.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Фильтровать существующих пользователей...",
|
||||
"Filter playlists...": "Фильтровать плейлисты...",
|
||||
"Filters": "Фильтры",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Перейти",
|
||||
"History": "История",
|
||||
"Home": "Главная",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Управление комментариями",
|
||||
"Manage media": "Управление медиа",
|
||||
"Manage users": "Управление пользователями",
|
||||
"Management": "",
|
||||
"Media": "Медиа",
|
||||
"Media I own": "Медиа, которыми я владею",
|
||||
"Media was edited": "Медиа было отредактировано",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Нет результатов для",
|
||||
"No tags": "Нет тегов",
|
||||
"No users to add": "Нет пользователей для добавления",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "ПЛЕЙЛИСТЫ",
|
||||
"PUBLISH STATE": "СОСТОЯНИЕ ПУБЛИКАЦИИ",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Опубликовано",
|
||||
"Recent uploads": "Недавние загрузки",
|
||||
"Recommended": "Рекомендуемое",
|
||||
"Record": "",
|
||||
"Record Screen": "Запись экрана",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Регистрация",
|
||||
"Remove category": "Удалить категорию",
|
||||
"Remove from list": "Удалить из списка",
|
||||
"Remove tag": "Удалить тег",
|
||||
"Remove user": "Удалить пользователя",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "СОХРАНИТЬ",
|
||||
"SEARCH": "ПОИСК",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Выбрать все медиа",
|
||||
"Select publish state:": "Выберите состояние публикации:",
|
||||
"Selected": "Выбрано",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Мной поделено",
|
||||
"Shared with me": "Поделено со мной",
|
||||
"Sharing": "",
|
||||
"Sign in": "Войти",
|
||||
"Sign out": "Выйти",
|
||||
"Sort By": "Сортировать по",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Комментарии успешно включены",
|
||||
"Successfully changed owner": "Владелец успешно изменен",
|
||||
"Successfully deleted": "Успешно удалено",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Успешно обновлено",
|
||||
"Successfully updated categories": "Категории успешно обновлены",
|
||||
"Successfully updated playlist membership": "Членство в плейлисте успешно обновлено",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Загрузить медиа",
|
||||
"Uploads": "Загрузки",
|
||||
"Users": "Пользователи",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "ПОКАЗАТЬ ВСЕ",
|
||||
"Video": "Видео",
|
||||
"View all": "Показать все",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Добро пожаловать",
|
||||
"You are going to copy": "Вы собираетесь скопировать",
|
||||
"You are going to delete": "Вы собираетесь удалить",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Вы собираетесь отключить комментарии для",
|
||||
"You are going to disable download for": "Вы собираетесь отключить загрузку для",
|
||||
"You are going to enable comments to": "Вы собираетесь включить комментарии для",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "IZBRIŠI MEDIJ",
|
||||
"DOWNLOAD": "PRENESI",
|
||||
"DURATION": "TRAJANJE",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Izbriši Medij",
|
||||
"Delete media": "Izbriši medij",
|
||||
"Disable Comments": "Onemogoči Komentarje",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Spreminjanje lastnika ni uspelo. Prosim poskusite ponovno.",
|
||||
"Failed to copy media.": "Kopiranje medija ni uspelo.",
|
||||
"Failed to create playlist": "Ustvarjanje seznama predvajanja ni uspelo",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Brisanje medija ni uspelo. Prosim poskusite ponovno.",
|
||||
"Failed to disable comments.": "Onemogočanje komentarjev ni uspelo.",
|
||||
"Failed to disable download.": "Onemogočanje prenosa ni uspelo.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Filtriraj obstoječe uporabnike...",
|
||||
"Filter playlists...": "Filtriraj sezname predvajanja...",
|
||||
"Filters": "Filtri",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Pojdi",
|
||||
"History": "Zgodovina",
|
||||
"Home": "Domov",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Upravljaj komentarje",
|
||||
"Manage media": "Upravljaj medije",
|
||||
"Manage users": "Upravljaj uporabnike",
|
||||
"Management": "",
|
||||
"Media": "Mediji",
|
||||
"Media I own": "Mediji, ki jih posedujam",
|
||||
"Media was edited": "Medij je bil urejen",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Ni rezultatov za",
|
||||
"No tags": "Brez oznak",
|
||||
"No users to add": "Ni uporabnikov za dodajanje",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "SEZNAMI PREDVAJANJA",
|
||||
"PUBLISH STATE": "STANJE OBJAVE",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Objavljeno",
|
||||
"Recent uploads": "Nedavne naložitve",
|
||||
"Recommended": "Priporočeno",
|
||||
"Record": "",
|
||||
"Record Screen": "Snemanje zaslona",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Registracija",
|
||||
"Remove category": "Odstrani kategorijo",
|
||||
"Remove from list": "Odstrani s seznama",
|
||||
"Remove tag": "Odstrani oznako",
|
||||
"Remove user": "Odstrani uporabnika",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "SHRANI",
|
||||
"SEARCH": "ISKANJE",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Izberi vse medije",
|
||||
"Select publish state:": "Izberi stanje objave:",
|
||||
"Selected": "Izbrano",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Deljeno z moje strani",
|
||||
"Shared with me": "Deljeno z mano",
|
||||
"Sharing": "",
|
||||
"Sign in": "Prijava",
|
||||
"Sign out": "Odjava",
|
||||
"Sort By": "Razvrsti po",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Komentarji uspešno omogočeni",
|
||||
"Successfully changed owner": "Lastnik uspešno spremenjen",
|
||||
"Successfully deleted": "Uspešno izbrisano",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Uspešno posodobljeno",
|
||||
"Successfully updated categories": "Kategorije uspešno posodobljene",
|
||||
"Successfully updated playlist membership": "Članstvo seznama predvajanja uspešno posodobljeno",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Naloži medij",
|
||||
"Uploads": "Naloženi",
|
||||
"Users": "Uporabniki",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "PRIKAŽI VSE",
|
||||
"Video": "Video",
|
||||
"View all": "Prikaži vse",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Dobrodošli",
|
||||
"You are going to copy": "Kopirate",
|
||||
"You are going to delete": "Brišete",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Onemogočate komentarje za",
|
||||
"You are going to disable download for": "Onemogočate prenos za",
|
||||
"You are going to enable comments to": "Omogočate komentarje za",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "MEDYAYI SİL",
|
||||
"DOWNLOAD": "İNDİR",
|
||||
"DURATION": "SÜRE",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "Medyayı Sil",
|
||||
"Delete media": "Medyayı sil",
|
||||
"Disable Comments": "Yorumları Devre Dışı Bırak",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "Sahip değiştirilemedi. Lütfen tekrar deneyin.",
|
||||
"Failed to copy media.": "Medya kopyalanamadı.",
|
||||
"Failed to create playlist": "Çalma listesi oluşturulamadı",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "Medya silinemedi. Lütfen tekrar deneyin.",
|
||||
"Failed to disable comments.": "Yorumlar devre dışı bırakılamadı.",
|
||||
"Failed to disable download.": "İndirme devre dışı bırakılamadı.",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "Mevcut kullanıcıları filtrele...",
|
||||
"Filter playlists...": "Çalma listelerini filtrele...",
|
||||
"Filters": "Filtreler",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "Git",
|
||||
"History": "Geçmiş",
|
||||
"Home": "Ana Sayfa",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "Yorumları yönet",
|
||||
"Manage media": "Medyayı yönet",
|
||||
"Manage users": "Kullanıcıları yönet",
|
||||
"Management": "",
|
||||
"Media": "Medya",
|
||||
"Media I own": "Sahip olduğum medya",
|
||||
"Media was edited": "Medya düzenlendi",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "Sonuç bulunamadı",
|
||||
"No tags": "Etiket yok",
|
||||
"No users to add": "Eklenecek kullanıcı yok",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "ÇALMA LİSTELERİ",
|
||||
"PUBLISH STATE": "YAYINLANMA DURUMU",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "Yayınlanma tarihi",
|
||||
"Recent uploads": "Son yüklemeler",
|
||||
"Recommended": "Önerilen",
|
||||
"Record": "",
|
||||
"Record Screen": "Ekranı Kaydet",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "Kayıt Ol",
|
||||
"Remove category": "Kategoriyi kaldır",
|
||||
"Remove from list": "Listeden kaldır",
|
||||
"Remove tag": "Etiketi kaldır",
|
||||
"Remove user": "Kullanıcıyı kaldır",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "KAYDET",
|
||||
"SEARCH": "ARA",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "Tüm medyayı seç",
|
||||
"Select publish state:": "Yayınlanma durumunu seç:",
|
||||
"Selected": "Seçildi",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "Paylaştıklarım",
|
||||
"Shared with me": "Benimle paylaşılanlar",
|
||||
"Sharing": "",
|
||||
"Sign in": "Giriş Yap",
|
||||
"Sign out": "Çıkış Yap",
|
||||
"Sort By": "Sırala",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "Yorumlar başarıyla etkinleştirildi",
|
||||
"Successfully changed owner": "Sahip başarıyla değiştirildi",
|
||||
"Successfully deleted": "Başarıyla silindi",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "Başarıyla güncellendi",
|
||||
"Successfully updated categories": "Kategoriler başarıyla güncellendi",
|
||||
"Successfully updated playlist membership": "Çalma listesi üyeliği başarıyla güncellendi",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "Medya yükle",
|
||||
"Uploads": "Yüklemeler",
|
||||
"Users": "Kullanıcılar",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "HEPSİNİ GÖR",
|
||||
"Video": "Video",
|
||||
"View all": "Hepsini gör",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "Hoş geldiniz",
|
||||
"You are going to copy": "Kopyalayacaksınız",
|
||||
"You are going to delete": "Sileceksiniz",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "Yorumları devre dışı bırakacaksınız",
|
||||
"You are going to disable download for": "İndirmeyi devre dışı bırakacaksınız",
|
||||
"You are going to enable comments to": "Yorumları etkinleştireceksiniz",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "میڈیا حذف کریں",
|
||||
"DOWNLOAD": "ڈاؤن لوڈ",
|
||||
"DURATION": "دورانیہ",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "میڈیا حذف کریں",
|
||||
"Delete media": "میڈیا حذف کریں",
|
||||
"Disable Comments": "تبصرے غیر فعال کریں",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "مالک تبدیل کرنے میں ناکام۔ براہ کرم دوبارہ کوشش کریں۔",
|
||||
"Failed to copy media.": "میڈیا کاپی کرنے میں ناکام۔",
|
||||
"Failed to create playlist": "پلے لسٹ بنانے میں ناکام",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "میڈیا حذف کرنے میں ناکام۔ براہ کرم دوبارہ کوشش کریں۔",
|
||||
"Failed to disable comments.": "تبصرے غیر فعال کرنے میں ناکام۔",
|
||||
"Failed to disable download.": "ڈاؤن لوڈ غیر فعال کرنے میں ناکام۔",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "موجودہ صارفین فلٹر کریں...",
|
||||
"Filter playlists...": "پلے لسٹس فلٹر کریں...",
|
||||
"Filters": "فلٹرز",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "جائیں",
|
||||
"History": "تاریخ",
|
||||
"Home": "ہوم",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "تبصرے منظم کریں",
|
||||
"Manage media": "میڈیا منظم کریں",
|
||||
"Manage users": "صارفین منظم کریں",
|
||||
"Management": "",
|
||||
"Media": "میڈیا",
|
||||
"Media I own": "",
|
||||
"Media was edited": "میڈیا ترمیم کیا گیا",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "کے لئے کوئی نتائج نہیں",
|
||||
"No tags": "کوئی ٹیگز نہیں",
|
||||
"No users to add": "شامل کرنے کے لیے کوئی صارف نہیں",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "پلے لسٹس",
|
||||
"PUBLISH STATE": "اشاعت کی حالت",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "پر شائع ہوا",
|
||||
"Recent uploads": "حالیہ اپ لوڈز",
|
||||
"Recommended": "تجویز کردہ",
|
||||
"Record": "",
|
||||
"Record Screen": "اسکرین ریکارڈ کریں",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "رجسٹر کریں",
|
||||
"Remove category": "قسم ہٹائیں",
|
||||
"Remove from list": "فہرست سے ہٹائیں",
|
||||
"Remove tag": "ٹیگ ہٹائیں",
|
||||
"Remove user": "صارف ہٹائیں",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "محفوظ کریں",
|
||||
"SEARCH": "تلاش کریں",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "تمام میڈیا منتخب کریں",
|
||||
"Select publish state:": "اشاعت کی حالت منتخب کریں:",
|
||||
"Selected": "منتخب شدہ",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "میری طرف سے شیئر کیا گیا",
|
||||
"Shared with me": "میرے ساتھ شیئر کیا گیا",
|
||||
"Sharing": "",
|
||||
"Sign in": "سائن ان کریں",
|
||||
"Sign out": "سائن آؤٹ کریں",
|
||||
"Sort By": "ترتیب دیں",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "تبصرے کامیابی سے فعال ہو گئے",
|
||||
"Successfully changed owner": "مالک کامیابی سے تبدیل ہو گیا",
|
||||
"Successfully deleted": "کامیابی سے حذف ہو گیا",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "کامیابی سے اپ ڈیٹ ہو گیا",
|
||||
"Successfully updated categories": "اقسام کامیابی سے اپ ڈیٹ ہو گئیں",
|
||||
"Successfully updated playlist membership": "پلے لسٹ ممبرشپ کامیابی سے اپ ڈیٹ ہو گئی",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "میڈیا اپ لوڈ کریں",
|
||||
"Uploads": "اپ لوڈز",
|
||||
"Users": "صارفین",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "سب دیکھیں",
|
||||
"Video": "ویڈیو",
|
||||
"View all": "سب دیکھیں",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "خوش آمدید",
|
||||
"You are going to copy": "آپ کاپی کرنے جا رہے ہیں",
|
||||
"You are going to delete": "آپ حذف کرنے جا رہے ہیں",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "آپ تبصرے غیر فعال کرنے جا رہے ہیں",
|
||||
"You are going to disable download for": "آپ ڈاؤن لوڈ غیر فعال کرنے جا رہے ہیں",
|
||||
"You are going to enable comments to": "آپ تبصرے فعال کرنے جا رہے ہیں",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "删除媒体",
|
||||
"DOWNLOAD": "下载",
|
||||
"DURATION": "时长",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "",
|
||||
"Delete media": "删除媒体",
|
||||
"Disable Comments": "",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "",
|
||||
"Failed to copy media.": "复制媒体失败。",
|
||||
"Failed to create playlist": "",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "删除媒体失败。请重试。",
|
||||
"Failed to disable comments.": "禁用评论失败。",
|
||||
"Failed to disable download.": "禁用下载失败。",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "",
|
||||
"Filter playlists...": "",
|
||||
"Filters": "筛选",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "去",
|
||||
"History": "历史",
|
||||
"Home": "主页",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "管理评论",
|
||||
"Manage media": "管理媒体",
|
||||
"Manage users": "管理用户",
|
||||
"Management": "",
|
||||
"Media": "媒体",
|
||||
"Media I own": "",
|
||||
"Media was edited": "媒体已编辑",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "没有结果",
|
||||
"No tags": "",
|
||||
"No users to add": "",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "播放列表",
|
||||
"PUBLISH STATE": "发布状态",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "发布于",
|
||||
"Recent uploads": "最近上传",
|
||||
"Recommended": "推荐",
|
||||
"Record": "",
|
||||
"Record Screen": "录制屏幕",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "注册",
|
||||
"Remove category": "",
|
||||
"Remove from list": "",
|
||||
"Remove tag": "",
|
||||
"Remove user": "",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "保存",
|
||||
"SEARCH": "搜索",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "",
|
||||
"Select publish state:": "",
|
||||
"Selected": "",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "我分享的",
|
||||
"Shared with me": "分享给我的",
|
||||
"Sharing": "",
|
||||
"Sign in": "登录",
|
||||
"Sign out": "登出",
|
||||
"Sort By": "排序方式",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "评论已成功启用",
|
||||
"Successfully changed owner": "",
|
||||
"Successfully deleted": "删除成功",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "",
|
||||
"Successfully updated categories": "",
|
||||
"Successfully updated playlist membership": "",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "上传媒体",
|
||||
"Uploads": "上传",
|
||||
"Users": "",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "查看全部",
|
||||
"Video": "视频",
|
||||
"View all": "查看全部",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "欢迎",
|
||||
"You are going to copy": "您将复制",
|
||||
"You are going to delete": "您将删除",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "您将禁用评论",
|
||||
"You are going to disable download for": "您将禁用下载",
|
||||
"You are going to enable comments to": "您将启用评论",
|
||||
|
||||
@@ -48,7 +48,6 @@ translation_strings = {
|
||||
"DELETE MEDIA": "刪除影片",
|
||||
"DOWNLOAD": "下載",
|
||||
"DURATION": "時長",
|
||||
"Delete Comments": "",
|
||||
"Delete Media": "",
|
||||
"Delete media": "刪除媒體",
|
||||
"Disable Comments": "",
|
||||
@@ -71,7 +70,6 @@ translation_strings = {
|
||||
"Failed to change owner. Please try again.": "",
|
||||
"Failed to copy media.": "複製媒體失敗。",
|
||||
"Failed to create playlist": "",
|
||||
"Failed to delete comments.": "",
|
||||
"Failed to delete media. Please try again.": "刪除媒體失敗。請再試一次。",
|
||||
"Failed to disable comments.": "停用留言失敗。",
|
||||
"Failed to disable download.": "停用下載失敗。",
|
||||
@@ -103,7 +101,6 @@ translation_strings = {
|
||||
"Filter existing users...": "",
|
||||
"Filter playlists...": "",
|
||||
"Filters": "篩選器",
|
||||
"Give users editor permissions to your media by adding them to the below list.": "",
|
||||
"Go": "執行",
|
||||
"History": "觀看紀錄",
|
||||
"Home": "首頁",
|
||||
@@ -124,7 +121,6 @@ translation_strings = {
|
||||
"Manage comments": "留言管理",
|
||||
"Manage media": "媒體管理",
|
||||
"Manage users": "使用者管理",
|
||||
"Management": "",
|
||||
"Media": "媒體",
|
||||
"Media I own": "",
|
||||
"Media was edited": "媒體已更新",
|
||||
@@ -141,7 +137,6 @@ translation_strings = {
|
||||
"No results for": "查無相關結果:",
|
||||
"No tags": "",
|
||||
"No users to add": "",
|
||||
"Organization": "",
|
||||
"PLAYLISTS": "播放清單",
|
||||
"PUBLISH STATE": "發布狀態",
|
||||
"Pdf": "PDF",
|
||||
@@ -161,15 +156,12 @@ translation_strings = {
|
||||
"Published on": "發布日期為",
|
||||
"Recent uploads": "最近上傳",
|
||||
"Recommended": "推薦內容",
|
||||
"Record": "",
|
||||
"Record Screen": "螢幕錄製",
|
||||
"Record Screen with Audio": "",
|
||||
"Register": "註冊",
|
||||
"Remove category": "",
|
||||
"Remove from list": "",
|
||||
"Remove tag": "",
|
||||
"Remove user": "",
|
||||
"Remove users from the list to remove editor permissions": "",
|
||||
"Replace": "",
|
||||
"SAVE": "儲存",
|
||||
"SEARCH": "搜尋",
|
||||
@@ -186,15 +178,8 @@ translation_strings = {
|
||||
"Select all media": "",
|
||||
"Select publish state:": "",
|
||||
"Selected": "",
|
||||
"Settings": "",
|
||||
"Share with": "",
|
||||
"Share with Co-Editors": "",
|
||||
"Share with Co-Owners": "",
|
||||
"Share with Co-Viewers": "",
|
||||
"Share with Course Members": "",
|
||||
"Shared by me": "我分享的",
|
||||
"Shared with me": "與我分享",
|
||||
"Sharing": "",
|
||||
"Sign in": "登入",
|
||||
"Sign out": "登出",
|
||||
"Sort By": "排序方式",
|
||||
@@ -211,7 +196,6 @@ translation_strings = {
|
||||
"Successfully Enabled comments": "成功啟用留言",
|
||||
"Successfully changed owner": "",
|
||||
"Successfully deleted": "成功刪除",
|
||||
"Successfully deleted comments": "",
|
||||
"Successfully updated": "",
|
||||
"Successfully updated categories": "",
|
||||
"Successfully updated playlist membership": "",
|
||||
@@ -248,7 +232,6 @@ translation_strings = {
|
||||
"Upload media": "上傳媒體",
|
||||
"Uploads": "上傳內容",
|
||||
"Users": "",
|
||||
"Users can edit your media via: My Media > Shared with Me > particular media > Edit...": "",
|
||||
"VIEW ALL": "查看全部",
|
||||
"Video": "影片",
|
||||
"View all": "瀏覽全部",
|
||||
@@ -257,7 +240,6 @@ translation_strings = {
|
||||
"Welcome": "歡迎",
|
||||
"You are going to copy": "您即將複製",
|
||||
"You are going to delete": "您即將刪除",
|
||||
"You are going to delete all comments from": "",
|
||||
"You are going to disable comments to": "您即將停用留言",
|
||||
"You are going to disable download for": "您即將停用下載",
|
||||
"You are going to enable comments to": "您即將啟用留言",
|
||||
|
||||
@@ -965,13 +965,3 @@ def get_alphanumeric_only(string):
|
||||
"""
|
||||
string = "".join([char for char in string if char.isalnum()])
|
||||
return string.lower()
|
||||
|
||||
|
||||
def get_alphanumeric_and_spaces(string):
|
||||
"""Returns a query that contains only alphanumeric characters and spaces
|
||||
This include characters other than the English alphabet too
|
||||
"""
|
||||
string = "".join([char for char in string if char.isalnum() or char.isspace()])
|
||||
# Replace multiple spaces with single space and strip
|
||||
string = " ".join(string.split())
|
||||
return string
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
# Generated by Django 5.2.6 on 2025-12-29 16:15
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
('files', '0014_alter_subtitle_options_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='category',
|
||||
name='is_lms_course',
|
||||
field=models.BooleanField(db_index=True, default=False, help_text='Whether this category represents an LMS course'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='category',
|
||||
name='lti_context_id',
|
||||
field=models.CharField(blank=True, db_index=True, help_text='LTI context ID from platform', max_length=255),
|
||||
),
|
||||
]
|
||||
@@ -1,21 +0,0 @@
|
||||
# Generated by Django 5.2.6 on 2025-12-29 16:15
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
('files', '0015_category_is_lms_course_category_lti_context_id'),
|
||||
('lti', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='category',
|
||||
name='lti_platform',
|
||||
field=models.ForeignKey(
|
||||
blank=True, help_text='LTI Platform if this is an LTI course', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='categories', to='lti.ltiplatform'
|
||||
),
|
||||
),
|
||||
]
|
||||
@@ -47,13 +47,6 @@ class Category(models.Model):
|
||||
verbose_name='IDP Config Name',
|
||||
)
|
||||
|
||||
# LTI/LMS integration fields
|
||||
is_lms_course = models.BooleanField(default=False, db_index=True, help_text='Whether this category represents an LMS course')
|
||||
|
||||
lti_platform = models.ForeignKey('lti.LTIPlatform', blank=True, null=True, on_delete=models.SET_NULL, related_name='categories', help_text='LTI Platform if this is an LTI course')
|
||||
|
||||
lti_context_id = models.CharField(max_length=255, blank=True, db_index=True, help_text='LTI context ID from platform')
|
||||
|
||||
def __str__(self):
|
||||
return self.title
|
||||
|
||||
@@ -144,7 +137,7 @@ class Tag(models.Model):
|
||||
return True
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
self.title = helpers.get_alphanumeric_and_spaces(self.title)
|
||||
self.title = helpers.get_alphanumeric_only(self.title)
|
||||
self.title = self.title[:100]
|
||||
super(Tag, self).save(*args, **kwargs)
|
||||
|
||||
|
||||
@@ -352,11 +352,20 @@ class Media(models.Model):
|
||||
# first get anything interesting out of the media
|
||||
# that needs to be search able
|
||||
|
||||
a_tags = ""
|
||||
a_tags = b_tags = ""
|
||||
if self.id:
|
||||
a_tags = " ".join([tag.title for tag in self.tags.all()])
|
||||
b_tags = " ".join([tag.title.replace("-", " ") for tag in self.tags.all()])
|
||||
|
||||
items = [self.friendly_token, self.title, self.user.username, self.user.email, self.user.name, self.description, a_tags]
|
||||
items = [
|
||||
self.title,
|
||||
self.user.username,
|
||||
self.user.email,
|
||||
self.user.name,
|
||||
self.description,
|
||||
a_tags,
|
||||
b_tags,
|
||||
]
|
||||
|
||||
for subtitle in self.subtitles.all():
|
||||
items.append(subtitle.subtitle_text)
|
||||
@@ -736,7 +745,7 @@ class Media(models.Model):
|
||||
|
||||
ret = []
|
||||
for cat in self.category.all():
|
||||
ret.append({"title": cat.title, "url": cat.get_absolute_url(), "is_lms_course": cat.is_lms_course})
|
||||
ret.append({"title": cat.title, "url": cat.get_absolute_url()})
|
||||
return ret
|
||||
|
||||
@property
|
||||
|
||||
@@ -226,7 +226,6 @@ class CategorySerializer(serializers.ModelSerializer):
|
||||
"media_count",
|
||||
"user",
|
||||
"thumbnail_url",
|
||||
"is_lms_course",
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -80,7 +80,6 @@ urlpatterns = [
|
||||
views.trim_video,
|
||||
),
|
||||
re_path(r"^api/v1/categories$", views.CategoryList.as_view()),
|
||||
re_path(r"^api/v1/categories/contributor$", views.CategoryListContributor.as_view()),
|
||||
re_path(r"^api/v1/tags$", views.TagList.as_view()),
|
||||
re_path(r"^api/v1/comments$", views.CommentList.as_view()),
|
||||
re_path(
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Import all views for backward compatibility
|
||||
|
||||
from .auth import custom_login_view, saml_metadata # noqa: F401
|
||||
from .categories import CategoryList, CategoryListContributor, TagList # noqa: F401
|
||||
from .categories import CategoryList, TagList # noqa: F401
|
||||
from .comments import CommentDetail, CommentList # noqa: F401
|
||||
from .encoding import EncodeProfileList, EncodingDetail # noqa: F401
|
||||
from .media import MediaActions # noqa: F401
|
||||
|
||||
@@ -43,49 +43,6 @@ class CategoryList(APIView):
|
||||
return Response(ret)
|
||||
|
||||
|
||||
class CategoryListContributor(APIView):
|
||||
"""List categories where user has contributor access"""
|
||||
|
||||
@swagger_auto_schema(
|
||||
manual_parameters=[
|
||||
openapi.Parameter(
|
||||
name='lms_courses_only',
|
||||
type=openapi.TYPE_BOOLEAN,
|
||||
in_=openapi.IN_QUERY,
|
||||
description='Filter to show only LMS courses (categories with is_lms_course=True)',
|
||||
),
|
||||
],
|
||||
tags=['Categories'],
|
||||
operation_summary='Lists Categories for Contributors',
|
||||
operation_description='Lists all categories where the user has contributor access',
|
||||
responses={
|
||||
200: openapi.Response('response description', CategorySerializer),
|
||||
},
|
||||
)
|
||||
def get(self, request, format=None):
|
||||
if not request.user.is_authenticated:
|
||||
return Response([])
|
||||
|
||||
categories = Category.objects.none()
|
||||
|
||||
# Filter for LMS courses only if requested
|
||||
lms_courses_only = request.GET.get('lms_courses_only', '').lower() in ['true', '1', 'yes']
|
||||
if lms_courses_only:
|
||||
categories = categories.filter(is_lms_course=True)
|
||||
else:
|
||||
categories = Category.objects.filter(is_rbac_category=False).prefetch_related("user")
|
||||
|
||||
# Get RBAC categories where user has contributor access
|
||||
if getattr(settings, 'USE_RBAC', False):
|
||||
rbac_categories = request.user.get_rbac_categories_as_contributor()
|
||||
categories = categories.union(rbac_categories)
|
||||
|
||||
categories = categories.order_by("title")
|
||||
|
||||
serializer = CategorySerializer(categories, many=True, context={"request": request})
|
||||
return Response(serializer.data)
|
||||
|
||||
|
||||
class TagList(APIView):
|
||||
"""List tags"""
|
||||
|
||||
|
||||
@@ -35,7 +35,6 @@ from ..methods import (
|
||||
)
|
||||
from ..models import (
|
||||
Category,
|
||||
Comment,
|
||||
EncodeProfile,
|
||||
Media,
|
||||
MediaPermission,
|
||||
@@ -165,14 +164,7 @@ class MediaList(APIView):
|
||||
if not self.request.user.is_authenticated:
|
||||
media = Media.objects.none()
|
||||
else:
|
||||
base_queryset = Media.objects.prefetch_related("user", "tags")
|
||||
conditions = Q(permissions__owner_user=self.request.user)
|
||||
|
||||
if getattr(settings, 'USE_RBAC', False):
|
||||
rbac_categories = request.user.get_rbac_categories_as_contributor()
|
||||
conditions |= Q(category__in=rbac_categories, user=self.request.user)
|
||||
|
||||
media = base_queryset.filter(conditions).distinct()
|
||||
media = Media.objects.filter(permissions__owner_user=self.request.user).prefetch_related("user", "tags").distinct()
|
||||
elif show_param == "shared_with_me":
|
||||
if not self.request.user.is_authenticated:
|
||||
media = Media.objects.none()
|
||||
@@ -186,7 +178,7 @@ class MediaList(APIView):
|
||||
rbac_categories = request.user.get_rbac_categories_as_member()
|
||||
conditions |= Q(category__in=rbac_categories)
|
||||
|
||||
media = base_queryset.filter(conditions).exclude(user=request.user).distinct()
|
||||
media = base_queryset.filter(conditions).distinct()
|
||||
elif author_param:
|
||||
user_queryset = User.objects.all()
|
||||
user = get_object_or_404(user_queryset, username=author_param)
|
||||
@@ -303,7 +295,6 @@ class MediaBulkUserActions(APIView):
|
||||
enum=[
|
||||
"enable_comments",
|
||||
"disable_comments",
|
||||
"delete_comments",
|
||||
"delete_media",
|
||||
"enable_download",
|
||||
"disable_download",
|
||||
@@ -388,10 +379,6 @@ class MediaBulkUserActions(APIView):
|
||||
media.update(enable_comments=False)
|
||||
return Response({"detail": f"Comments disabled for {media.count()} media items"})
|
||||
|
||||
elif action == "delete_comments":
|
||||
deleted_count, _ = Comment.objects.filter(media__in=media).delete()
|
||||
return Response({"detail": f"{deleted_count} comments deleted"})
|
||||
|
||||
elif action == "delete_media":
|
||||
count = media.count()
|
||||
media.delete()
|
||||
@@ -505,9 +492,8 @@ class MediaBulkUserActions(APIView):
|
||||
|
||||
users = (
|
||||
MediaPermission.objects.filter(media__in=media, permission=ownership_type)
|
||||
.exclude(user=request.user)
|
||||
.values('user__name', 'user__username')
|
||||
.annotate(media_count=Count('media'))
|
||||
.annotate(media_count=Count('media', distinct=True))
|
||||
.filter(media_count=media_count)
|
||||
)
|
||||
|
||||
@@ -588,31 +574,12 @@ class MediaBulkUserActions(APIView):
|
||||
|
||||
elif action == "add_to_category":
|
||||
category_uids = request.data.get('category_uids', [])
|
||||
lti_context_id = request.data.get('lti_context_id')
|
||||
|
||||
if not category_uids and not lti_context_id:
|
||||
return Response({"detail": "category_uids or lti_context_id is required for add_to_category action"}, status=status.HTTP_400_BAD_REQUEST)
|
||||
|
||||
categories = Category.objects.none()
|
||||
|
||||
# Prioritize category_uids
|
||||
if category_uids:
|
||||
categories = Category.objects.filter(uid__in=category_uids)
|
||||
elif lti_context_id:
|
||||
# Filter categories by lti_context_id and ensure they ARE RBAC categories
|
||||
potential_categories = Category.objects.filter(lti_context_id=lti_context_id, is_rbac_category=True)
|
||||
|
||||
# Check user access (must have contributor access)
|
||||
valid_category_ids = []
|
||||
for cat in potential_categories:
|
||||
if request.user.has_contributor_access_to_category(cat):
|
||||
valid_category_ids.append(cat.id)
|
||||
|
||||
if valid_category_ids:
|
||||
categories = Category.objects.filter(id__in=valid_category_ids)
|
||||
if not category_uids:
|
||||
return Response({"detail": "category_uids is required for add_to_category action"}, status=status.HTTP_400_BAD_REQUEST)
|
||||
|
||||
categories = Category.objects.filter(uid__in=category_uids)
|
||||
if not categories:
|
||||
return Response({"detail": "No matching categories found or access denied"}, status=status.HTTP_400_BAD_REQUEST)
|
||||
return Response({"detail": "No matching categories found"}, status=status.HTTP_400_BAD_REQUEST)
|
||||
|
||||
added_count = 0
|
||||
for category in categories:
|
||||
@@ -730,9 +697,12 @@ class MediaDetail(APIView):
|
||||
return media
|
||||
|
||||
serializer = SingleMediaSerializer(media, context={"request": request})
|
||||
related_media = show_related_media(media, request=request, limit=100)
|
||||
related_media_serializer = MediaSerializer(related_media, many=True, context={"request": request})
|
||||
related_media = related_media_serializer.data
|
||||
if media.state == "private":
|
||||
related_media = []
|
||||
else:
|
||||
related_media = show_related_media(media, request=request, limit=100)
|
||||
related_media_serializer = MediaSerializer(related_media, many=True, context={"request": request})
|
||||
related_media = related_media_serializer.data
|
||||
ret = serializer.data
|
||||
|
||||
# update rattings info with user specific ratings
|
||||
|
||||
@@ -24,7 +24,7 @@ from ..forms import (
|
||||
WhisperSubtitlesForm,
|
||||
)
|
||||
from ..frontend_translations import translate_string
|
||||
from ..helpers import get_alphanumeric_and_spaces
|
||||
from ..helpers import get_alphanumeric_only
|
||||
from ..methods import (
|
||||
can_transcribe_video,
|
||||
create_video_trim_request,
|
||||
@@ -310,8 +310,8 @@ def edit_media(request):
|
||||
media.tags.remove(tag)
|
||||
if form.cleaned_data.get("new_tags"):
|
||||
for tag in form.cleaned_data.get("new_tags").split(","):
|
||||
tag = get_alphanumeric_and_spaces(tag)
|
||||
tag = tag[:100]
|
||||
tag = get_alphanumeric_only(tag)
|
||||
tag = tag[:99]
|
||||
if tag:
|
||||
try:
|
||||
tag = Tag.objects.get(title=tag)
|
||||
@@ -350,13 +350,13 @@ def publish_media(request):
|
||||
return HttpResponseRedirect(media.get_absolute_url())
|
||||
|
||||
if request.method == "POST":
|
||||
form = MediaPublishForm(request.user, request.POST, request.FILES, instance=media, request=request)
|
||||
form = MediaPublishForm(request.user, request.POST, request.FILES, instance=media)
|
||||
if form.is_valid():
|
||||
media = form.save()
|
||||
messages.add_message(request, messages.INFO, translate_string(request.LANGUAGE_CODE, "Media was edited"))
|
||||
return HttpResponseRedirect(media.get_absolute_url())
|
||||
else:
|
||||
form = MediaPublishForm(request.user, instance=media, request=request)
|
||||
form = MediaPublishForm(request.user, instance=media)
|
||||
|
||||
return render(
|
||||
request,
|
||||
|
||||
@@ -3,8 +3,6 @@ import json
|
||||
from django import forms
|
||||
from django.utils.safestring import mark_safe
|
||||
|
||||
from .models import Category
|
||||
|
||||
|
||||
class CategoryModalWidget(forms.SelectMultiple):
|
||||
"""Two-panel category selector with modal"""
|
||||
@@ -14,42 +12,28 @@ class CategoryModalWidget(forms.SelectMultiple):
|
||||
js = ('js/category_modal.js',)
|
||||
|
||||
def render(self, name, value, attrs=None, renderer=None):
|
||||
is_lms_mode = getattr(self, 'is_lms_mode', False)
|
||||
|
||||
# Get all categories as JSON
|
||||
categories = []
|
||||
for opt_value, opt_label in self.choices:
|
||||
if opt_value: # Skip empty choice
|
||||
# Extract the actual ID value from ModelChoiceIteratorValue if needed
|
||||
category_id = opt_value.value if hasattr(opt_value, 'value') else opt_value
|
||||
|
||||
# Get is_lms_course info from the Category object
|
||||
try:
|
||||
cat_obj = Category.objects.get(id=category_id)
|
||||
categories.append({'id': str(category_id), 'title': str(opt_label), 'is_lms_course': cat_obj.is_lms_course})
|
||||
except Category.DoesNotExist:
|
||||
categories.append({'id': str(category_id), 'title': str(opt_label), 'is_lms_course': False})
|
||||
categories.append({'id': str(opt_value), 'title': str(opt_label)})
|
||||
|
||||
all_categories_json = json.dumps(categories)
|
||||
selected_ids_json = json.dumps([str(v) for v in (value or [])])
|
||||
lms_mode_json = json.dumps(is_lms_mode)
|
||||
|
||||
search_placeholder = "Search courses..." if is_lms_mode else "Search categories..."
|
||||
selected_header = "Selected Courses" if is_lms_mode else "Selected Categories"
|
||||
|
||||
html = f'''<div class="category-widget" data-name="{name}">
|
||||
<div class="category-content">
|
||||
<div class="category-panel">
|
||||
<input type="text" class="category-search" placeholder="{search_placeholder}">
|
||||
<input type="text" class="category-search" placeholder="Search categories...">
|
||||
<div class="category-list scrollable" data-panel="left"></div>
|
||||
</div>
|
||||
<div class="category-panel">
|
||||
<h3>{selected_header}</h3>
|
||||
<h3>Selected Categories</h3>
|
||||
<div class="category-list scrollable" data-panel="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hidden-inputs"></div>
|
||||
<script type="application/json" class="category-data">{{"all":{all_categories_json},"selected":{selected_ids_json},"lms_mode":{lms_mode_json}}}</script>
|
||||
<script type="application/json" class="category-data">{{"all":{all_categories_json},"selected":{selected_ids_json}}}</script>
|
||||
</div>'''
|
||||
|
||||
return mark_safe(html)
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import './BulkActionCategoryModal.scss';
|
||||
import { translateString } from '../utils/helpers/';
|
||||
import { inEmbeddedApp } from '../utils/helpers/embeddedApp';
|
||||
|
||||
interface Category {
|
||||
title: string;
|
||||
@@ -25,7 +24,6 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
onError,
|
||||
csrfToken,
|
||||
}) => {
|
||||
const isLmsMode = inEmbeddedApp();
|
||||
const [existingCategories, setExistingCategories] = useState<Category[]>([]);
|
||||
const [allCategories, setAllCategories] = useState<Category[]>([]);
|
||||
const [categoriesToAdd, setCategoriesToAdd] = useState<Category[]>([]);
|
||||
@@ -68,27 +66,20 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
const existingData = await existingResponse.json();
|
||||
const existing = existingData.results || [];
|
||||
|
||||
// Fetch all categories (or LMS courses only in embed mode)
|
||||
const categoriesUrl = isLmsMode
|
||||
? '/api/v1/categories/contributor?lms_courses_only=true'
|
||||
: '/api/v1/categories';
|
||||
const allResponse = await fetch(categoriesUrl);
|
||||
// Fetch all categories
|
||||
const allResponse = await fetch('/api/v1/categories');
|
||||
if (!allResponse.ok) {
|
||||
throw new Error(isLmsMode ? translateString('Failed to fetch courses') : translateString('Failed to fetch all categories'));
|
||||
throw new Error(translateString('Failed to fetch all categories'));
|
||||
}
|
||||
|
||||
const allData = await allResponse.json();
|
||||
const all = allData.results || allData;
|
||||
|
||||
// In LMS mode, filter existing to only show LMS course categories
|
||||
const allUids = new Set(all.map((c: Category) => c.uid));
|
||||
const filteredExisting = isLmsMode ? existing.filter((c: Category) => allUids.has(c.uid)) : existing;
|
||||
|
||||
setExistingCategories(filteredExisting);
|
||||
setExistingCategories(existing);
|
||||
setAllCategories(all);
|
||||
} catch (error) {
|
||||
console.error('Error fetching categories:', error);
|
||||
onError(isLmsMode ? translateString('Failed to load courses') : translateString('Failed to load categories'));
|
||||
onError(translateString('Failed to load categories'));
|
||||
} finally {
|
||||
setIsLoading(false);
|
||||
}
|
||||
@@ -135,7 +126,7 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
});
|
||||
|
||||
if (!addResponse.ok) {
|
||||
throw new Error(isLmsMode ? translateString('Failed to add courses') : translateString('Failed to add categories'));
|
||||
throw new Error(translateString('Failed to add categories'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -156,15 +147,15 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
});
|
||||
|
||||
if (!removeResponse.ok) {
|
||||
throw new Error(isLmsMode ? translateString('Failed to remove courses') : translateString('Failed to remove categories'));
|
||||
throw new Error(translateString('Failed to remove categories'));
|
||||
}
|
||||
}
|
||||
|
||||
onSuccess(isLmsMode ? translateString('Successfully updated courses') : translateString('Successfully updated categories'));
|
||||
onSuccess(translateString('Successfully updated categories'));
|
||||
onCancel();
|
||||
} catch (error) {
|
||||
console.error('Error processing categories:', error);
|
||||
onError(isLmsMode ? translateString('Failed to update courses. Please try again.') : translateString('Failed to update categories. Please try again.'));
|
||||
onError(translateString('Failed to update categories. Please try again.'));
|
||||
} finally {
|
||||
setIsProcessing(false);
|
||||
}
|
||||
@@ -193,7 +184,7 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
<div className="category-modal-overlay">
|
||||
<div className="category-modal">
|
||||
<div className="category-modal-header">
|
||||
<h2>{isLmsMode ? translateString('Share with Course') : translateString('Add / Remove from Categories')}</h2>
|
||||
<h2>{translateString('Add / Remove from Categories')}</h2>
|
||||
<button className="category-modal-close" onClick={onCancel}>
|
||||
×
|
||||
</button>
|
||||
@@ -201,14 +192,14 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
|
||||
<div className="category-modal-content">
|
||||
<div className="category-panel">
|
||||
<h3>{isLmsMode ? translateString('Courses') : translateString('Categories')}</h3>
|
||||
<h3>{translateString('Categories')}</h3>
|
||||
|
||||
{isLoading ? (
|
||||
<div className="loading-message">{isLmsMode ? translateString('Loading courses...') : translateString('Loading categories...')}</div>
|
||||
<div className="loading-message">{translateString('Loading categories...')}</div>
|
||||
) : (
|
||||
<div className="category-list scrollable">
|
||||
{leftPanelCategories.length === 0 ? (
|
||||
<div className="empty-message">{isLmsMode ? translateString('All courses already added') : translateString('All categories already added')}</div>
|
||||
<div className="empty-message">{translateString('All categories already added')}</div>
|
||||
) : (
|
||||
leftPanelCategories.map((category) => (
|
||||
<div
|
||||
@@ -236,11 +227,11 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
</h3>
|
||||
|
||||
{isLoading ? (
|
||||
<div className="loading-message">{isLmsMode ? translateString('Loading courses...') : translateString('Loading categories...')}</div>
|
||||
<div className="loading-message">{translateString('Loading categories...')}</div>
|
||||
) : (
|
||||
<div className="category-list scrollable">
|
||||
{rightPanelCategories.length === 0 ? (
|
||||
<div className="empty-message">{isLmsMode ? translateString('No courses') : translateString('No categories')}</div>
|
||||
<div className="empty-message">{translateString('No categories')}</div>
|
||||
) : (
|
||||
rightPanelCategories.map((category) => {
|
||||
const isExisting = existingCategories.some((c) => c.uid === category.uid);
|
||||
@@ -260,7 +251,7 @@ export const BulkActionCategoryModal: React.FC<BulkActionCategoryModalProps> = (
|
||||
removeCategoryFromAddList(category);
|
||||
}
|
||||
}}
|
||||
title={isMarkedForRemoval ? translateString('Undo removal') : isExisting ? (isLmsMode ? translateString('Remove course') : translateString('Remove category')) : translateString('Remove from list')}
|
||||
title={isMarkedForRemoval ? translateString('Undo removal') : isExisting ? translateString('Remove category') : translateString('Remove from list')}
|
||||
>
|
||||
{isMarkedForRemoval ? '↺' : '×'}
|
||||
</button>
|
||||
|
||||
@@ -47,7 +47,7 @@ export const BulkActionChangeOwnerModal: React.FC<BulkActionChangeOwnerModalProp
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await fetch(`/api/v1/users?name=${encodeURIComponent(name)}&exclude_self=True`);
|
||||
const response = await fetch(`/api/v1/users?name=${encodeURIComponent(name)}`);
|
||||
if (!response.ok) {
|
||||
throw new Error(translateString('Failed to search users'));
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
.permission-modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
padding: 20px 24px;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
|
||||
@@ -102,19 +102,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.permission-modal-subtitle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 6px;
|
||||
font-size: 13px;
|
||||
color: #777;
|
||||
|
||||
.dark_theme & {
|
||||
color: #aaa;
|
||||
}
|
||||
}
|
||||
|
||||
.permission-modal-content {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
|
||||
@@ -226,20 +226,7 @@ export const BulkActionPermissionModal: React.FC<BulkActionPermissionModalProps>
|
||||
<div className="permission-modal-overlay">
|
||||
<div className="permission-modal">
|
||||
<div className="permission-modal-header">
|
||||
<div>
|
||||
<h2>{translateString('Share with')} {permissionLabel}</h2>
|
||||
{permissionType === 'editor' && (
|
||||
<div className="permission-modal-subtitle">
|
||||
<span>{translateString('Give users editor permissions to your media by adding them to the below list.')}</span>
|
||||
<span
|
||||
className="info-tooltip"
|
||||
title={translateString("Users can edit your media via: My Media > Shared with Me > particular media > Edit...")}
|
||||
>
|
||||
i
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<h2>{translateString('Manage')} {permissionLabel}</h2>
|
||||
<button className="permission-modal-close" onClick={onCancel}>
|
||||
×
|
||||
</button>
|
||||
@@ -297,11 +284,6 @@ export const BulkActionPermissionModal: React.FC<BulkActionPermissionModalProps>
|
||||
?
|
||||
</span>
|
||||
)}
|
||||
{permissionType === 'editor' && (
|
||||
<span className="info-tooltip" title={translateString('Remove users from the list to remove editor permissions')}>
|
||||
i
|
||||
</span>
|
||||
)}
|
||||
</h3>
|
||||
<div className="search-box">
|
||||
<input
|
||||
|
||||
@@ -7,53 +7,21 @@ interface BulkActionsDropdownProps {
|
||||
onActionSelect: (action: string) => void;
|
||||
}
|
||||
|
||||
interface BulkAction {
|
||||
value: string;
|
||||
label: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
interface BulkActionGroup {
|
||||
label: string;
|
||||
actions: BulkAction[];
|
||||
}
|
||||
|
||||
const BULK_ACTION_GROUPS: BulkActionGroup[] = [
|
||||
{
|
||||
label: translateString('Sharing'),
|
||||
actions: [
|
||||
{ value: 'add-remove-coviewers', label: translateString('Share with Co-Viewers'), enabled: true },
|
||||
{ value: 'add-remove-coeditors', label: translateString('Share with Co-Editors'), enabled: true },
|
||||
{ value: 'add-remove-coowners', label: translateString('Share with Co-Owners'), enabled: true },
|
||||
{ value: 'add-remove-category', label: translateString('Share with Course Members'), enabled: true },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: translateString('Organization'),
|
||||
actions: [
|
||||
{ value: 'add-remove-playlist', label: translateString('Add to / Remove from Playlist'), enabled: true },
|
||||
{ value: 'add-remove-tags', label: translateString('Add / Remove Tags'), enabled: true },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: translateString('Settings'),
|
||||
actions: [
|
||||
{ value: 'enable-comments', label: translateString('Enable Comments'), enabled: true },
|
||||
{ value: 'disable-comments', label: translateString('Disable Comments'), enabled: true },
|
||||
{ value: 'delete-comments', label: translateString('Delete Comments'), enabled: true },
|
||||
{ value: 'enable-download', label: translateString('Enable Download'), enabled: true },
|
||||
{ value: 'disable-download', label: translateString('Disable Download'), enabled: true },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: translateString('Management'),
|
||||
actions: [
|
||||
{ value: 'publish-state', label: translateString('Publish State'), enabled: true },
|
||||
{ value: 'change-owner', label: translateString('Change Owner'), enabled: true },
|
||||
{ value: 'copy-media', label: translateString('Copy Media'), enabled: true },
|
||||
{ value: 'delete-media', label: translateString('Delete Media'), enabled: true },
|
||||
],
|
||||
},
|
||||
const BULK_ACTIONS = [
|
||||
{ value: 'add-remove-coviewers', label: translateString('Add / Remove Co-Viewers'), enabled: true },
|
||||
{ value: 'add-remove-coeditors', label: translateString('Add / Remove Co-Editors'), enabled: true },
|
||||
{ value: 'add-remove-coowners', label: translateString('Add / Remove Co-Owners'), enabled: true },
|
||||
{ value: 'add-remove-playlist', label: translateString('Add to / Remove from Playlist'), enabled: true },
|
||||
{ value: 'add-remove-category', label: translateString('Add to / Remove from Category'), enabled: true },
|
||||
{ value: 'add-remove-tags', label: translateString('Add / Remove Tags'), enabled: true },
|
||||
{ value: 'enable-comments', label: translateString('Enable Comments'), enabled: true },
|
||||
{ value: 'disable-comments', label: translateString('Disable Comments'), enabled: true },
|
||||
{ value: 'enable-download', label: translateString('Enable Download'), enabled: true },
|
||||
{ value: 'disable-download', label: translateString('Disable Download'), enabled: true },
|
||||
{ value: 'publish-state', label: translateString('Publish State'), enabled: true },
|
||||
{ value: 'change-owner', label: translateString('Change Owner'), enabled: true },
|
||||
{ value: 'copy-media', label: translateString('Copy Media'), enabled: true },
|
||||
{ value: 'delete-media', label: translateString('Delete Media'), enabled: true },
|
||||
];
|
||||
|
||||
export const BulkActionsDropdown: React.FC<BulkActionsDropdownProps> = ({ selectedCount, onActionSelect }) => {
|
||||
@@ -90,14 +58,10 @@ export const BulkActionsDropdown: React.FC<BulkActionsDropdownProps> = ({ select
|
||||
<option value="" disabled>
|
||||
{displayText}
|
||||
</option>
|
||||
{BULK_ACTION_GROUPS.map((group) => (
|
||||
<optgroup key={group.label} label={group.label}>
|
||||
{group.actions.map((action) => (
|
||||
<option key={action.value} value={action.value} disabled={noSelection || !action.enabled}>
|
||||
{action.label}
|
||||
</option>
|
||||
))}
|
||||
</optgroup>
|
||||
{BULK_ACTIONS.map((action) => (
|
||||
<option key={action.value} value={action.value} disabled={noSelection || !action.enabled}>
|
||||
{action.label}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import { translateString, inSelectMediaEmbedMode } from '../utils/helpers/';
|
||||
import { translateString } from '../utils/helpers/';
|
||||
|
||||
interface MediaListHeaderProps {
|
||||
title?: string;
|
||||
@@ -11,12 +11,10 @@ interface MediaListHeaderProps {
|
||||
|
||||
export const MediaListHeader: React.FC<MediaListHeaderProps> = (props) => {
|
||||
const viewAllText = props.viewAllText || translateString('VIEW ALL');
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
return (
|
||||
<div className={(props.className ? props.className + ' ' : '') + 'media-list-header'} style={props.style}>
|
||||
<h2>{props.title}</h2>
|
||||
{!isSelectMediaMode && props.viewAllLink ? (
|
||||
{props.viewAllLink ? (
|
||||
<h3>
|
||||
{' '}
|
||||
<a href={props.viewAllLink} title={viewAllText}>
|
||||
|
||||
@@ -16,17 +16,8 @@
|
||||
margin-bottom: 16px;
|
||||
|
||||
.add-media-button {
|
||||
position: relative;
|
||||
margin-left: auto;
|
||||
|
||||
.popup {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
right: 0;
|
||||
margin-top: 8px;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -2,9 +2,8 @@ import React from 'react';
|
||||
import { MediaListRow } from './MediaListRow';
|
||||
import { BulkActionsDropdown } from './BulkActionsDropdown';
|
||||
import { SelectAllCheckbox } from './SelectAllCheckbox';
|
||||
import { CircleIconButton, MaterialIcon, PopupMain, NavigationMenuList } from './_shared';
|
||||
import { CircleIconButton, MaterialIcon } from './_shared';
|
||||
import { LinksConsumer } from '../utils/contexts';
|
||||
import { usePopup } from '../utils/hooks';
|
||||
import { translateString } from '../utils/helpers/';
|
||||
import './MediaListWrapper.scss';
|
||||
|
||||
@@ -38,60 +37,36 @@ export const MediaListWrapper: React.FC<MediaListWrapperProps> = ({
|
||||
onSelectAll = () => {},
|
||||
onDeselectAll = () => {},
|
||||
showAddMediaButton = false,
|
||||
}) => {
|
||||
const [popupContentRef, PopupContent, PopupTrigger] = usePopup() as [any, any, any];
|
||||
|
||||
return (
|
||||
<div className={(className ? className + ' ' : '') + 'media-list-wrapper'} style={style}>
|
||||
<MediaListRow title={title} viewAllLink={viewAllLink} viewAllText={viewAllText}>
|
||||
{showBulkActions && (
|
||||
<LinksConsumer>
|
||||
{(links) => {
|
||||
const uploadMenuItems = [
|
||||
{
|
||||
link: links.user.addMedia,
|
||||
icon: 'upload',
|
||||
text: translateString('Upload'),
|
||||
},
|
||||
{
|
||||
link: '/record_screen',
|
||||
icon: 'videocam',
|
||||
text: translateString('Record'),
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="bulk-actions-container">
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '10px' }}>
|
||||
<BulkActionsDropdown selectedCount={selectedCount} onActionSelect={onBulkAction} />
|
||||
<SelectAllCheckbox
|
||||
totalCount={totalCount}
|
||||
selectedCount={selectedCount}
|
||||
onSelectAll={onSelectAll}
|
||||
onDeselectAll={onDeselectAll}
|
||||
/>
|
||||
</div>
|
||||
{showAddMediaButton && (
|
||||
<div className="add-media-button">
|
||||
<PopupTrigger contentRef={popupContentRef}>
|
||||
<CircleIconButton title={translateString('Add media')}>
|
||||
<MaterialIcon type="video_call" />
|
||||
</CircleIconButton>
|
||||
</PopupTrigger>
|
||||
<PopupContent contentRef={popupContentRef}>
|
||||
<PopupMain>
|
||||
<NavigationMenuList items={uploadMenuItems} />
|
||||
</PopupMain>
|
||||
</PopupContent>
|
||||
</div>
|
||||
)}
|
||||
}) => (
|
||||
<div className={(className ? className + ' ' : '') + 'media-list-wrapper'} style={style}>
|
||||
<MediaListRow title={title} viewAllLink={viewAllLink} viewAllText={viewAllText}>
|
||||
{showBulkActions && (
|
||||
<LinksConsumer>
|
||||
{(links) => (
|
||||
<div className="bulk-actions-container">
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '10px' }}>
|
||||
<BulkActionsDropdown selectedCount={selectedCount} onActionSelect={onBulkAction} />
|
||||
<SelectAllCheckbox
|
||||
totalCount={totalCount}
|
||||
selectedCount={selectedCount}
|
||||
onSelectAll={onSelectAll}
|
||||
onDeselectAll={onDeselectAll}
|
||||
/>
|
||||
</div>
|
||||
{showAddMediaButton && (
|
||||
<div className="add-media-button">
|
||||
<a href={links.user.addMedia} title={translateString('Add media')}>
|
||||
<CircleIconButton>
|
||||
<MaterialIcon type="video_call" />
|
||||
</CircleIconButton>
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
}}
|
||||
</LinksConsumer>
|
||||
)}
|
||||
{children || null}
|
||||
</MediaListRow>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</LinksConsumer>
|
||||
)}
|
||||
{children || null}
|
||||
</MediaListRow>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -1,50 +1,18 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { useMediaItem } from '../../utils/hooks/';
|
||||
import { PositiveInteger, PositiveIntegerOrZero, inSelectMediaEmbedMode } from '../../utils/helpers/';
|
||||
import { PositiveInteger, PositiveIntegerOrZero } from '../../utils/helpers/';
|
||||
import { MediaItemThumbnailLink, itemClassname } from './includes/items/';
|
||||
import { Item } from './Item';
|
||||
|
||||
export function MediaItem(props) {
|
||||
const type = props.type;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
const [titleComponentOrig, descriptionComponent, thumbnailUrl, UnderThumbWrapperOrig, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
const [titleComponent, descriptionComponent, thumbnailUrl, UnderThumbWrapper, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
useMediaItem({ ...props, type });
|
||||
|
||||
// In embed mode, override components to remove links
|
||||
const ItemTitle = ({ title }) => (
|
||||
<h3>
|
||||
<span>{title}</span>
|
||||
</h3>
|
||||
);
|
||||
|
||||
const ItemMain = ({ children }) => <div className="item-main">{children}</div>;
|
||||
|
||||
const titleComponent = isSelectMediaMode
|
||||
? () => <ItemTitle title={props.title} />
|
||||
: titleComponentOrig;
|
||||
|
||||
const UnderThumbWrapper = isSelectMediaMode ? ItemMain : UnderThumbWrapperOrig;
|
||||
|
||||
function thumbnailComponent() {
|
||||
if (isSelectMediaMode) {
|
||||
// In embed mode, render thumbnail without link
|
||||
const thumbStyle = thumbnailUrl ? { backgroundImage: "url('" + thumbnailUrl + "')" } : null;
|
||||
return (
|
||||
<div
|
||||
key="item-thumb"
|
||||
className={'item-thumb' + (!thumbnailUrl ? ' no-thumb' : '')}
|
||||
style={thumbStyle}
|
||||
>
|
||||
{thumbnailUrl ? (
|
||||
<div key="item-type-icon" className="item-type-icon">
|
||||
<div></div>
|
||||
</div>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return <MediaItemThumbnailLink src={thumbnailUrl} title={props.title} link={props.link} />;
|
||||
}
|
||||
|
||||
@@ -57,13 +25,11 @@ export function MediaItem(props) {
|
||||
const finalClassname = containerClassname +
|
||||
(props.showSelection ? ' with-selection' : '') +
|
||||
(props.isSelected ? ' selected' : '') +
|
||||
(props.hasAnySelection || isSelectMediaMode ? ' has-any-selection' : '');
|
||||
(props.hasAnySelection ? ' has-any-selection' : '');
|
||||
|
||||
const handleItemClick = (e) => {
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
// In select media mode or if there's any selection active, clicking the item should toggle selection
|
||||
if ((isSelectMediaMode || props.hasAnySelection) && props.onCheckboxChange) {
|
||||
// If there's any selection active, clicking the item should toggle selection
|
||||
if (props.hasAnySelection && props.onCheckboxChange) {
|
||||
// Check if clicking on the checkbox itself, edit icon, or view icon
|
||||
if (e.target.closest('.item-selection-checkbox') ||
|
||||
e.target.closest('.item-edit-icon') ||
|
||||
@@ -93,24 +59,16 @@ export function MediaItem(props) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!isSelectMediaMode && editMediaComponent()}
|
||||
{!isSelectMediaMode && viewMediaComponent()}
|
||||
{editMediaComponent()}
|
||||
{viewMediaComponent()}
|
||||
|
||||
{thumbnailComponent()}
|
||||
|
||||
{isSelectMediaMode ? (
|
||||
<UnderThumbWrapper>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
) : (
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
)}
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { useMediaItem } from '../../utils/hooks/';
|
||||
import { PositiveIntegerOrZero, inSelectMediaEmbedMode } from '../../utils/helpers/';
|
||||
import { PositiveIntegerOrZero } from '../../utils/helpers/';
|
||||
import { MediaDurationInfo } from '../../utils/classes/';
|
||||
import { MediaPlaylistOptions } from '../media-playlist-options/MediaPlaylistOptions';
|
||||
import { MediaItemDuration, MediaItemPlaylistIndex, itemClassname } from './includes/items/';
|
||||
@@ -9,26 +9,10 @@ import { MediaItem } from './MediaItem';
|
||||
|
||||
export function MediaItemAudio(props) {
|
||||
const type = props.type;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
const [titleComponentOrig, descriptionComponent, thumbnailUrl, UnderThumbWrapperOrig, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
const [titleComponent, descriptionComponent, thumbnailUrl, UnderThumbWrapper, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
useMediaItem({ ...props, type });
|
||||
|
||||
// In embed mode, override components to remove links
|
||||
const ItemTitle = ({ title }) => (
|
||||
<h3>
|
||||
<span>{title}</span>
|
||||
</h3>
|
||||
);
|
||||
|
||||
const ItemMain = ({ children }) => <div className="item-main">{children}</div>;
|
||||
|
||||
const titleComponent = isSelectMediaMode
|
||||
? () => <ItemTitle title={props.title} />
|
||||
: titleComponentOrig;
|
||||
|
||||
const UnderThumbWrapper = isSelectMediaMode ? ItemMain : UnderThumbWrapperOrig;
|
||||
|
||||
const _MediaDurationInfo = new MediaDurationInfo();
|
||||
|
||||
_MediaDurationInfo.update(props.duration);
|
||||
@@ -38,21 +22,6 @@ export function MediaItemAudio(props) {
|
||||
const durationISO8601 = _MediaDurationInfo.ISO8601();
|
||||
|
||||
function thumbnailComponent() {
|
||||
if (isSelectMediaMode) {
|
||||
// In embed mode, render thumbnail without link
|
||||
return (
|
||||
<div
|
||||
key="item-thumb"
|
||||
className={'item-thumb' + (!thumbnailUrl ? ' no-thumb' : '')}
|
||||
style={!thumbnailUrl ? null : { backgroundImage: "url('" + thumbnailUrl + "')" }}
|
||||
>
|
||||
{props.inPlaylistView ? null : (
|
||||
<MediaItemDuration ariaLabel={duration} time={durationISO8601} text={durationStr} />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const attr = {
|
||||
key: 'item-thumb',
|
||||
href: props.link,
|
||||
@@ -99,11 +68,11 @@ export function MediaItemAudio(props) {
|
||||
const finalClassname = containerClassname +
|
||||
(props.showSelection ? ' with-selection' : '') +
|
||||
(props.isSelected ? ' selected' : '') +
|
||||
(props.hasAnySelection || isSelectMediaMode ? ' has-any-selection' : '');
|
||||
(props.hasAnySelection ? ' has-any-selection' : '');
|
||||
|
||||
const handleItemClick = (e) => {
|
||||
// In embed mode or if there's any selection active, clicking the item should toggle selection
|
||||
if ((isSelectMediaMode || props.hasAnySelection) && props.onCheckboxChange) {
|
||||
// If there's any selection active, clicking the item should toggle selection
|
||||
if (props.hasAnySelection && props.onCheckboxChange) {
|
||||
// Check if clicking on the checkbox itself, edit icon, or view icon
|
||||
if (e.target.closest('.item-selection-checkbox') ||
|
||||
e.target.closest('.item-edit-icon') ||
|
||||
@@ -135,24 +104,16 @@ export function MediaItemAudio(props) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!isSelectMediaMode && editMediaComponent()}
|
||||
{!isSelectMediaMode && viewMediaComponent()}
|
||||
{editMediaComponent()}
|
||||
{viewMediaComponent()}
|
||||
|
||||
{thumbnailComponent()}
|
||||
|
||||
{isSelectMediaMode ? (
|
||||
<UnderThumbWrapper>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
) : (
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
)}
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
|
||||
{playlistOptionsComponent()}
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { useMediaItem } from '../../utils/hooks/';
|
||||
import { PositiveIntegerOrZero, inSelectMediaEmbedMode } from '../../utils/helpers/';
|
||||
import { PositiveIntegerOrZero } from '../../utils/helpers/';
|
||||
import { MediaDurationInfo } from '../../utils/classes/';
|
||||
import { MediaPlaylistOptions } from '../media-playlist-options/MediaPlaylistOptions.jsx';
|
||||
import { MediaItemVideoPlayer, MediaItemDuration, MediaItemVideoPreviewer, MediaItemPlaylistIndex, itemClassname } from './includes/items/';
|
||||
@@ -9,26 +9,10 @@ import { MediaItem } from './MediaItem';
|
||||
|
||||
export function MediaItemVideo(props) {
|
||||
const type = props.type;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
const [titleComponentOrig, descriptionComponent, thumbnailUrl, UnderThumbWrapperOrig, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
const [titleComponent, descriptionComponent, thumbnailUrl, UnderThumbWrapper, editMediaComponent, metaComponents, viewMediaComponent] =
|
||||
useMediaItem({ ...props, type });
|
||||
|
||||
// In embed mode, override components to remove links
|
||||
const ItemTitle = ({ title }) => (
|
||||
<h3>
|
||||
<span>{title}</span>
|
||||
</h3>
|
||||
);
|
||||
|
||||
const ItemMain = ({ children }) => <div className="item-main">{children}</div>;
|
||||
|
||||
const titleComponent = isSelectMediaMode
|
||||
? () => <ItemTitle title={props.title} />
|
||||
: titleComponentOrig;
|
||||
|
||||
const UnderThumbWrapper = isSelectMediaMode ? ItemMain : UnderThumbWrapperOrig;
|
||||
|
||||
const _MediaDurationInfo = new MediaDurationInfo();
|
||||
|
||||
_MediaDurationInfo.update(props.duration);
|
||||
@@ -42,24 +26,6 @@ export function MediaItemVideo(props) {
|
||||
}
|
||||
|
||||
function thumbnailComponent() {
|
||||
if (isSelectMediaMode) {
|
||||
// In select media mode, render thumbnail without link
|
||||
return (
|
||||
<div
|
||||
key="item-thumb"
|
||||
className={'item-thumb' + (!thumbnailUrl ? ' no-thumb' : '')}
|
||||
style={!thumbnailUrl ? null : { backgroundImage: "url('" + thumbnailUrl + "')" }}
|
||||
>
|
||||
{props.inPlaylistView ? null : (
|
||||
<MediaItemDuration ariaLabel={duration} time={durationISO8601} text={durationStr} />
|
||||
)}
|
||||
{props.inPlaylistView || props.inPlaylistPage ? null : (
|
||||
<MediaItemVideoPreviewer url={props.preview_thumbnail} />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const attr = {
|
||||
key: 'item-thumb',
|
||||
href: props.link,
|
||||
@@ -109,11 +75,11 @@ export function MediaItemVideo(props) {
|
||||
const finalClassname = containerClassname +
|
||||
(props.showSelection ? ' with-selection' : '') +
|
||||
(props.isSelected ? ' selected' : '') +
|
||||
(props.hasAnySelection || isSelectMediaMode ? ' has-any-selection' : '');
|
||||
(props.hasAnySelection ? ' has-any-selection' : '');
|
||||
|
||||
const handleItemClick = (e) => {
|
||||
// In select media mode or if there's any selection active, clicking the item should toggle selection
|
||||
if ((isSelectMediaMode || props.hasAnySelection) && props.onCheckboxChange) {
|
||||
// If there's any selection active, clicking the item should toggle selection
|
||||
if (props.hasAnySelection && props.onCheckboxChange) {
|
||||
// Check if clicking on the checkbox itself, edit icon, or view icon
|
||||
if (e.target.closest('.item-selection-checkbox') ||
|
||||
e.target.closest('.item-edit-icon') ||
|
||||
@@ -145,27 +111,19 @@ export function MediaItemVideo(props) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{!isSelectMediaMode && editMediaComponent()}
|
||||
{!isSelectMediaMode && viewMediaComponent()}
|
||||
{editMediaComponent()}
|
||||
{viewMediaComponent()}
|
||||
|
||||
{props.hasMediaViewer ? videoViewerComponent() : thumbnailComponent()}
|
||||
|
||||
{isSelectMediaMode ? (
|
||||
<UnderThumbWrapper>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
) : (
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
)}
|
||||
|
||||
{playlistOptionsComponent()}
|
||||
<UnderThumbWrapper title={props.title} link={props.link}>
|
||||
{titleComponent()}
|
||||
{metaComponents()}
|
||||
{descriptionComponent()}
|
||||
</UnderThumbWrapper>
|
||||
</div>
|
||||
|
||||
{playlistOptionsComponent()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -513,6 +513,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.embedded-app {
|
||||
.viewer-container,
|
||||
.viewer-info {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.viewer-image-container {
|
||||
position: relative;
|
||||
|
||||
@@ -79,10 +79,6 @@ function EditMediaButton(props) {
|
||||
link = '/edit-media.html';
|
||||
}
|
||||
|
||||
if (link && inEmbeddedApp()) {
|
||||
link += '&mode=lms_embed_mode';
|
||||
}
|
||||
|
||||
return (
|
||||
<a href={link} rel="nofollow" title={translateString('Edit media')} className="edit-media-icon">
|
||||
<i className="material-icons">edit</i>
|
||||
@@ -98,18 +94,11 @@ export default function ViewerInfoContent(props) {
|
||||
!PageStore.get('config-enabled').taxonomies.tags || PageStore.get('config-enabled').taxonomies.tags.enabled
|
||||
? metafield(MediaPageStore.get('media-tags'))
|
||||
: [];
|
||||
let mediaCategories = MediaPageStore.get('media-categories');
|
||||
|
||||
// Filter to show only LMS courses when in embed mode
|
||||
if (inEmbeddedApp()) {
|
||||
mediaCategories = mediaCategories.filter(cat => cat.is_lms_course === true);
|
||||
}
|
||||
|
||||
const categoriesContent = PageStore.get('config-options').pages.media.categoriesWithTitle
|
||||
? []
|
||||
: !PageStore.get('config-enabled').taxonomies.categories ||
|
||||
PageStore.get('config-enabled').taxonomies.categories.enabled
|
||||
? metafield(mediaCategories)
|
||||
? metafield(MediaPageStore.get('media-categories'))
|
||||
: [];
|
||||
|
||||
let summary = MediaPageStore.get('media-summary');
|
||||
@@ -231,13 +220,9 @@ export default function ViewerInfoContent(props) {
|
||||
<MediaMetaField
|
||||
value={categoriesContent}
|
||||
title={
|
||||
inEmbeddedApp()
|
||||
? (1 < categoriesContent.length
|
||||
? translateString('Courses')
|
||||
: translateString('Course'))
|
||||
: (1 < categoriesContent.length
|
||||
? translateString('Categories')
|
||||
: translateString('Category'))
|
||||
1 < categoriesContent.length
|
||||
? translateString('Categories')
|
||||
: translateString('Category')
|
||||
}
|
||||
id="categories"
|
||||
/>
|
||||
@@ -289,7 +274,7 @@ export default function ViewerInfoContent(props) {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<CommentsList />
|
||||
{!inEmbeddedApp() && <CommentsList />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -183,7 +183,8 @@ export default class ViewerInfoTitleBanner extends React.PureComponent {
|
||||
{MemberContext._currentValue.can.shareMedia ? <MediaShareButton isVideo={false} /> : null}
|
||||
|
||||
{!MemberContext._currentValue.is.anonymous &&
|
||||
MemberContext._currentValue.can.saveMedia ? (
|
||||
MemberContext._currentValue.can.saveMedia &&
|
||||
-1 < PlaylistsContext._currentValue.mediaTypes.indexOf(MediaPageStore.get('media-type')) ? (
|
||||
<MediaSaveButton />
|
||||
) : null}
|
||||
|
||||
|
||||
@@ -95,8 +95,10 @@ export default class ViewerInfoVideoTitleBanner extends ViewerInfoTitleBanner {
|
||||
<MediaShareButton isVideo={true} />
|
||||
) : null}
|
||||
|
||||
{!MemberContext._currentValue.is.anonymous &&
|
||||
MemberContext._currentValue.can.saveMedia ? (
|
||||
{!inEmbeddedApp() &&
|
||||
!MemberContext._currentValue.is.anonymous &&
|
||||
MemberContext._currentValue.can.saveMedia &&
|
||||
-1 < PlaylistsContext._currentValue.mediaTypes.indexOf(MediaPageStore.get('media-type')) ? (
|
||||
<MediaSaveButton />
|
||||
) : null}
|
||||
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
import React from 'react';
|
||||
import { MediaPageStore } from '../../utils/stores/';
|
||||
import { AutoPlay } from './AutoPlay';
|
||||
import { RelatedMedia } from './RelatedMedia';
|
||||
import PlaylistView from './PlaylistView';
|
||||
|
||||
export default class ViewerSidebar extends React.PureComponent {
|
||||
@@ -9,6 +12,8 @@ export default class ViewerSidebar extends React.PureComponent {
|
||||
playlistData: props.playlistData,
|
||||
isPlaylistPage: !!props.playlistData,
|
||||
activeItem: 0,
|
||||
mediaType: MediaPageStore.get('media-type'),
|
||||
chapters: MediaPageStore.get('media-data')?.chapters
|
||||
};
|
||||
|
||||
if (props.playlistData) {
|
||||
@@ -23,6 +28,18 @@ export default class ViewerSidebar extends React.PureComponent {
|
||||
}
|
||||
}
|
||||
|
||||
this.onMediaLoad = this.onMediaLoad.bind(this);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
MediaPageStore.on('loaded_media_data', this.onMediaLoad);
|
||||
}
|
||||
|
||||
onMediaLoad() {
|
||||
this.setState({
|
||||
mediaType: MediaPageStore.get('media-type'),
|
||||
chapters: MediaPageStore.get('media-data')?.chapter_data || []
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
@@ -30,7 +47,10 @@ export default class ViewerSidebar extends React.PureComponent {
|
||||
<div className="viewer-sidebar">
|
||||
{this.state.isPlaylistPage ? (
|
||||
<PlaylistView activeItem={this.state.activeItem} playlistData={this.props.playlistData} />
|
||||
) : 'video' === this.state.mediaType || 'audio' === this.state.mediaType ? (
|
||||
<AutoPlay />
|
||||
) : null}
|
||||
<RelatedMedia hideFirst={!this.state.isPlaylistPage} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
|
||||
import { VideoViewerActions } from '../../../utils/actions/';
|
||||
import { SiteContext, SiteConsumer } from '../../../utils/contexts/';
|
||||
import { PageStore, MediaPageStore, VideoViewerStore } from '../../../utils/stores/';
|
||||
import { addClassname, removeClassname, formatInnerLink, inEmbeddedApp } from '../../../utils/helpers/';
|
||||
import { addClassname, removeClassname, formatInnerLink } from '../../../utils/helpers/';
|
||||
import { BrowserCache, UpNextLoaderView, MediaDurationInfo } from '../../../utils/classes/';
|
||||
import {
|
||||
orderedSupportedVideoFormats,
|
||||
@@ -176,13 +176,11 @@ export default class VideoViewer extends React.PureComponent {
|
||||
topLeftHtml = document.createElement('div');
|
||||
topLeftHtml.setAttribute('class', 'media-links-top-left');
|
||||
|
||||
const linkTarget = inEmbeddedApp() || window.location.href.indexOf('lms_embed_mode') > -1 ? '_self' : '_blank';
|
||||
|
||||
if (titleLink) {
|
||||
titleLink.setAttribute('class', 'title-link');
|
||||
titleLink.setAttribute('href', this.props.data.url);
|
||||
titleLink.setAttribute('title', this.props.data.title);
|
||||
titleLink.setAttribute('target', linkTarget);
|
||||
titleLink.setAttribute('target', '_blank');
|
||||
titleLink.innerHTML = this.props.data.title;
|
||||
}
|
||||
|
||||
@@ -193,7 +191,7 @@ export default class VideoViewer extends React.PureComponent {
|
||||
formatInnerLink(this.props.data.author_profile, this.props.siteUrl)
|
||||
);
|
||||
userThumbLink.setAttribute('title', this.props.data.author_name);
|
||||
userThumbLink.setAttribute('target', linkTarget);
|
||||
userThumbLink.setAttribute('target', '_blank');
|
||||
userThumbLink.setAttribute(
|
||||
'style',
|
||||
'background-image:url(' +
|
||||
|
||||
@@ -88,7 +88,7 @@ function UploadMediaButton({ user, links }) {
|
||||
{
|
||||
link: '/record_screen',
|
||||
icon: 'videocam',
|
||||
text: translateString('Record'),
|
||||
text: translateString('Record Screen'),
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -656,6 +656,30 @@
|
||||
}
|
||||
}
|
||||
|
||||
&.fixed-nav {
|
||||
.profile-info-nav-wrap {
|
||||
padding-bottom: $_authorPage-navHeight;
|
||||
}
|
||||
|
||||
.profile-nav {
|
||||
z-index: 3;
|
||||
position: fixed;
|
||||
top: var(--header-height);
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.visible-sidebar & {
|
||||
padding-left: var(--sidebar-width);
|
||||
}
|
||||
|
||||
.sliding-sidebar & {
|
||||
transition-property: padding-left;
|
||||
transition-duration: 0.2s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.page-main {
|
||||
|
||||
@@ -5,7 +5,7 @@ import { LinksContext, MemberContext, SiteContext } from '../../utils/contexts/'
|
||||
import { PageStore, ProfilePageStore } from '../../utils/stores/';
|
||||
import { PageActions, ProfilePageActions } from '../../utils/actions/';
|
||||
import { CircleIconButton, PopupMain } from '../_shared';
|
||||
import { translateString, inEmbeddedApp, inSelectMediaEmbedMode, isSelectMediaMode } from '../../utils/helpers/';
|
||||
import { translateString } from '../../utils/helpers/';
|
||||
|
||||
class ProfileSearchBar extends React.PureComponent {
|
||||
constructor(props) {
|
||||
@@ -372,47 +372,30 @@ class NavMenuInlineTabs extends React.PureComponent {
|
||||
}
|
||||
|
||||
render() {
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
// Append action=select_media to links when in select mode
|
||||
const mediaLink = isSelectMediaMode
|
||||
? `${LinksContext._currentValue.profile.media}${LinksContext._currentValue.profile.media.includes('?') ? '&' : '?'}action=select_media`
|
||||
: LinksContext._currentValue.profile.media;
|
||||
|
||||
const sharedByMeLink = isSelectMediaMode
|
||||
? `${LinksContext._currentValue.profile.shared_by_me}${LinksContext._currentValue.profile.shared_by_me.includes('?') ? '&' : '?'}action=select_media`
|
||||
: LinksContext._currentValue.profile.shared_by_me;
|
||||
|
||||
const sharedWithMeLink = isSelectMediaMode
|
||||
? `${LinksContext._currentValue.profile.shared_with_me}${LinksContext._currentValue.profile.shared_with_me.includes('?') ? '&' : '?'}action=select_media`
|
||||
: LinksContext._currentValue.profile.shared_with_me;
|
||||
|
||||
return (
|
||||
<nav ref="tabsNav" className="profile-nav items-list-outer list-inline list-slider">
|
||||
<div className="profile-nav-inner items-list-outer">
|
||||
{this.state.displayPrev ? this.previousBtn : null}
|
||||
|
||||
<ul className="items-list-wrap" ref="itemsListWrap">
|
||||
{!isSelectMediaMode && !inEmbeddedApp() ? (
|
||||
<InlineTab
|
||||
id="about"
|
||||
isActive={'about' === this.props.type}
|
||||
label={translateString('About')}
|
||||
link={LinksContext._currentValue.profile.about}
|
||||
/>
|
||||
) : null}
|
||||
<InlineTab
|
||||
id="about"
|
||||
isActive={'about' === this.props.type}
|
||||
label={translateString('About')}
|
||||
link={LinksContext._currentValue.profile.about}
|
||||
/>
|
||||
<InlineTab
|
||||
id="media"
|
||||
isActive={'media' === this.props.type}
|
||||
label={translateString(this.userIsAuthor ? 'Media I own' : 'Media')}
|
||||
link={mediaLink}
|
||||
link={LinksContext._currentValue.profile.media}
|
||||
/>
|
||||
{this.userIsAuthor ? (
|
||||
<InlineTab
|
||||
id="shared_by_me"
|
||||
isActive={'shared_by_me' === this.props.type}
|
||||
label={translateString('Shared by me')}
|
||||
link={sharedByMeLink}
|
||||
link={LinksContext._currentValue.profile.shared_by_me}
|
||||
/>
|
||||
) : null}
|
||||
{this.userIsAuthor ? (
|
||||
@@ -420,11 +403,11 @@ class NavMenuInlineTabs extends React.PureComponent {
|
||||
id="shared_with_me"
|
||||
isActive={'shared_with_me' === this.props.type}
|
||||
label={translateString('Shared with me')}
|
||||
link={sharedWithMeLink}
|
||||
link={LinksContext._currentValue.profile.shared_with_me}
|
||||
/>
|
||||
) : null}
|
||||
|
||||
{!isSelectMediaMode && MemberContext._currentValue.can.saveMedia ? (
|
||||
{MemberContext._currentValue.can.saveMedia ? (
|
||||
<InlineTab
|
||||
id="playlists"
|
||||
isActive={'playlists' === this.props.type}
|
||||
@@ -623,6 +606,12 @@ export default function ProfilePagesHeader(props) {
|
||||
const profilePageHeaderRef = useRef(null);
|
||||
const profileNavRef = useRef(null);
|
||||
|
||||
const [fixedNav, setFixedNav] = useState(false);
|
||||
|
||||
const positions = {
|
||||
profileNavTop: 0,
|
||||
};
|
||||
|
||||
const userIsAdmin = !MemberContext._currentValue.is.anonymous && MemberContext._currentValue.is.admin;
|
||||
const userIsAuthor =
|
||||
!MemberContext._currentValue.is.anonymous &&
|
||||
@@ -634,6 +623,18 @@ export default function ProfilePagesHeader(props) {
|
||||
userIsAuthor ||
|
||||
(!MemberContext._currentValue.is.anonymous && MemberContext._currentValue.can.deleteProfile);
|
||||
|
||||
function updateProfileNavTopPosition() {
|
||||
positions.profileHeaderTop = profilePageHeaderRef.current.offsetTop;
|
||||
positions.profileNavTop =
|
||||
positions.profileHeaderTop +
|
||||
profilePageHeaderRef.current.offsetHeight -
|
||||
profileNavRef.current.refs.tabsNav.offsetHeight;
|
||||
}
|
||||
|
||||
function updateFixedNavPosition() {
|
||||
setFixedNav(positions.profileHeaderTop + window.scrollY > positions.profileNavTop);
|
||||
}
|
||||
|
||||
function cancelProfileRemoval() {
|
||||
popupContentRef.current.toggle();
|
||||
}
|
||||
@@ -668,26 +669,42 @@ export default function ProfilePagesHeader(props) {
|
||||
}
|
||||
}
|
||||
|
||||
function onWindowResize() {
|
||||
updateProfileNavTopPosition();
|
||||
updateFixedNavPosition();
|
||||
}
|
||||
|
||||
function onWindowScroll() {
|
||||
updateFixedNavPosition();
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (userCanDeleteProfile) {
|
||||
ProfilePageStore.on('profile_delete', onProfileDelete);
|
||||
ProfilePageStore.on('profile_delete_fail', onProfileDeleteFail);
|
||||
}
|
||||
|
||||
PageStore.on('resize', onWindowResize);
|
||||
PageStore.on('changed_page_sidebar_visibility', onWindowResize);
|
||||
PageStore.on('window_scroll', onWindowScroll);
|
||||
|
||||
updateProfileNavTopPosition();
|
||||
updateFixedNavPosition();
|
||||
|
||||
return () => {
|
||||
if (userCanDeleteProfile) {
|
||||
ProfilePageStore.removeListener('profile_delete', onProfileDelete);
|
||||
ProfilePageStore.removeListener('profile_delete_fail', onProfileDeleteFail);
|
||||
}
|
||||
|
||||
PageStore.removeListener('resize', onWindowResize);
|
||||
PageStore.removeListener('changed_page_sidebar_visibility', onWindowResize);
|
||||
PageStore.removeListener('window_scroll', onWindowScroll);
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div
|
||||
ref={profilePageHeaderRef}
|
||||
className={'profile-page-header'}
|
||||
{...(isSelectMediaMode() ? { 'data-action': 'select_media' } : {})}
|
||||
>
|
||||
<div ref={profilePageHeaderRef} className={'profile-page-header' + (fixedNav ? ' fixed-nav' : '')}>
|
||||
{!props.hideChannelBanner && (
|
||||
<span className="profile-banner-wrap">
|
||||
{props.author.banner_thumbnail_url ? (
|
||||
@@ -751,7 +768,7 @@ export default function ProfilePagesHeader(props) {
|
||||
)}
|
||||
|
||||
<div className="profile-info-nav-wrap">
|
||||
{!inEmbeddedApp() && (props.author.thumbnail_url || props.author.name) ? (
|
||||
{props.author.thumbnail_url || props.author.name ? (
|
||||
<div className="profile-info">
|
||||
<div className="profile-info-inner">
|
||||
<div>
|
||||
|
||||
@@ -3,14 +3,14 @@ import { ApiUrlConsumer } from '../utils/contexts/';
|
||||
import { MediaListWrapper } from '../components/MediaListWrapper';
|
||||
import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListAsync.jsx';
|
||||
import { Page } from './Page';
|
||||
import { translateString, inEmbeddedApp } from '../utils/helpers/';
|
||||
import { translateString } from '../utils/helpers/';
|
||||
|
||||
interface CategoriesPageProps {
|
||||
id?: string;
|
||||
title?: string;
|
||||
}
|
||||
|
||||
export const CategoriesPage: React.FC<CategoriesPageProps> = ({ id = 'categories', title = inEmbeddedApp() ? translateString('Courses') : translateString('Categories') }) => (
|
||||
export const CategoriesPage: React.FC<CategoriesPageProps> = ({ id = 'categories', title = translateString('Categories') }) => (
|
||||
<Page id={id}>
|
||||
<ApiUrlConsumer>
|
||||
{(apiUrl) => (
|
||||
|
||||
@@ -8,7 +8,7 @@ import { PageStore, ProfilePageStore } from '../utils/stores/';
|
||||
import ProfilePagesHeader from '../components/profile-page/ProfilePagesHeader';
|
||||
import ProfilePagesContent from '../components/profile-page/ProfilePagesContent';
|
||||
import { MediaListRow } from '../components/MediaListRow';
|
||||
import { ProfileMediaPageBase } from './ProfileMediaPage';
|
||||
import { ProfileMediaPage } from './ProfileMediaPage';
|
||||
|
||||
class ChannelContactForm extends React.PureComponent {
|
||||
constructor(props) {
|
||||
@@ -149,7 +149,7 @@ class ChannelContactForm extends React.PureComponent {
|
||||
}
|
||||
}
|
||||
|
||||
export class ProfileAboutPage extends ProfileMediaPageBase {
|
||||
export class ProfileAboutPage extends ProfileMediaPage {
|
||||
constructor(props) {
|
||||
super(props, 'author-about');
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@ import { MediaListWrapper } from '../components/MediaListWrapper';
|
||||
import ProfilePagesHeader from '../components/profile-page/ProfilePagesHeader';
|
||||
import ProfilePagesContent from '../components/profile-page/ProfilePagesContent';
|
||||
import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListAsync.jsx';
|
||||
import { ProfileMediaPageBase } from './ProfileMediaPage';
|
||||
import { ProfileMediaPage } from './ProfileMediaPage';
|
||||
|
||||
export class ProfileHistoryPage extends ProfileMediaPageBase {
|
||||
export class ProfileHistoryPage extends ProfileMediaPage {
|
||||
constructor(props) {
|
||||
super(props, 'author-history');
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@ import { MediaListWrapper } from '../components/MediaListWrapper';
|
||||
import ProfilePagesHeader from '../components/profile-page/ProfilePagesHeader';
|
||||
import ProfilePagesContent from '../components/profile-page/ProfilePagesContent';
|
||||
import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListAsync';
|
||||
import { ProfileMediaPageBase } from './ProfileMediaPage';
|
||||
import { ProfileMediaPage } from './ProfileMediaPage';
|
||||
|
||||
export class ProfileLikedPage extends ProfileMediaPageBase {
|
||||
export class ProfileLikedPage extends ProfileMediaPage {
|
||||
constructor(props) {
|
||||
super(props, 'author-liked');
|
||||
|
||||
|
||||
@@ -3,22 +3,27 @@ import PropTypes from 'prop-types';
|
||||
import { ApiUrlContext, LinksConsumer, MemberContext } from '../utils/contexts';
|
||||
import { PageStore, ProfilePageStore } from '../utils/stores';
|
||||
import { ProfilePageActions, PageActions } from '../utils/actions';
|
||||
import { inEmbeddedApp, inSelectMediaEmbedMode, translateString } from '../utils/helpers/';
|
||||
import { inEmbeddedApp, translateString } from '../utils/helpers/';
|
||||
import { MediaListWrapper } from '../components/MediaListWrapper';
|
||||
import ProfilePagesHeader from '../components/profile-page/ProfilePagesHeader';
|
||||
import ProfilePagesContent from '../components/profile-page/ProfilePagesContent';
|
||||
import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListAsync';
|
||||
import { BulkActionsModals } from '../components/BulkActionsModals';
|
||||
import { BulkActionConfirmModal } from '../components/BulkActionConfirmModal';
|
||||
import { BulkActionPermissionModal } from '../components/BulkActionPermissionModal';
|
||||
import { BulkActionPlaylistModal } from '../components/BulkActionPlaylistModal';
|
||||
import { BulkActionChangeOwnerModal } from '../components/BulkActionChangeOwnerModal';
|
||||
import { BulkActionPublishStateModal } from '../components/BulkActionPublishStateModal';
|
||||
import { BulkActionCategoryModal } from '../components/BulkActionCategoryModal';
|
||||
import { BulkActionTagModal } from '../components/BulkActionTagModal';
|
||||
import { ProfileMediaFilters } from '../components/search-filters/ProfileMediaFilters';
|
||||
import { ProfileMediaTags } from '../components/search-filters/ProfileMediaTags';
|
||||
import { ProfileMediaSorting } from '../components/search-filters/ProfileMediaSorting';
|
||||
import { withBulkActions } from '../utils/hoc/withBulkActions';
|
||||
|
||||
import { Page } from './_Page';
|
||||
|
||||
import '../components/profile-page/ProfilePage.scss';
|
||||
|
||||
class ProfileMediaPage extends Page {
|
||||
export class ProfileMediaPage extends Page {
|
||||
constructor(props, pageSlug) {
|
||||
super(props, 'string' === typeof pageSlug ? pageSlug : 'author-home');
|
||||
|
||||
@@ -31,7 +36,15 @@ class ProfileMediaPage extends Page {
|
||||
title: this.props.title,
|
||||
query: ProfilePageStore.get('author-query'),
|
||||
requestUrl: null,
|
||||
selectedMedia: new Set(), // For select media embed mode only
|
||||
selectedMedia: new Set(),
|
||||
availableMediaIds: [],
|
||||
showConfirmModal: false,
|
||||
pendingAction: null,
|
||||
confirmMessage: '',
|
||||
listKey: 0,
|
||||
notificationMessage: '',
|
||||
showNotification: false,
|
||||
notificationType: 'success',
|
||||
hiddenFilters: true,
|
||||
hiddenTags: true,
|
||||
hiddenSorting: true,
|
||||
@@ -39,6 +52,13 @@ class ProfileMediaPage extends Page {
|
||||
availableTags: [],
|
||||
selectedTag: 'all',
|
||||
selectedSort: 'date_added_desc',
|
||||
showPermissionModal: false,
|
||||
permissionType: null,
|
||||
showPlaylistModal: false,
|
||||
showChangeOwnerModal: false,
|
||||
showPublishStateModal: false,
|
||||
showCategoryModal: false,
|
||||
showTagModal: false,
|
||||
};
|
||||
|
||||
this.authorDataLoad = this.authorDataLoad.bind(this);
|
||||
@@ -46,6 +66,20 @@ class ProfileMediaPage extends Page {
|
||||
this.getCountFunc = this.getCountFunc.bind(this);
|
||||
this.changeRequestQuery = this.changeRequestQuery.bind(this);
|
||||
this.handleMediaSelection = this.handleMediaSelection.bind(this);
|
||||
this.handleBulkAction = this.handleBulkAction.bind(this);
|
||||
this.handleConfirmCancel = this.handleConfirmCancel.bind(this);
|
||||
this.handleConfirmProceed = this.handleConfirmProceed.bind(this);
|
||||
this.clearSelectionAndRefresh = this.clearSelectionAndRefresh.bind(this);
|
||||
this.clearSelection = this.clearSelection.bind(this);
|
||||
this.executeEnableComments = this.executeEnableComments.bind(this);
|
||||
this.executeDisableComments = this.executeDisableComments.bind(this);
|
||||
this.executeEnableDownload = this.executeEnableDownload.bind(this);
|
||||
this.executeDisableDownload = this.executeDisableDownload.bind(this);
|
||||
this.executeCopyMedia = this.executeCopyMedia.bind(this);
|
||||
this.showNotification = this.showNotification.bind(this);
|
||||
this.handleSelectAll = this.handleSelectAll.bind(this);
|
||||
this.handleDeselectAll = this.handleDeselectAll.bind(this);
|
||||
this.handleItemsUpdate = this.handleItemsUpdate.bind(this);
|
||||
this.onToggleFiltersClick = this.onToggleFiltersClick.bind(this);
|
||||
this.onToggleTagsClick = this.onToggleTagsClick.bind(this);
|
||||
this.onToggleSortingClick = this.onToggleSortingClick.bind(this);
|
||||
@@ -53,6 +87,24 @@ class ProfileMediaPage extends Page {
|
||||
this.onTagSelect = this.onTagSelect.bind(this);
|
||||
this.onSortSelect = this.onSortSelect.bind(this);
|
||||
this.onResponseDataLoaded = this.onResponseDataLoaded.bind(this);
|
||||
this.handlePermissionModalCancel = this.handlePermissionModalCancel.bind(this);
|
||||
this.handlePermissionModalSuccess = this.handlePermissionModalSuccess.bind(this);
|
||||
this.handlePermissionModalError = this.handlePermissionModalError.bind(this);
|
||||
this.handlePlaylistModalCancel = this.handlePlaylistModalCancel.bind(this);
|
||||
this.handlePlaylistModalSuccess = this.handlePlaylistModalSuccess.bind(this);
|
||||
this.handlePlaylistModalError = this.handlePlaylistModalError.bind(this);
|
||||
this.handleChangeOwnerModalCancel = this.handleChangeOwnerModalCancel.bind(this);
|
||||
this.handleChangeOwnerModalSuccess = this.handleChangeOwnerModalSuccess.bind(this);
|
||||
this.handleChangeOwnerModalError = this.handleChangeOwnerModalError.bind(this);
|
||||
this.handlePublishStateModalCancel = this.handlePublishStateModalCancel.bind(this);
|
||||
this.handlePublishStateModalSuccess = this.handlePublishStateModalSuccess.bind(this);
|
||||
this.handlePublishStateModalError = this.handlePublishStateModalError.bind(this);
|
||||
this.handleCategoryModalCancel = this.handleCategoryModalCancel.bind(this);
|
||||
this.handleCategoryModalSuccess = this.handleCategoryModalSuccess.bind(this);
|
||||
this.handleCategoryModalError = this.handleCategoryModalError.bind(this);
|
||||
this.handleTagModalCancel = this.handleTagModalCancel.bind(this);
|
||||
this.handleTagModalSuccess = this.handleTagModalSuccess.bind(this);
|
||||
this.handleTagModalError = this.handleTagModalError.bind(this);
|
||||
|
||||
ProfilePageStore.on('load-author-data', this.authorDataLoad);
|
||||
}
|
||||
@@ -150,26 +202,394 @@ class ProfileMediaPage extends Page {
|
||||
}
|
||||
|
||||
handleMediaSelection(mediaId, isSelected) {
|
||||
// Only used in select media embed mode; normal mode is handled by bulkActions
|
||||
this.setState((prevState) => {
|
||||
const newSelectedMedia = new Set();
|
||||
|
||||
const newSelectedMedia = new Set(prevState.selectedMedia);
|
||||
if (isSelected) {
|
||||
newSelectedMedia.add(mediaId);
|
||||
} else {
|
||||
newSelectedMedia.delete(mediaId);
|
||||
}
|
||||
return { selectedMedia: newSelectedMedia };
|
||||
});
|
||||
}
|
||||
|
||||
if (window.parent !== window) {
|
||||
const baseUrl = window.location.origin;
|
||||
const embedUrl = `${baseUrl}/embed?m=${mediaId}`;
|
||||
handleBulkAction(action) {
|
||||
const selectedCount = this.state.selectedMedia.size;
|
||||
|
||||
window.parent.postMessage({
|
||||
type: 'videoSelected',
|
||||
embedUrl: embedUrl,
|
||||
videoId: mediaId
|
||||
}, '*');
|
||||
if (selectedCount === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (action === 'delete-media') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to delete') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'enable-comments') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to enable comments to') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'disable-comments') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to disable comments to') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'enable-download') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to enable download for') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'disable-download') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to disable download for') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'copy-media') {
|
||||
this.setState({
|
||||
showConfirmModal: true,
|
||||
pendingAction: action,
|
||||
confirmMessage:
|
||||
translateString('You are going to copy') +
|
||||
` ${selectedCount} ` +
|
||||
translateString('media, are you sure?'),
|
||||
});
|
||||
} else if (action === 'add-remove-coviewers') {
|
||||
this.setState({
|
||||
showPermissionModal: true,
|
||||
permissionType: 'viewer',
|
||||
});
|
||||
} else if (action === 'add-remove-coeditors') {
|
||||
this.setState({
|
||||
showPermissionModal: true,
|
||||
permissionType: 'editor',
|
||||
});
|
||||
} else if (action === 'add-remove-coowners') {
|
||||
this.setState({
|
||||
showPermissionModal: true,
|
||||
permissionType: 'owner',
|
||||
});
|
||||
} else if (action === 'add-remove-playlist') {
|
||||
this.setState({
|
||||
showPlaylistModal: true,
|
||||
});
|
||||
} else if (action === 'change-owner') {
|
||||
this.setState({
|
||||
showChangeOwnerModal: true,
|
||||
});
|
||||
} else if (action === 'publish-state') {
|
||||
this.setState({
|
||||
showPublishStateModal: true,
|
||||
});
|
||||
} else if (action === 'add-remove-category') {
|
||||
this.setState({
|
||||
showCategoryModal: true,
|
||||
});
|
||||
} else if (action === 'add-remove-tags') {
|
||||
this.setState({
|
||||
showTagModal: true,
|
||||
});
|
||||
} else {
|
||||
// Other actions can be implemented later
|
||||
}
|
||||
}
|
||||
|
||||
handleConfirmCancel() {
|
||||
this.setState({
|
||||
showConfirmModal: false,
|
||||
pendingAction: null,
|
||||
confirmMessage: '',
|
||||
});
|
||||
}
|
||||
|
||||
handleConfirmProceed() {
|
||||
const action = this.state.pendingAction;
|
||||
this.setState({
|
||||
showConfirmModal: false,
|
||||
pendingAction: null,
|
||||
confirmMessage: '',
|
||||
});
|
||||
|
||||
if (action === 'delete-media') {
|
||||
this.executeDeleteMedia();
|
||||
} else if (action === 'enable-comments') {
|
||||
this.executeEnableComments();
|
||||
} else if (action === 'disable-comments') {
|
||||
this.executeDisableComments();
|
||||
} else if (action === 'enable-download') {
|
||||
this.executeEnableDownload();
|
||||
} else if (action === 'disable-download') {
|
||||
this.executeDisableDownload();
|
||||
} else if (action === 'copy-media') {
|
||||
this.executeCopyMedia();
|
||||
}
|
||||
}
|
||||
|
||||
executeDeleteMedia() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
const selectedCount = selectedIds.length;
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'delete_media',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to delete media');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
const message =
|
||||
selectedCount === 1
|
||||
? translateString('The media was deleted successfully.')
|
||||
: translateString('Successfully deleted') + ` ${selectedCount} ` + translateString('media.');
|
||||
this.showNotification(message);
|
||||
this.clearSelectionAndRefresh();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to delete media. Please try again.'), 'error');
|
||||
this.clearSelectionAndRefresh();
|
||||
});
|
||||
}
|
||||
|
||||
getCsrfToken() {
|
||||
const name = 'csrftoken';
|
||||
let cookieValue = null;
|
||||
if (document.cookie && document.cookie !== '') {
|
||||
const cookies = document.cookie.split(';');
|
||||
for (let i = 0; i < cookies.length; i++) {
|
||||
const cookie = cookies[i].trim();
|
||||
if (cookie.substring(0, name.length + 1) === name + '=') {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return cookieValue;
|
||||
}
|
||||
|
||||
return { selectedMedia: newSelectedMedia };
|
||||
clearSelectionAndRefresh() {
|
||||
// Clear selected media and increment listKey to force re-render
|
||||
this.setState((prevState) => ({
|
||||
selectedMedia: new Set(),
|
||||
listKey: prevState.listKey + 1,
|
||||
}));
|
||||
}
|
||||
|
||||
clearSelection() {
|
||||
// Clear selected media without refreshing
|
||||
this.setState({
|
||||
selectedMedia: new Set(),
|
||||
});
|
||||
}
|
||||
|
||||
executeEnableComments() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'enable_comments',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to enable comments');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.showNotification(translateString('Successfully Enabled comments'));
|
||||
this.clearSelection();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to enable comments.'), 'error');
|
||||
this.clearSelection();
|
||||
});
|
||||
}
|
||||
|
||||
executeDisableComments() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'disable_comments',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to disable comments');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.showNotification(translateString('Successfully Disabled comments'));
|
||||
this.clearSelection();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to disable comments.'), 'error');
|
||||
this.clearSelection();
|
||||
});
|
||||
}
|
||||
|
||||
executeEnableDownload() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'enable_download',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to enable download');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.showNotification(translateString('Successfully Enabled Download'));
|
||||
this.clearSelection();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to enable download.'), 'error');
|
||||
this.clearSelection();
|
||||
});
|
||||
}
|
||||
|
||||
executeDisableDownload() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'disable_download',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to disable download');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.showNotification(translateString('Successfully Disabled Download'));
|
||||
this.clearSelection();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to disable download.'), 'error');
|
||||
this.clearSelection();
|
||||
});
|
||||
}
|
||||
|
||||
executeCopyMedia() {
|
||||
const selectedIds = Array.from(this.state.selectedMedia);
|
||||
|
||||
fetch('/api/v1/media/user/bulk_actions', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-CSRFToken': this.getCsrfToken(),
|
||||
},
|
||||
body: JSON.stringify({
|
||||
action: 'copy_media',
|
||||
media_ids: selectedIds,
|
||||
}),
|
||||
})
|
||||
.then((response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to copy media');
|
||||
}
|
||||
return response.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.showNotification(translateString('Successfully Copied'));
|
||||
this.clearSelectionAndRefresh();
|
||||
})
|
||||
.catch((error) => {
|
||||
this.showNotification(translateString('Failed to copy media.'), 'error');
|
||||
this.clearSelection();
|
||||
});
|
||||
}
|
||||
|
||||
showNotification(message, type = 'success') {
|
||||
this.setState({
|
||||
notificationMessage: message,
|
||||
showNotification: true,
|
||||
notificationType: type,
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
this.setState({ showNotification: false });
|
||||
}, 5000);
|
||||
}
|
||||
|
||||
handleItemsUpdate(items) {
|
||||
// Extract media IDs from loaded items
|
||||
const mediaIds = items.map((item) => item.friendly_token || item.uid || item.id);
|
||||
this.setState({ availableMediaIds: mediaIds });
|
||||
}
|
||||
|
||||
handleSelectAll() {
|
||||
// Select all available media
|
||||
this.setState({
|
||||
selectedMedia: new Set(this.state.availableMediaIds),
|
||||
});
|
||||
}
|
||||
|
||||
handleDeselectAll() {
|
||||
// Clear all selections
|
||||
this.setState({
|
||||
selectedMedia: new Set(),
|
||||
});
|
||||
}
|
||||
|
||||
@@ -199,6 +619,7 @@ class ProfileMediaPage extends Page {
|
||||
|
||||
onTagSelect(tag) {
|
||||
this.setState({ selectedTag: tag }, () => {
|
||||
// Apply tag filter
|
||||
this.onFiltersUpdate({
|
||||
media_type: this.state.filterArgs.includes('media_type')
|
||||
? this.state.filterArgs.match(/media_type=([^&]*)/)?.[1]
|
||||
@@ -220,6 +641,7 @@ class ProfileMediaPage extends Page {
|
||||
|
||||
onSortSelect(sortOption) {
|
||||
this.setState({ selectedSort: sortOption }, () => {
|
||||
// Apply sort filter
|
||||
this.onFiltersUpdate({
|
||||
media_type: this.state.filterArgs.includes('media_type')
|
||||
? this.state.filterArgs.match(/media_type=([^&]*)/)?.[1]
|
||||
@@ -268,16 +690,19 @@ class ProfileMediaPage extends Page {
|
||||
break;
|
||||
}
|
||||
|
||||
// Handle duration filter
|
||||
if (updatedArgs.duration && updatedArgs.duration !== 'all') {
|
||||
args.duration = updatedArgs.duration;
|
||||
}
|
||||
|
||||
// Handle publish state filter
|
||||
if (updatedArgs.publish_state && updatedArgs.publish_state !== 'all') {
|
||||
args.publish_state = updatedArgs.publish_state;
|
||||
}
|
||||
|
||||
switch (updatedArgs.sort_by) {
|
||||
case 'date_added_desc':
|
||||
// Default sorting, no need to add parameters
|
||||
break;
|
||||
case 'date_added_asc':
|
||||
args.ordering = 'asc';
|
||||
@@ -302,6 +727,7 @@ class ProfileMediaPage extends Page {
|
||||
break;
|
||||
}
|
||||
|
||||
// Handle tag filter
|
||||
if (updatedArgs.tag && updatedArgs.tag !== 'all') {
|
||||
args.t = updatedArgs.tag;
|
||||
}
|
||||
@@ -317,8 +743,10 @@ class ProfileMediaPage extends Page {
|
||||
this.setState(
|
||||
{
|
||||
filterArgs: newArgs.length ? '&' + newArgs.join('&') : '',
|
||||
selectedMedia: new Set(), // Clear selected items when filter changes
|
||||
},
|
||||
function () {
|
||||
// Update the request URL with new filter args
|
||||
if (!this.state.author) {
|
||||
return;
|
||||
}
|
||||
@@ -345,7 +773,137 @@ class ProfileMediaPage extends Page {
|
||||
);
|
||||
}
|
||||
|
||||
handlePermissionModalCancel() {
|
||||
this.setState({
|
||||
showPermissionModal: false,
|
||||
permissionType: null,
|
||||
});
|
||||
}
|
||||
|
||||
handlePermissionModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelection();
|
||||
this.setState({
|
||||
showPermissionModal: false,
|
||||
permissionType: null,
|
||||
});
|
||||
}
|
||||
|
||||
handlePermissionModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showPermissionModal: false,
|
||||
permissionType: null,
|
||||
});
|
||||
}
|
||||
|
||||
handlePlaylistModalCancel() {
|
||||
this.setState({
|
||||
showPlaylistModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handlePlaylistModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelection();
|
||||
this.setState({
|
||||
showPlaylistModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handlePlaylistModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showPlaylistModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleChangeOwnerModalCancel() {
|
||||
this.setState({
|
||||
showChangeOwnerModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleChangeOwnerModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelectionAndRefresh();
|
||||
this.setState({
|
||||
showChangeOwnerModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleChangeOwnerModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showChangeOwnerModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handlePublishStateModalCancel() {
|
||||
this.setState({
|
||||
showPublishStateModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handlePublishStateModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelectionAndRefresh();
|
||||
this.setState({
|
||||
showPublishStateModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handlePublishStateModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showPublishStateModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleCategoryModalCancel() {
|
||||
this.setState({
|
||||
showCategoryModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleCategoryModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelection();
|
||||
this.setState({
|
||||
showCategoryModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleCategoryModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showCategoryModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleTagModalCancel() {
|
||||
this.setState({
|
||||
showTagModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleTagModalSuccess(message) {
|
||||
this.showNotification(message);
|
||||
this.clearSelection();
|
||||
this.setState({
|
||||
showTagModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
handleTagModalError(message) {
|
||||
this.showNotification(message, 'error');
|
||||
this.setState({
|
||||
showTagModal: false,
|
||||
});
|
||||
}
|
||||
|
||||
onResponseDataLoaded(responseData) {
|
||||
// Extract tags from response
|
||||
if (responseData && responseData.tags) {
|
||||
const tags = responseData.tags
|
||||
.split(',')
|
||||
@@ -359,8 +917,8 @@ class ProfileMediaPage extends Page {
|
||||
const authorData = ProfilePageStore.get('author-data');
|
||||
|
||||
const isMediaAuthor = authorData && authorData.username === MemberContext._currentValue.username;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
// Check if any filters are active (excluding default sort and tags)
|
||||
const hasActiveFilters =
|
||||
this.state.filterArgs &&
|
||||
(this.state.filterArgs.includes('media_type=') ||
|
||||
@@ -390,16 +948,15 @@ class ProfileMediaPage extends Page {
|
||||
this.state.author ? (
|
||||
<ProfilePagesContent key="ProfilePagesContent">
|
||||
<MediaListWrapper
|
||||
title={inEmbeddedApp() ? undefined : this.state.title}
|
||||
title={this.state.title}
|
||||
className="items-list-ver"
|
||||
style={inEmbeddedApp() ? { marginTop: '24px' } : undefined}
|
||||
showBulkActions={!isSelectMediaMode && isMediaAuthor}
|
||||
selectedCount={isSelectMediaMode ? this.state.selectedMedia.size : this.props.bulkActions.selectedMedia.size}
|
||||
totalCount={isSelectMediaMode ? 0 : this.props.bulkActions.availableMediaIds.length}
|
||||
onBulkAction={this.props.bulkActions.handleBulkAction}
|
||||
onSelectAll={this.props.bulkActions.handleSelectAll}
|
||||
onDeselectAll={this.props.bulkActions.handleDeselectAll}
|
||||
showAddMediaButton={!isSelectMediaMode && isMediaAuthor}
|
||||
showBulkActions={isMediaAuthor}
|
||||
selectedCount={this.state.selectedMedia.size}
|
||||
totalCount={this.state.availableMediaIds.length}
|
||||
onBulkAction={this.handleBulkAction}
|
||||
onSelectAll={this.handleSelectAll}
|
||||
onDeselectAll={this.handleDeselectAll}
|
||||
showAddMediaButton={isMediaAuthor}
|
||||
>
|
||||
<ProfileMediaFilters
|
||||
hidden={this.state.hiddenFilters}
|
||||
@@ -415,51 +972,105 @@ class ProfileMediaPage extends Page {
|
||||
/>
|
||||
<ProfileMediaSorting hidden={this.state.hiddenSorting} onSortSelect={this.onSortSelect} />
|
||||
<LazyLoadItemListAsync
|
||||
key={`${this.state.requestUrl}-${this.props.bulkActions.listKey}`}
|
||||
key={`${this.state.requestUrl}-${this.state.listKey}`}
|
||||
requestUrl={this.state.requestUrl}
|
||||
hideAuthor={true}
|
||||
itemsCountCallback={this.state.requestUrl ? this.getCountFunc : null}
|
||||
hideViews={!PageStore.get('config-media-item').displayViews}
|
||||
hideDate={!PageStore.get('config-media-item').displayPublishDate}
|
||||
canEdit={isMediaAuthor}
|
||||
showSelection={isMediaAuthor || isSelectMediaMode}
|
||||
hasAnySelection={isSelectMediaMode ? this.state.selectedMedia.size > 0 : this.props.bulkActions.selectedMedia.size > 0}
|
||||
selectedMedia={isSelectMediaMode ? this.state.selectedMedia : this.props.bulkActions.selectedMedia}
|
||||
onMediaSelection={isSelectMediaMode ? this.handleMediaSelection : this.props.bulkActions.handleMediaSelection}
|
||||
onItemsUpdate={!isSelectMediaMode ? this.props.bulkActions.handleItemsUpdate : undefined}
|
||||
showSelection={isMediaAuthor}
|
||||
hasAnySelection={this.state.selectedMedia.size > 0}
|
||||
selectedMedia={this.state.selectedMedia}
|
||||
onMediaSelection={this.handleMediaSelection}
|
||||
onItemsUpdate={this.handleItemsUpdate}
|
||||
onResponseDataLoaded={this.onResponseDataLoaded}
|
||||
/>
|
||||
</MediaListWrapper>
|
||||
</ProfilePagesContent>
|
||||
) : null,
|
||||
this.state.author && isMediaAuthor && !isSelectMediaMode ? (
|
||||
<BulkActionsModals
|
||||
key="BulkActionsModals"
|
||||
{...this.props.bulkActions}
|
||||
selectedMediaIds={Array.from(this.props.bulkActions.selectedMedia)}
|
||||
csrfToken={this.props.bulkActions.getCsrfToken()}
|
||||
username={this.state.author.username}
|
||||
onConfirmCancel={this.props.bulkActions.handleConfirmCancel}
|
||||
onConfirmProceed={this.props.bulkActions.handleConfirmProceed}
|
||||
onPermissionModalCancel={this.props.bulkActions.handlePermissionModalCancel}
|
||||
onPermissionModalSuccess={this.props.bulkActions.handlePermissionModalSuccess}
|
||||
onPermissionModalError={this.props.bulkActions.handlePermissionModalError}
|
||||
onPlaylistModalCancel={this.props.bulkActions.handlePlaylistModalCancel}
|
||||
onPlaylistModalSuccess={this.props.bulkActions.handlePlaylistModalSuccess}
|
||||
onPlaylistModalError={this.props.bulkActions.handlePlaylistModalError}
|
||||
onChangeOwnerModalCancel={this.props.bulkActions.handleChangeOwnerModalCancel}
|
||||
onChangeOwnerModalSuccess={this.props.bulkActions.handleChangeOwnerModalSuccess}
|
||||
onChangeOwnerModalError={this.props.bulkActions.handleChangeOwnerModalError}
|
||||
onPublishStateModalCancel={this.props.bulkActions.handlePublishStateModalCancel}
|
||||
onPublishStateModalSuccess={this.props.bulkActions.handlePublishStateModalSuccess}
|
||||
onPublishStateModalError={this.props.bulkActions.handlePublishStateModalError}
|
||||
onCategoryModalCancel={this.props.bulkActions.handleCategoryModalCancel}
|
||||
onCategoryModalSuccess={this.props.bulkActions.handleCategoryModalSuccess}
|
||||
onCategoryModalError={this.props.bulkActions.handleCategoryModalError}
|
||||
onTagModalCancel={this.props.bulkActions.handleTagModalCancel}
|
||||
onTagModalSuccess={this.props.bulkActions.handleTagModalSuccess}
|
||||
onTagModalError={this.props.bulkActions.handleTagModalError}
|
||||
/>
|
||||
<BulkActionConfirmModal
|
||||
key="BulkActionConfirmModal"
|
||||
isOpen={this.state.showConfirmModal}
|
||||
message={this.state.confirmMessage}
|
||||
onCancel={this.handleConfirmCancel}
|
||||
onProceed={this.handleConfirmProceed}
|
||||
/>,
|
||||
<BulkActionPermissionModal
|
||||
key="BulkActionPermissionModal"
|
||||
isOpen={this.state.showPermissionModal}
|
||||
permissionType={this.state.permissionType}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handlePermissionModalCancel}
|
||||
onSuccess={this.handlePermissionModalSuccess}
|
||||
onError={this.handlePermissionModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
/>,
|
||||
<BulkActionPlaylistModal
|
||||
key="BulkActionPlaylistModal"
|
||||
isOpen={this.state.showPlaylistModal}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handlePlaylistModalCancel}
|
||||
onSuccess={this.handlePlaylistModalSuccess}
|
||||
onError={this.handlePlaylistModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
username={this.state.author ? this.state.author.username : ''}
|
||||
/>,
|
||||
<BulkActionChangeOwnerModal
|
||||
key="BulkActionChangeOwnerModal"
|
||||
isOpen={this.state.showChangeOwnerModal}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handleChangeOwnerModalCancel}
|
||||
onSuccess={this.handleChangeOwnerModalSuccess}
|
||||
onError={this.handleChangeOwnerModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
/>,
|
||||
<BulkActionPublishStateModal
|
||||
key="BulkActionPublishStateModal"
|
||||
isOpen={this.state.showPublishStateModal}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handlePublishStateModalCancel}
|
||||
onSuccess={this.handlePublishStateModalSuccess}
|
||||
onError={this.handlePublishStateModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
/>,
|
||||
<BulkActionCategoryModal
|
||||
key="BulkActionCategoryModal"
|
||||
isOpen={this.state.showCategoryModal}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handleCategoryModalCancel}
|
||||
onSuccess={this.handleCategoryModalSuccess}
|
||||
onError={this.handleCategoryModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
/>,
|
||||
<BulkActionTagModal
|
||||
key="BulkActionTagModal"
|
||||
isOpen={this.state.showTagModal}
|
||||
selectedMediaIds={Array.from(this.state.selectedMedia)}
|
||||
onCancel={this.handleTagModalCancel}
|
||||
onSuccess={this.handleTagModalSuccess}
|
||||
onError={this.handleTagModalError}
|
||||
csrfToken={this.getCsrfToken()}
|
||||
/>,
|
||||
this.state.showNotification ? (
|
||||
<div
|
||||
key="SimpleNotification"
|
||||
style={{
|
||||
position: 'fixed',
|
||||
bottom: '20px',
|
||||
left: '260px',
|
||||
backgroundColor: this.state.notificationType === 'error' ? '#f44336' : '#4CAF50',
|
||||
color: 'white',
|
||||
padding: '16px 24px',
|
||||
borderRadius: '4px',
|
||||
boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)',
|
||||
zIndex: 1000,
|
||||
fontSize: '14px',
|
||||
fontWeight: '500',
|
||||
}}
|
||||
>
|
||||
{this.state.notificationMessage}
|
||||
</div>
|
||||
) : null,
|
||||
];
|
||||
}
|
||||
@@ -467,17 +1078,8 @@ class ProfileMediaPage extends Page {
|
||||
|
||||
ProfileMediaPage.propTypes = {
|
||||
title: PropTypes.string.isRequired,
|
||||
bulkActions: PropTypes.object.isRequired,
|
||||
};
|
||||
|
||||
ProfileMediaPage.defaultProps = {
|
||||
title: 'Uploads',
|
||||
};
|
||||
|
||||
// Export the raw class for subclasses to extend
|
||||
export { ProfileMediaPage as ProfileMediaPageBase };
|
||||
|
||||
// Export the HOC-wrapped version as the renderable component
|
||||
const WrappedProfileMediaPage = withBulkActions(ProfileMediaPage);
|
||||
export { WrappedProfileMediaPage as ProfileMediaPage };
|
||||
export default WrappedProfileMediaPage;
|
||||
|
||||
@@ -6,9 +6,9 @@ import { MediaListWrapper } from '../components/MediaListWrapper';
|
||||
import ProfilePagesHeader from '../components/profile-page/ProfilePagesHeader';
|
||||
import ProfilePagesContent from '../components/profile-page/ProfilePagesContent';
|
||||
import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListAsync.jsx';
|
||||
import { ProfileMediaPageBase } from './ProfileMediaPage';
|
||||
import { ProfileMediaPage } from './ProfileMediaPage';
|
||||
|
||||
export class ProfilePlaylistsPage extends ProfileMediaPageBase {
|
||||
export class ProfilePlaylistsPage extends ProfileMediaPage {
|
||||
constructor(props) {
|
||||
super(props, 'author-playlists');
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ import { ProfileMediaFilters } from '../components/search-filters/ProfileMediaFi
|
||||
import { ProfileMediaTags } from '../components/search-filters/ProfileMediaTags';
|
||||
import { ProfileMediaSorting } from '../components/search-filters/ProfileMediaSorting';
|
||||
import { BulkActionsModals } from '../components/BulkActionsModals';
|
||||
import { inEmbeddedApp, inSelectMediaEmbedMode } from '../utils/helpers';
|
||||
import { inEmbeddedApp, translateString } from '../utils/helpers';
|
||||
import { withBulkActions } from '../utils/hoc/withBulkActions';
|
||||
|
||||
import { Page } from './_Page';
|
||||
@@ -51,7 +51,6 @@ class ProfileSharedByMePage extends Page {
|
||||
availableTags: [],
|
||||
selectedTag: 'all',
|
||||
selectedSort: 'date_added_desc',
|
||||
selectedMedia: new Set(), // For select media mode
|
||||
};
|
||||
|
||||
this.authorDataLoad = this.authorDataLoad.bind(this);
|
||||
@@ -65,7 +64,6 @@ class ProfileSharedByMePage extends Page {
|
||||
this.onTagSelect = this.onTagSelect.bind(this);
|
||||
this.onSortSelect = this.onSortSelect.bind(this);
|
||||
this.onResponseDataLoaded = this.onResponseDataLoaded.bind(this);
|
||||
this.handleMediaSelection = this.handleMediaSelection.bind(this);
|
||||
|
||||
ProfilePageStore.on('load-author-data', this.authorDataLoad);
|
||||
}
|
||||
@@ -345,55 +343,10 @@ class ProfileSharedByMePage extends Page {
|
||||
}
|
||||
}
|
||||
|
||||
handleMediaSelection(mediaId, isSelected) {
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
this.setState((prevState) => {
|
||||
const newSelectedMedia = new Set();
|
||||
|
||||
// In select media mode, only allow single selection
|
||||
if (isSelectMediaMode) {
|
||||
if (isSelected) {
|
||||
newSelectedMedia.add(mediaId);
|
||||
console.log('Selected media item:', mediaId);
|
||||
|
||||
// Send postMessage to parent window (Moodle TinyMCE plugin)
|
||||
if (window.parent !== window) {
|
||||
// Construct the embed URL
|
||||
const baseUrl = window.location.origin;
|
||||
const embedUrl = `${baseUrl}/embed?m=${mediaId}`;
|
||||
|
||||
// Send message in the format expected by the Moodle plugin
|
||||
window.parent.postMessage({
|
||||
type: 'videoSelected',
|
||||
embedUrl: embedUrl,
|
||||
videoId: mediaId
|
||||
}, '*');
|
||||
|
||||
console.log('Sent postMessage to parent:', { embedUrl, videoId: mediaId });
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Normal mode: should not reach here as bulk actions handle this
|
||||
newSelectedMedia.clear();
|
||||
prevState.selectedMedia.forEach((id) => newSelectedMedia.add(id));
|
||||
|
||||
if (isSelected) {
|
||||
newSelectedMedia.add(mediaId);
|
||||
} else {
|
||||
newSelectedMedia.delete(mediaId);
|
||||
}
|
||||
}
|
||||
|
||||
return { selectedMedia: newSelectedMedia };
|
||||
});
|
||||
}
|
||||
|
||||
pageContent() {
|
||||
const authorData = ProfilePageStore.get('author-data');
|
||||
|
||||
const isMediaAuthor = authorData && authorData.username === MemberContext._currentValue.username;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
// Check if any filters are active
|
||||
const hasActiveFilters =
|
||||
@@ -422,12 +375,11 @@ class ProfileSharedByMePage extends Page {
|
||||
this.state.author ? (
|
||||
<ProfilePagesContent key="ProfilePagesContent">
|
||||
<MediaListWrapper
|
||||
title={inEmbeddedApp() ? undefined : this.state.title}
|
||||
title={this.state.title}
|
||||
className="items-list-ver"
|
||||
style={inEmbeddedApp() ? { marginTop: '24px' } : undefined}
|
||||
showBulkActions={!isSelectMediaMode && isMediaAuthor}
|
||||
selectedCount={isSelectMediaMode ? this.state.selectedMedia.size : this.props.bulkActions.selectedMedia.size}
|
||||
totalCount={isSelectMediaMode ? 0 : this.props.bulkActions.availableMediaIds.length}
|
||||
showBulkActions={isMediaAuthor}
|
||||
selectedCount={this.props.bulkActions.selectedMedia.size}
|
||||
totalCount={this.props.bulkActions.availableMediaIds.length}
|
||||
onBulkAction={this.props.bulkActions.handleBulkAction}
|
||||
onSelectAll={this.props.bulkActions.handleSelectAll}
|
||||
onDeselectAll={this.props.bulkActions.handleDeselectAll}
|
||||
@@ -444,19 +396,19 @@ class ProfileSharedByMePage extends Page {
|
||||
/>
|
||||
<ProfileMediaSorting hidden={this.state.hiddenSorting} onSortSelect={this.onSortSelect} />
|
||||
<LazyLoadItemListAsync
|
||||
key={isSelectMediaMode ? this.state.requestUrl : `${this.state.requestUrl}-${this.props.bulkActions.listKey}`}
|
||||
key={`${this.state.requestUrl}-${this.props.bulkActions.listKey}`}
|
||||
requestUrl={this.state.requestUrl}
|
||||
hideAuthor={true}
|
||||
itemsCountCallback={this.state.requestUrl ? this.getCountFunc : null}
|
||||
hideViews={!PageStore.get('config-media-item').displayViews}
|
||||
hideDate={!PageStore.get('config-media-item').displayPublishDate}
|
||||
canEdit={!isSelectMediaMode && isMediaAuthor}
|
||||
canEdit={isMediaAuthor}
|
||||
onResponseDataLoaded={this.onResponseDataLoaded}
|
||||
showSelection={isMediaAuthor || isSelectMediaMode}
|
||||
hasAnySelection={isSelectMediaMode ? this.state.selectedMedia.size > 0 : this.props.bulkActions.selectedMedia.size > 0}
|
||||
selectedMedia={isSelectMediaMode ? this.state.selectedMedia : this.props.bulkActions.selectedMedia}
|
||||
onMediaSelection={isSelectMediaMode ? this.handleMediaSelection : this.props.bulkActions.handleMediaSelection}
|
||||
onItemsUpdate={!isSelectMediaMode ? this.props.bulkActions.handleItemsUpdate : undefined}
|
||||
showSelection={isMediaAuthor}
|
||||
hasAnySelection={this.props.bulkActions.selectedMedia.size > 0}
|
||||
selectedMedia={this.props.bulkActions.selectedMedia}
|
||||
onMediaSelection={this.props.bulkActions.handleMediaSelection}
|
||||
onItemsUpdate={this.props.bulkActions.handleItemsUpdate}
|
||||
/>
|
||||
{isMediaAuthor && 0 === this.state.channelMediaCount && !this.state.query ? (
|
||||
<EmptySharedByMe name={this.state.author.name} />
|
||||
@@ -464,7 +416,7 @@ class ProfileSharedByMePage extends Page {
|
||||
</MediaListWrapper>
|
||||
</ProfilePagesContent>
|
||||
) : null,
|
||||
this.state.author && isMediaAuthor && !isSelectMediaMode ? (
|
||||
this.state.author && isMediaAuthor ? (
|
||||
<BulkActionsModals
|
||||
key="BulkActionsModals"
|
||||
{...this.props.bulkActions}
|
||||
|
||||
@@ -10,7 +10,7 @@ import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListA
|
||||
import { ProfileMediaFilters } from '../components/search-filters/ProfileMediaFilters';
|
||||
import { ProfileMediaTags } from '../components/search-filters/ProfileMediaTags';
|
||||
import { ProfileMediaSorting } from '../components/search-filters/ProfileMediaSorting';
|
||||
import { inEmbeddedApp, inSelectMediaEmbedMode } from '../utils/helpers';
|
||||
import { inEmbeddedApp, translateString } from '../utils/helpers';
|
||||
|
||||
import { Page } from './_Page';
|
||||
|
||||
@@ -49,7 +49,6 @@ export class ProfileSharedWithMePage extends Page {
|
||||
availableTags: [],
|
||||
selectedTag: 'all',
|
||||
selectedSort: 'date_added_desc',
|
||||
selectedMedia: new Set(), // For select media mode
|
||||
};
|
||||
|
||||
this.authorDataLoad = this.authorDataLoad.bind(this);
|
||||
@@ -63,7 +62,6 @@ export class ProfileSharedWithMePage extends Page {
|
||||
this.onTagSelect = this.onTagSelect.bind(this);
|
||||
this.onSortSelect = this.onSortSelect.bind(this);
|
||||
this.onResponseDataLoaded = this.onResponseDataLoaded.bind(this);
|
||||
this.handleMediaSelection = this.handleMediaSelection.bind(this);
|
||||
|
||||
ProfilePageStore.on('load-author-data', this.authorDataLoad);
|
||||
}
|
||||
@@ -343,55 +341,10 @@ export class ProfileSharedWithMePage extends Page {
|
||||
}
|
||||
}
|
||||
|
||||
handleMediaSelection(mediaId, isSelected) {
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
this.setState((prevState) => {
|
||||
const newSelectedMedia = new Set();
|
||||
|
||||
// In select media mode, only allow single selection
|
||||
if (isSelectMediaMode) {
|
||||
if (isSelected) {
|
||||
newSelectedMedia.add(mediaId);
|
||||
console.log('Selected media item:', mediaId);
|
||||
|
||||
// Send postMessage to parent window (Moodle TinyMCE plugin)
|
||||
if (window.parent !== window) {
|
||||
// Construct the embed URL
|
||||
const baseUrl = window.location.origin;
|
||||
const embedUrl = `${baseUrl}/embed?m=${mediaId}`;
|
||||
|
||||
// Send message in the format expected by the Moodle plugin
|
||||
window.parent.postMessage({
|
||||
type: 'videoSelected',
|
||||
embedUrl: embedUrl,
|
||||
videoId: mediaId
|
||||
}, '*');
|
||||
|
||||
console.log('Sent postMessage to parent:', { embedUrl, videoId: mediaId });
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Normal mode: no selection UI in this page normally
|
||||
newSelectedMedia.clear();
|
||||
prevState.selectedMedia.forEach((id) => newSelectedMedia.add(id));
|
||||
|
||||
if (isSelected) {
|
||||
newSelectedMedia.add(mediaId);
|
||||
} else {
|
||||
newSelectedMedia.delete(mediaId);
|
||||
}
|
||||
}
|
||||
|
||||
return { selectedMedia: newSelectedMedia };
|
||||
});
|
||||
}
|
||||
|
||||
pageContent() {
|
||||
const authorData = ProfilePageStore.get('author-data');
|
||||
|
||||
const isMediaAuthor = authorData && authorData.username === MemberContext._currentValue.username;
|
||||
const isSelectMediaMode = inSelectMediaEmbedMode();
|
||||
|
||||
// Check if any filters are active
|
||||
const hasActiveFilters =
|
||||
@@ -419,11 +372,7 @@ export class ProfileSharedWithMePage extends Page {
|
||||
) : null,
|
||||
this.state.author ? (
|
||||
<ProfilePagesContent key="ProfilePagesContent">
|
||||
<MediaListWrapper
|
||||
title={inEmbeddedApp() ? undefined : this.state.title}
|
||||
className="items-list-ver"
|
||||
style={inEmbeddedApp() ? { marginTop: '24px' } : undefined}
|
||||
>
|
||||
<MediaListWrapper title={this.state.title} className="items-list-ver">
|
||||
<ProfileMediaFilters
|
||||
hidden={this.state.hiddenFilters}
|
||||
tags={this.state.availableTags}
|
||||
@@ -444,10 +393,6 @@ export class ProfileSharedWithMePage extends Page {
|
||||
hideDate={!PageStore.get('config-media-item').displayPublishDate}
|
||||
canEdit={false}
|
||||
onResponseDataLoaded={this.onResponseDataLoaded}
|
||||
showSelection={isSelectMediaMode}
|
||||
hasAnySelection={this.state.selectedMedia.size > 0}
|
||||
selectedMedia={this.state.selectedMedia}
|
||||
onMediaSelection={this.handleMediaSelection}
|
||||
/>
|
||||
{isMediaAuthor && 0 === this.state.channelMediaCount && !this.state.query ? (
|
||||
<EmptySharedWithMe name={this.state.author.name} />
|
||||
|
||||
@@ -7,7 +7,7 @@ import { LazyLoadItemListAsync } from '../components/item-list/LazyLoadItemListA
|
||||
import { SearchMediaFiltersRow } from '../components/search-filters/SearchMediaFiltersRow';
|
||||
import { SearchResultsFilters } from '../components/search-filters/SearchResultsFilters';
|
||||
import { Page } from './_Page';
|
||||
import { translateString, inEmbeddedApp } from '../utils/helpers/';
|
||||
import { translateString } from '../utils/helpers/';
|
||||
|
||||
export class SearchPage extends Page {
|
||||
constructor(props) {
|
||||
@@ -115,7 +115,7 @@ export class SearchPage extends Page {
|
||||
} else {
|
||||
if (this.state.searchCategories) {
|
||||
title = null === this.state.resultsCount || 0 === this.state.resultsCount ? 'No' : this.state.resultsCount;
|
||||
title += ' ' + translateString(inEmbeddedApp() ? 'media in course' : 'media in category') + ' "' + this.state.searchCategories + '"';
|
||||
title += ' ' + translateString('media in category') + ' "' + this.state.searchCategories + '"';
|
||||
} else if (this.state.searchTags) {
|
||||
title = null === this.state.resultsCount || 0 === this.state.resultsCount ? 'No' : this.state.resultsCount;
|
||||
title += ' ' + translateString('media in tag') + ' "' + this.state.searchTags + '"';
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import React from 'react';
|
||||
import { PageStore, MediaPageStore } from '../utils/stores/';
|
||||
import { MediaPageActions } from '../utils/actions/';
|
||||
import { inEmbeddedApp } from '../utils/helpers/';
|
||||
import ViewerError from '../components/media-page/ViewerError';
|
||||
import ViewerInfo from '../components/media-page/ViewerInfo';
|
||||
import ViewerSidebar from '../components/media-page/ViewerSidebar';
|
||||
@@ -86,18 +87,22 @@ export class _MediaPage extends Page {
|
||||
{!this.state.infoAndSidebarViewType
|
||||
? [
|
||||
<ViewerInfo key="viewer-info" />,
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
playlistData={MediaPageStore.get('playlist-data')}
|
||||
/>,
|
||||
!inEmbeddedApp() && this.state.pagePlaylistLoaded ? (
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
playlistData={MediaPageStore.get('playlist-data')}
|
||||
/>
|
||||
) : null,
|
||||
]
|
||||
: [
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
playlistData={MediaPageStore.get('playlist-data')}
|
||||
/>,
|
||||
!inEmbeddedApp() && this.state.pagePlaylistLoaded ? (
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
playlistData={MediaPageStore.get('playlist-data')}
|
||||
/>
|
||||
) : null,
|
||||
<ViewerInfo key="viewer-info" />,
|
||||
]}
|
||||
</div>
|
||||
|
||||
@@ -2,6 +2,7 @@ import React from 'react';
|
||||
// FIXME: 'VideoViewerStore' is used only in case of video media, but is included in every media page code.
|
||||
import { PageStore, MediaPageStore, VideoViewerStore } from '../utils/stores/';
|
||||
import { MediaPageActions } from '../utils/actions/';
|
||||
import { inEmbeddedApp } from '../utils/helpers/';
|
||||
import ViewerInfoVideo from '../components/media-page/ViewerInfoVideo';
|
||||
import ViewerError from '../components/media-page/ViewerError';
|
||||
import ViewerSidebar from '../components/media-page/ViewerSidebar';
|
||||
@@ -103,7 +104,7 @@ export class _VideoMediaPage extends Page {
|
||||
{!this.state.wideLayout || (this.state.isVideoMedia && this.state.theaterMode)
|
||||
? [
|
||||
<ViewerInfoVideo key="viewer-info" />,
|
||||
this.state.pagePlaylistLoaded ? (
|
||||
!inEmbeddedApp() && this.state.pagePlaylistLoaded ? (
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
@@ -112,7 +113,7 @@ export class _VideoMediaPage extends Page {
|
||||
) : null,
|
||||
]
|
||||
: [
|
||||
this.state.pagePlaylistLoaded ? (
|
||||
!inEmbeddedApp() && this.state.pagePlaylistLoaded ? (
|
||||
<ViewerSidebar
|
||||
key="viewer-sidebar"
|
||||
mediaId={MediaPageStore.get('media-id')}
|
||||
|
||||
@@ -45,14 +45,12 @@ export const LayoutProvider = ({ children }) => {
|
||||
const site = useContext(SiteContext);
|
||||
const cache = new BrowserCache('MediaCMS[' + site.id + '][layout]', 86400);
|
||||
|
||||
const isMediaPage = useMemo(() => PageStore.get('current-page') === 'media' || window.MediaCMS?.mediaId !== undefined, []);
|
||||
const isMediaPage = useMemo(() => PageStore.get('current-page') === 'media', []);
|
||||
const isEmbeddedApp = useMemo(() => inEmbeddedApp(), []);
|
||||
|
||||
const enabledSidebar = Boolean(document.getElementById('app-sidebar') || document.querySelector('.page-sidebar'));
|
||||
|
||||
const [visibleSidebar, setVisibleSidebar] = useState(
|
||||
isMediaPage || isEmbeddedApp ? false : cache.get('visible-sidebar')
|
||||
);
|
||||
const [visibleSidebar, setVisibleSidebar] = useState(cache.get('visible-sidebar'));
|
||||
const [visibleMobileSearch, setVisibleMobileSearch] = useState(false);
|
||||
|
||||
const toggleMobileSearch = () => {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user