Merge branch 'master' into 0.7.0
commit
77a9c7c195
@ -0,0 +1,122 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
rem %1 action
|
||||||
|
rem %2 subaction
|
||||||
|
|
||||||
|
setlocal enabledelayedexpansion
|
||||||
|
2>nul call :CASE_%1
|
||||||
|
if ERRORLEVEL 1 call :DEFAULT_CASE
|
||||||
|
|
||||||
|
exit /B
|
||||||
|
|
||||||
|
:CASE_start
|
||||||
|
echo Starting NodeBB
|
||||||
|
echo "nodebb.bat stop" to stop the NodeBB server
|
||||||
|
echo "nodebb.bat log" to view server output
|
||||||
|
|
||||||
|
rem Start the loader daemon
|
||||||
|
node loader %*
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_stop
|
||||||
|
call :pidexists
|
||||||
|
if %_result%==0 (
|
||||||
|
echo NodeBB is already stopped.
|
||||||
|
) else (
|
||||||
|
echo Stopping NodeBB. Goodbye!
|
||||||
|
|
||||||
|
rem Doing this forcefully is probably not the best method
|
||||||
|
taskkill /PID !_pid! /f>nul
|
||||||
|
)
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_restart
|
||||||
|
echo Unsupported
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_reload
|
||||||
|
echo Unsupported
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_status
|
||||||
|
call :pidexists
|
||||||
|
if %_result%==0 (
|
||||||
|
echo NodeBB is not running
|
||||||
|
echo "nodebb.bat start" to launch the NodeBB server
|
||||||
|
) else (
|
||||||
|
echo NodeBB Running ^(pid !_pid!^)
|
||||||
|
echo "nodebb.bat stop" to stop the NodeBB server
|
||||||
|
echo "nodebb.bat log" to view server output
|
||||||
|
echo "nodebb.bat restart" to restart NodeBB
|
||||||
|
)
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_log
|
||||||
|
cls
|
||||||
|
type .\logs\output.log
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_upgrade
|
||||||
|
call npm install
|
||||||
|
call npm i nodebb-theme-vanilla nodebb-theme-lavender nodebb-widget-essentials
|
||||||
|
node app --upgrade
|
||||||
|
copy /b package.json +,,>nul
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_setup
|
||||||
|
node app --setup %*
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_reset
|
||||||
|
node app --reset --%2
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_dev
|
||||||
|
echo Launching NodeBB in "development" mode.
|
||||||
|
echo To run the production build of NodeBB, please use "forever".
|
||||||
|
echo More Information: https://docs.nodebb.org/en/latest/running/index.html
|
||||||
|
set NODE_ENV=development
|
||||||
|
node loader --no-daemon %*
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:CASE_watch
|
||||||
|
echo Not supported
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:DEFAULT_CASE
|
||||||
|
echo Welcome to NodeBB
|
||||||
|
echo Usage: nodebb.bat ^{start^|stop^|reload^|restart^|log^|setup^|reset^|upgrade^|dev^|watch^}
|
||||||
|
|
||||||
|
goto END_CASE
|
||||||
|
|
||||||
|
:END_CASE
|
||||||
|
endlocal
|
||||||
|
VER > NUL
|
||||||
|
goto :EOF
|
||||||
|
|
||||||
|
:pidexists
|
||||||
|
if exist %~dp0pidfile (
|
||||||
|
set /p _pid=<pidfile
|
||||||
|
|
||||||
|
for /f "usebackq" %%Z in (`tasklist /nh /fi "PID eq !_pid!"`) do (
|
||||||
|
if %%Z==INFO: (
|
||||||
|
del pidfile
|
||||||
|
set _result=0
|
||||||
|
) else (
|
||||||
|
set _result=1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
set _result=0
|
||||||
|
)
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "المجموعات",
|
"groups": "المجموعات",
|
||||||
"view_group": "معاينة المجموعة",
|
"view_group": "معاينة المجموعة",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "تفاصيل المجموعة",
|
"details.title": "تفاصيل المجموعة",
|
||||||
"details.members": "لائحة الأعضاء",
|
"details.members": "لائحة الأعضاء",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "أعضاء هذه المجموعة لم يضيفوا أية مشاركة",
|
"details.has_no_posts": "أعضاء هذه المجموعة لم يضيفوا أية مشاركة",
|
||||||
"details.latest_posts": "آخر المشاركات"
|
"details.latest_posts": "آخر المشاركات",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 نتيجة (نتائج) موافقة ل \"%2\", (%3 ثواني)",
|
"results_matching": "%1 نتيجة (نتائج) موافقة ل \"%2\", (%3 ثواني)",
|
||||||
"no-matches": "لم يتم إيجاد أية مشاركات"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "গ্রুপসমূহ",
|
"groups": "গ্রুপসমূহ",
|
||||||
"view_group": "গ্রুপ দেখুন",
|
"view_group": "গ্রুপ দেখুন",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "গ্রুপের বিস্তারিত",
|
"details.title": "গ্রুপের বিস্তারিত",
|
||||||
"details.members": "সদস্য তালিকা",
|
"details.members": "সদস্য তালিকা",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "এই গ্রুপের সদস্যরা এখনো কোন পোষ্ট করেন নি",
|
"details.has_no_posts": "এই গ্রুপের সদস্যরা এখনো কোন পোষ্ট করেন নি",
|
||||||
"details.latest_posts": "সর্বশেষ পোষ্টসমূহ"
|
"details.latest_posts": "সর্বশেষ পোষ্টসমূহ",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "\"%2\" এর সাথে মিলিয়ে %1 ফলাফল পাওয়া গেছে, ( %3 seconds সময় লেগেছে )",
|
"results_matching": "\"%2\" এর সাথে মিলিয়ে %1 ফলাফল পাওয়া গেছে, ( %3 seconds সময় লেগেছে )",
|
||||||
"no-matches": "কোন পোষ্ট খুঁজে পাওয়া যায় নি"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Skupiny",
|
"groups": "Skupiny",
|
||||||
"view_group": "Prohlédnout skupinu",
|
"view_group": "Prohlédnout skupinu",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "podrobnosti skupiny",
|
"details.title": "podrobnosti skupiny",
|
||||||
"details.members": "Seznam členů",
|
"details.members": "Seznam členů",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "Členové této skupiny dosud neodeslali ani jeden příspěvek.",
|
"details.has_no_posts": "Členové této skupiny dosud neodeslali ani jeden příspěvek.",
|
||||||
"details.latest_posts": "Nejnovější příspěvky"
|
"details.latest_posts": "Nejnovější příspěvky",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
||||||
"no-matches": "No posts found"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Gruppen",
|
"groups": "Gruppen",
|
||||||
"view_group": "Gruppe betrachten",
|
"view_group": "Gruppe betrachten",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Gruppendetails",
|
"details.title": "Gruppendetails",
|
||||||
"details.members": "Mitgliederliste",
|
"details.members": "Mitgliederliste",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "Die Mitglieder dieser Gruppe haben keine Beiträge verfasst.",
|
"details.has_no_posts": "Die Mitglieder dieser Gruppe haben keine Beiträge verfasst.",
|
||||||
"details.latest_posts": "Aktuelle Beiträge"
|
"details.latest_posts": "Aktuelle Beiträge",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 Ergebniss(e) stimmen mit \"%2\" überein, (%3 Sekunden)",
|
"results_matching": "%1 Ergebniss(e) stimmen mit \"%2\" überein, (%3 Sekunden)",
|
||||||
"no-matches": "Keine Beiträge gefunden"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
"view_group": "View Group",
|
"view_group": "View Group",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Group Details",
|
"details.title": "Group Details",
|
||||||
"details.members": "Member List",
|
"details.members": "Member List",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "This group's members have not made any posts.",
|
"details.has_no_posts": "This group's members have not made any posts.",
|
||||||
"details.latest_posts": "Latest Posts"
|
"details.latest_posts": "Latest Posts",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
||||||
"no-matches": "No posts found"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
"view_group": "View Group",
|
"view_group": "View Group",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Group Details",
|
"details.title": "Group Details",
|
||||||
"details.members": "Member List",
|
"details.members": "Member List",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "This group's members have not made any posts.",
|
"details.has_no_posts": "This group's members have not made any posts.",
|
||||||
"details.latest_posts": "Latest Posts"
|
"details.latest_posts": "Latest Posts",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
||||||
"no-matches": "No posts found"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Grupos",
|
"groups": "Grupos",
|
||||||
"view_group": "Ver Grupo",
|
"view_group": "Ver Grupo",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Detalles de Grupo",
|
"details.title": "Detalles de Grupo",
|
||||||
"details.members": "Lista de Miembros",
|
"details.members": "Lista de Miembros",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "Los miembros de este grupo no han hecho ninguna publicación.",
|
"details.has_no_posts": "Los miembros de este grupo no han hecho ninguna publicación.",
|
||||||
"details.latest_posts": "Últimas Publicaciones"
|
"details.latest_posts": "Últimas Publicaciones",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
"home": "Inicio",
|
"home": "Inicio",
|
||||||
"unread": "Temas No Leídos",
|
"unread": "Temas no leídos",
|
||||||
"popular": "Temas Populares",
|
"popular": "Temas populares",
|
||||||
"recent": "Temas Recientes",
|
"recent": "Temas recientes",
|
||||||
"users": "Usuarios Registrado",
|
"users": "Usuarios registrados",
|
||||||
"notifications": "Notificaciones",
|
"notifications": "Notificaciones",
|
||||||
"tags": "Temas etiquetados bajo \"%1\"",
|
"tags": "Temas etiquetados bajo \"%1\"",
|
||||||
"user.edit": "Editando \"%1\"",
|
"user.edit": "Editando \"%1\"",
|
||||||
"user.following": "Gente que sigue %1 ",
|
"user.following": "Gente que sigue %1 ",
|
||||||
"user.followers": "Seguidores de %1",
|
"user.followers": "Seguidores de %1",
|
||||||
"user.posts": "Posteos de %1",
|
"user.posts": "Mensajes de %1",
|
||||||
"user.topics": "Temas creados por %1",
|
"user.topics": "Temas creados por %1",
|
||||||
"user.favourites": "Publicaciones favoritas de %1 ",
|
"user.favourites": "Publicaciones favoritas de %1 ",
|
||||||
"user.settings": "Preferencias del Usuario",
|
"user.settings": "Preferencias de usuario",
|
||||||
"maintenance.text": "%1 está en mantenimiento actualmente. Por favor vuelva en otro momento.",
|
"maintenance.text": "%1 está en mantenimiento actualmente. Por favor vuelva en otro momento.",
|
||||||
"maintenance.messageIntro": "Adicionalmente, el administrador ha dejado este mensaje:"
|
"maintenance.messageIntro": "Adicionalmente, la administración ha dejado este mensaje:"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 resuldado(s) coinciden con \"%2\". (%3 segundos)",
|
"results_matching": "%1 resuldado(s) coinciden con \"%2\". (%3 segundos)",
|
||||||
"no-matches": "No se encontraron publicaciones"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"no_tag_topics": "No hay temas con esta etiqueta.",
|
"no_tag_topics": "No hay temas con esta etiqueta.",
|
||||||
"tags": "Etiquetas",
|
"tags": "Etiquetas",
|
||||||
"enter_tags_here": "Introduce las etiquetas aquí. Pulsa intro desde de cada una.",
|
"enter_tags_here": "Introduce las etiquetas aquí. Pulsa Intro después de introducir cada una.",
|
||||||
"enter_tags_here_short": "Introduzca etiquetas...",
|
"enter_tags_here_short": "Introduzca las etiquetas...",
|
||||||
"no_tags": "Aún no hay etiquetas."
|
"no_tags": "Aún no hay etiquetas."
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
"view_group": "View Group",
|
"view_group": "View Group",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Group Details",
|
"details.title": "Group Details",
|
||||||
"details.members": "Member List",
|
"details.members": "Member List",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "This group's members have not made any posts.",
|
"details.has_no_posts": "This group's members have not made any posts.",
|
||||||
"details.latest_posts": "Latest Posts"
|
"details.latest_posts": "Latest Posts",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 tulemus(t) mis vastavad otsingule \"%2\", (%3 sekundit)",
|
"results_matching": "%1 tulemus(t) mis vastavad otsingule \"%2\", (%3 sekundit)",
|
||||||
"no-matches": "Postitusi ei leitud"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
"view_group": "View Group",
|
"view_group": "View Group",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Group Details",
|
"details.title": "Group Details",
|
||||||
"details.members": "Member List",
|
"details.members": "Member List",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "This group's members have not made any posts.",
|
"details.has_no_posts": "This group's members have not made any posts.",
|
||||||
"details.latest_posts": "Latest Posts"
|
"details.latest_posts": "Latest Posts",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
"results_matching": "%1 result(s) matching \"%2\", (%3 seconds)",
|
||||||
"no-matches": "No posts found"
|
"no-matches": "No matches found",
|
||||||
|
"in": "In",
|
||||||
|
"by": "By",
|
||||||
|
"posted-by": "Posted by"
|
||||||
}
|
}
|
@ -1,8 +1,21 @@
|
|||||||
{
|
{
|
||||||
"groups": "Groups",
|
"groups": "Groups",
|
||||||
"view_group": "View Group",
|
"view_group": "View Group",
|
||||||
|
"owner": "Group Owner",
|
||||||
|
"new_group": "Create New Group",
|
||||||
|
"no_groups_found": "There are no groups to see",
|
||||||
|
"cover-instructions": "Drag and Drop a photo, drag to position, and hit <strong>Save</strong>",
|
||||||
|
"cover-change": "Change",
|
||||||
|
"cover-save": "Save",
|
||||||
|
"cover-saving": "Saving",
|
||||||
"details.title": "Group Details",
|
"details.title": "Group Details",
|
||||||
"details.members": "Member List",
|
"details.members": "Member List",
|
||||||
|
"details.pending": "Pending Members",
|
||||||
"details.has_no_posts": "This group's members have not made any posts.",
|
"details.has_no_posts": "This group's members have not made any posts.",
|
||||||
"details.latest_posts": "Latest Posts"
|
"details.latest_posts": "Latest Posts",
|
||||||
|
"details.private": "Private Group",
|
||||||
|
"details.public": "Public Group",
|
||||||
|
"details.owner_options": "Group Administration",
|
||||||
|
"event.updated": "Group details have been updated",
|
||||||
|
"event.deleted": "The group \"%1\" has been deleted"
|
||||||
}
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue