mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-26 19:21:43 +00:00
[SIS-3] adding meetup implementation
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>dev.sheldan.sissi.templates.translations</groupId>
|
||||
<artifactId>module-translations</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>meetup-translations</artifactId>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<finalName>meetup-translations-${project.version}</finalName>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/assembly.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,15 @@
|
||||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
||||
<id>zip</id>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<outputDirectory>.</outputDirectory>
|
||||
<directory>${project.basedir}/src/main/resources</directory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
@@ -0,0 +1 @@
|
||||
Cancel
|
||||
@@ -0,0 +1 @@
|
||||
OK
|
||||
@@ -0,0 +1 @@
|
||||
Creates a meetup
|
||||
@@ -0,0 +1,3 @@
|
||||
Command used to schedule a meetup.
|
||||
This creates a message which people can register (yes/no/maybe) themselves for a meetup.
|
||||
People will receive a notification at certain time periods before the meetup.
|
||||
@@ -0,0 +1 @@
|
||||
What the meetup should be.
|
||||
@@ -0,0 +1 @@
|
||||
Time of the meetup (https://www.unixtimestamp.com/)
|
||||
@@ -0,0 +1 @@
|
||||
Short description of the meetup
|
||||
@@ -0,0 +1 @@
|
||||
Lists all future meetups
|
||||
@@ -0,0 +1 @@
|
||||
This command can be used to list all future meetups and get information about them.
|
||||
@@ -0,0 +1,3 @@
|
||||
Time: ${time} ${timeRelative}
|
||||
Link: [here](${link})
|
||||
Meetup Topic: `${topic}`
|
||||
@@ -0,0 +1 @@
|
||||
No meetups found.
|
||||
@@ -0,0 +1 @@
|
||||
Meetup
|
||||
@@ -0,0 +1 @@
|
||||
Meetup is in the past. Not possible.
|
||||
@@ -0,0 +1 @@
|
||||
Meetup not found.
|
||||
@@ -0,0 +1 @@
|
||||
Meetup with topic ${topicText} at ${time} has been cancelled.
|
||||
@@ -0,0 +1,6 @@
|
||||
Time: ${time} ${timeRelative}
|
||||
<#if descriptionText?hasContent>Description: ${descriptionText}</#if>
|
||||
|
||||
Participants: ${participantsText}
|
||||
Maybe: ${maybeParticipantsText}
|
||||
Declined: ${declinedParticipantsText}
|
||||
@@ -0,0 +1 @@
|
||||
Cancel
|
||||
@@ -0,0 +1 @@
|
||||
Maybe
|
||||
@@ -0,0 +1 @@
|
||||
No
|
||||
@@ -0,0 +1 @@
|
||||
Nobody.
|
||||
@@ -0,0 +1 @@
|
||||
Yes
|
||||
@@ -0,0 +1 @@
|
||||
Meetup with topic ${topicText} is at ${time}.
|
||||
@@ -11,6 +11,7 @@
|
||||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>quote-translations</module>
|
||||
<module>meetup-translations</module>
|
||||
</modules>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user