summaryrefslogtreecommitdiffstats
path: root/core/l10n/es_UY.js
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-10-221-1/+2
* [tx-robot] updated from transifexNextcloud bot2022-09-201-2/+4
* [tx-robot] updated from transifexNextcloud bot2022-09-071-1/+1
* [tx-robot] updated from transifexNextcloud bot2022-09-031-1/+1
* [tx-robot] updated from transifexNextcloud bot2022-09-011-2/+2
* [tx-robot] updated from transifexNextcloud bot2022-08-311-1/+1
* [tx-robot] updated from transifexNextcloud bot2022-08-051-1/+2
* [tx-robot] updated from transifexNextcloud bot2022-07-221-0/+1
* [tx-robot] updated from transifexNextcloud bot2022-06-021-2/+2
* [tx-robot] updated from transifexNextcloud bot2022-05-241-4/+4
* [tx-robot] updated from transifexNextcloud bot2022-05-021-18/+1
* [tx-robot] updated from transifexNextcloud bot2022-04-241-0/+6
* [tx-robot] updated from transifexNextcloud bot2022-02-231-5/+1
* [tx-robot] updated from transifexNextcloud bot2022-01-181-3/+3
* [tx-robot] updated from transifexNextcloud bot2021-09-231-2/+2
* [tx-robot] updated from transifexNextcloud bot2021-09-111-2/+2
* [tx-robot] updated from transifexNextcloud bot2021-07-151-6/+1
* [tx-robot] updated from transifexNextcloud bot2021-06-031-3/+3
* [tx-robot] updated from transifexNextcloud bot2021-05-211-1/+1
* [tx-robot] updated from transifexNextcloud bot2021-04-211-1/+1
* [tx-robot] updated from transifexNextcloud bot2021-03-261-4/+4
* [tx-robot] updated from transifexNextcloud bot2021-03-231-2/+2
* [tx-robot] updated from transifexNextcloud bot2021-03-021-7/+7
* [tx-robot] updated from transifexNextcloud bot2021-02-021-3/+0
* [tx-robot] updated from transifexNextcloud bot2021-01-231-1/+1
* [tx-robot] updated from transifexNextcloud bot2020-10-131-57/+0
* [tx-robot] updated from transifexNextcloud bot2020-09-181-1/+1
* [tx-robot] updated from transifexNextcloud bot2020-08-061-3/+3
* [tx-robot] updated from transifexNextcloud bot2020-08-041-2/+2
* [tx-robot] updated from transifexNextcloud bot2020-05-301-7/+7
* [tx-robot] updated from transifexv19.0.0RC2Nextcloud bot2020-05-141-3/+3
* [tx-robot] updated from transifexNextcloud bot2020-05-091-6/+0
* [tx-robot] updated from transifexNextcloud bot2020-04-031-2/+3
* [tx-robot] updated from transifexNextcloud bot2020-03-231-1/+1
* [tx-robot] updated from transifexNextcloud bot2020-03-131-5/+5
* [tx-robot] updated from transifexNextcloud bot2020-03-111-1/+1
* [tx-robot] updated from transifexNextcloud bot2020-02-261-0/+3
* [tx-robot] updated from transifexNextcloud bot2020-02-071-7/+2
* [tx-robot] updated from transifexNextcloud bot2020-02-061-1/+1
* [tx-robot] updated from transifexNextcloud bot2020-01-071-2/+2
* [tx-robot] updated from transifexNextcloud bot2019-12-221-0/+21
* [tx-robot] updated from transifexNextcloud bot2019-12-181-1/+1
* [tx-robot] updated from transifexNextcloud bot2019-11-071-55/+55
* [tx-robot] updated from transifexNextcloud bot2019-09-171-16/+1
* [tx-robot] updated from transifexNextcloud bot2019-08-011-3/+3
* [tx-robot] updated from transifexNextcloud bot2019-07-301-3/+3
* [tx-robot] updated from transifexNextcloud bot2019-06-141-83/+83
* [tx-robot] updated from transifexNextcloud bot2019-05-151-4/+4
* [tx-robot] updated from transifexNextcloud bot2019-05-111-1/+1
* [tx-robot] updated from transifexNextcloud bot2019-05-081-6/+6
s="sd"> * sets the ID of the comment and returns itself * * It is only allowed to set the ID only, if the current id is an empty * string (which means it is not stored in a database, storage or whatever * the concrete implementation does), or vice versa. Changing a given ID is * not permitted and must result in an IllegalIDChangeException. * * @param string $id * @return IComment * @throws IllegalIDChangeException * @since 9.0.0 */ public function setId($id); /** * returns the parent ID of the comment * * @return string * @since 9.0.0 */ public function getParentId(); /** * sets the parent ID and returns itself * @param string $parentId * @return IComment * @since 9.0.0 */ public function setParentId($parentId); /** * returns the topmost parent ID of the comment * * @return string * @since 9.0.0 */ public function getTopmostParentId(); /** * sets the topmost parent ID and returns itself * * @param string $id * @return IComment * @since 9.0.0 */ public function setTopmostParentId($id); /** * returns the number of children * * @return int * @since 9.0.0 */ public function getChildrenCount(); /** * sets the number of children * * @param int $count * @return IComment * @since 9.0.0 */ public function setChildrenCount($count); /** * returns the message of the comment * * @return string * @since 9.0.0 */ public function getMessage(); /** * sets the message of the comment and returns itself * * When the given message length exceeds MAX_MESSAGE_LENGTH an * MessageTooLongException shall be thrown. * * @param string $message * @param int $maxLength * @return IComment * @throws MessageTooLongException * @since 9.0.0 - $maxLength added in 16.0.2 */ public function setMessage($message, $maxLength = self::MAX_MESSAGE_LENGTH); /** * returns an array containing mentions that are included in the comment * * @return array each mention provides a 'type' and an 'id', see example below * @since 11.0.0 * * The return array looks like: * [ * [ * 'type' => 'user', * 'id' => 'citizen4' * ], * [ * 'type' => 'group', * 'id' => 'media' * ], * … * ] * */ public function getMentions(); /** * returns the verb of the comment * * @return string * @since 9.0.0 */ public function getVerb(); /** * sets the verb of the comment, e.g. 'comment' or 'like' * * @param string $verb * @return IComment * @since 9.0.0 */ public function setVerb($verb); /** * returns the actor type * * @return string * @since 9.0.0 */ public function getActorType(); /** * returns the actor ID * * @return string * @since 9.0.0 */ public function getActorId(); /** * sets (overwrites) the actor type and id * * @param string $actorType e.g. 'users' * @param string $actorId e.g. 'zombie234' * @return IComment * @since 9.0.0 */ public function setActor($actorType, $actorId); /** * returns the creation date of the comment. * * If not explicitly set, it shall default to the time of initialization. * * @return \DateTime * @since 9.0.0 */ public function getCreationDateTime(); /** * sets the creation date of the comment and returns itself * * @param \DateTime $dateTime * @return IComment * @since 9.0.0 */ public function setCreationDateTime(\DateTime $dateTime); /** * returns the date of the most recent child * * @return \DateTime * @since 9.0.0 */ public function getLatestChildDateTime(); /** * sets the date of the most recent child * * @param \DateTime|null $dateTime * @return IComment * @since 9.0.0 */ public function setLatestChildDateTime(?\DateTime $dateTime = null); /** * returns the object type the comment is attached to * * @return string * @since 9.0.0 */ public function getObjectType(); /** * returns the object id the comment is attached to * * @return string * @since 9.0.0 */ public function getObjectId(); /** * sets (overwrites) the object of the comment * * @param string $objectType e.g. 'files' * @param string $objectId e.g. '16435' * @return IComment * @since 9.0.0 */ public function setObject($objectType, $objectId); /** * returns the reference id of the comment * * @return string|null * @since 19.0.0 */ public function getReferenceId(): ?string; /** * sets (overwrites) the reference id of the comment * * @param string|null $referenceId e.g. sha256 hash sum * @return IComment * @since 19.0.0 */ public function setReferenceId(?string $referenceId): IComment; /** * Returns the metadata of the comment * * @return array|null * @since 29.0.0 */ public function getMetaData(): ?array; /** * Sets (overwrites) the metadata of the comment * Data as a json encoded array * * @param array|null $metaData * @return IComment * @throws \JsonException When the metadata can not be converted to a json encoded string * @since 29.0.0 */ public function setMetaData(?array $metaData): IComment; /** * Returns the reactions array if exists * * The keys is the emoji of reaction and the value is the total. * * @return array<string, integer> e.g. ["👍":1] * @since 24.0.0 */ public function getReactions(): array; /** * Set summarized array of reactions by reaction type * * The keys is the emoji of reaction and the value is the total. * * @param array<string, integer>|null $reactions e.g. ["👍":1] * @return IComment * @since 24.0.0 */ public function setReactions(?array $reactions): IComment; /** * Set message expire date * * @param \DateTime|null $dateTime * @return IComment * @since 25.0.0 */ public function setExpireDate(?\DateTime $dateTime): IComment; /** * Get message expire date * * @return ?\DateTime * @since 25.0.0 */ public function getExpireDate(): ?\DateTime; }