Files
alfresco-community-repo/config/alfresco/messages/webclient_it.properties
Dave Ward d896c81a8b Merged V3.4-TEAM to HEAD
24882: Branch for Team
   24883: Version Edition label
   24906: Partial implementation of ALF-6566. Replace gears image...
     This check-in adds support for the feature as described in JIRA. However we do not yet have
     the icon graphics files. I have therefore used some temporary icons in order to flush out
     implementation issues and to enable browser-based testing.
     A future check-in will add the correct placeholder icons and if they follow the naming
     convention, no change in code should be necessary.
   
     Also added and modified some test cases.
   24909: ALF-6606: Configurable sorting for Share Document Library. Also change Show/Hide Folder button to icon. (Placeholder icons)
   24914: ALF-6564: Initial cut of JMXFormProcessor, will show all attributes of a given MBean and has the ability to persist an attribute value.
   24916: Initial Alfresco Team project structure and build targets
   24917: First tranche of thumbnail icons for ALF-6566. Replace gears icon.
     Have added icons for some basic mime types and removed some temporary icons.
     I had to do a clean repo build to flush out the temporary docx and jpeg icons.
   24919: svn ignore patterns
   24922: Missed files for team build targets
   24932: Add a simple AVM to Zip exporter service, initially for use by the site exporter
   24935: Start on a java backed webscript to export a site, including all the details (ALF-6567)
   24945: Removed two unnecessary TODOs from the RatingService code.
   24949: Improved documentation for RatingService webscripts.
   Added sample JSON responses for two webscripts.
   24956: Implementation of ALF-6792. RatingSchemes should allow self-rating.
     Formerly, the cm:creator of a node could never apply a rating to it. An unchecked RatingServiceException would be thrown if they attempted to do so.
     With this check-in ratingScheme beans have a new property: selfRatingAllowed. The exception will now only be thrown if a cm:creator attempts to rate their own content in a scheme where this property is false.
     The property is true by default and in particular, is true for "likesRatingScheme".
   24958: ALF-6599: First pass DND file upload - FireFox4/Chrome support for single/multifile DND upload with basic progress
   24961: Added additional data to the response coming from rating.post.
   I have added averageRating, ratingsTotal and ratingsCount to that response.
   24963: ALF-6625: Balloon Popup Framework. Initial checking. More work maybe required when we start using it, or when designs are complete.
   24964: ALF-6598 "Configure Site page refactor"
   - page.lib.js - Freemarker lib to sort out used pages and which links and labels to use
   - Drag n drop
     * now supports horisontal lists
     * improved tabfocus and keynavigations
     * callbacks can be attached on dnd events: delete-clicks, enter-clicks, element-moved, element-duplicated
   - Alfresco.util.isVisible - Checks if the element and all its parents are visible and displayed in the ui.
   - Alfresco.util.PopupManager.getUserInput now accepts a "input" parameter that can be set to "text" ("textarea" is default)
   - Automatic click listeners can be defined as: 
     <a href="#onRenameClick" class="${el}" rel="${page.pageId?js_string}">${msg("link.rename")}</a>
     which will call:
     onRenameClick: function(pageId, anchor) {}
   24965: Changing date format of appliedAt JSON property to xmldate.
   24971: ALF-6600: Event handling performance improvements for DND file upload
   24976: Added team.war to continuous assemble-tomcat
   24977: ALF-6600: Initial pass at DND upload highlighting
   24979: Add method AuthorityService.getAuthorityNodeRef, and unit tests for it
   24980: UI label change for Team install
   24981: Set security permission on the new AuthorityService.getAuthorityNodeRef method, in line with the other get methods
   24987: ALF-6607 - Likes, favourite and comment actions. Also DocLib panel redesign. Updates to Rating Service to better match Team use cases.
   24989: ALF-6601: Added JavaScript multipart data constructor for FireFox 3.6 support
   24990: Fix "Access Denied" error when navigating into a "Liked" folder.
   25000: Merged V3.4 to V3.4-TEAM
      24999: ALF-6764 - Updated copyright year to 2011
   25004: ALF-6601: Set file size limit, HTTP status code error handling
   25007: Add user, group and person ACP exports to the Site Export webscript.
   (The user export is provisional, pending a service level way to access the user NodeRef)
   25008: ALF-6788: Update dashboard template to provide full width component and presets updates to reflect new default layouts.
   25017: Initial check-in for ALF-6809. A service to managed deleted items.
   This check in adds a basic REST API for GETting and DELETEing deleted items from the archive store.
   JUnit tests of the REST API are included but are not yet complete.
   
   25018: Trivial fix for failing test case related to ALF-6809
   25019: A previous check-in (25017) accidentally included an extra Java file that wasn't ready.
   File is related to ALF-6809 and will be implemented today.
   This check-in removes the internals of the class to allow it to compile.
   The class is not injected into the spring application context and is essentially dead code pending its implementation later.
   25027: Adding nodeType to the archivednodes.get webscript response.
     Requested by UI as part of ALF-6809.
   25035: ALF-6789: Personal dashboard welcome (with wireframe styling)
   25036: ALF-6782 - Undelete administration console page (WIP)
   ALF-6784, ALF-6786, ALF-6787
   25037: ALF-6564: Added operations to default form, all parameter-less operations are displayed as a button on the form. Clicking a button executes the operation after saving all attribute values.
   25038: Added a node filter to the archivednodes.get webscript. Currently excluding cm:thumbnails.
     A new bean on the script's controller class that allows injection of nodetypes to be excluded.
     Should be trivial to exclude other node types later and easy to exclude based on other criteria.
   25039: Part of ALF-6809. Deleted items were returned from archivednodes.get in the wrong order.
   They are now sorted by archive datetime most recent first. (Was previously sorted with most recent last.)
   Also switched the test case, which was backwards too!
   25040: Changing some copyright headers from 2010 to 2011.
   25041: ALF-6564: JMX forms can now be configured with selective attributes and the set of operations. Also includes an example form configuration for the outbound email almost matching Linton's wireframes.
   25042: ALF-6788: Fix rendering of old (V3.4) user dashboards stored in AVM with new Team layout
   25044: Part of ALF-6809. Added displayPath value to archivednodes.get.
   25047: Part of ALF-6809. Reconfiguration of cm:thumbnail archive behaviour.
   Formerly, we were archiving cm:thumbnails on deletion and filtering them from the archivednodes.get webscript which was not ideal as they remained in the archive.
   This check in removes the filter on the GET webscript and prevents cm:thumbnails from being archived in the first place.
   25049: ALF-6782
    - added Trashcan to admin tools menu
    - cleaned up list, show display path
   25050: ALF-6782 - css tweaks
   25052: Added check for multiple calls to onHistoryManagerReady() as workaround for issue with multiple History Manager objects when using Alfresco.util.DataTable.
   25053: Test case refactoring as part of ALF-6809
   25055: ALF-6803: First drop of aggregate file upload progress information.
   25056: Part of ALF-6809. A preliminary PUT webscript that is used to restore nodes from the archive to their original loaction.
   Currently only works on a single node per call (which is what the JIRA requires).
   Test code currently incomplete. I'm checking in now to give UI something to work with.
   25057: Fix for failing test case, which was part of ALF-6566.
   25058: ALF-6567 - AVM importer, which can load a zip file's contents into a specified AVM filesystem. Includes a bootstrap wrapper around the main importer.
   25068: Part ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
     - Subtask of ALF-6832: AT17: License restriction reporting
     - Added RepoAdminService.getRestrictions in Java and Webscripts APIs
     - Currently nulls returned indication 'no restrictions'
     - Cleaned up unused AdminService
   25069: ALF-6625 - adds a switch to control what calendar views are enabled and switches off Day, Week and Month views in Team.
   25073: Test case overhaul and minor tidying of code. Part of ALF-6809.
   25074: ALF-6803: Style updates to upload progress info
   25075: ALF-6601: Updated in-memory file upload check so that failure is based on total (not individual) file size.
   25081: Merged V3.4 to V3.4-TEAM
      25051: Build Fix: ALF-6865 CopyServiceImplTest.testCopyToNewNodeWithPermissions failing on permission copying
   25082: Part ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
     - Subtask of ALF-6832: AT17: License restriction reporting
     - Added RepoAdminService.getUsage in Java and Webscripts APIs
   25084: Improve how the Site Exporter gets at the users for a site, and have the user authentication details export skipped if a non-repository based authenticator is enabled
   25085: Final part of ALF-6809. Support for paging the results from archivednodes.get.
   Follows the standard maxItems, skipCount convention and enables paging in the trashcan view automatically thanks to Kev's use of the convention.
   25088: Final, final part of ALF-6809. Throwing 4xx, 5xx exceptions for nodeArchiveService-level failures to restore nodes
   25090: ALF-6601: Updated in-memory upload limit to be configurable
   25096: ALF-6601: Updates to DND highlighting and behaviour, set correct upload limit in bytes, NLS updates
   25101: Fixing failing test cases. Fallout from recent changes to the JSON response formats in these webscripts.
   25103: ALF-6613 - SpringSurf improvements to allow easier refactoring of Document Details page
    - latest SpringSurf libs with RequestCachingConnector improvements
    - removed manual request level caching of remote calls responses in web-tier components - now completely automatic
   25104: ALF-6803: DND upload dialog styling
   25106: ALF-6802: Added feature detection to disable drag'n'drop events (disables for IE6, IE7 & IE8)
   25108: ALF-6564: Added a check to the JMXFormProcessor to ensure the current user is an administrator. Also relaxed the rules in the checkbox control so it can be used for string values not just boolean values.
   25113: ALF-6789: Updated CSS to support IE6/IE7
   25116: Prevent server-side exception when navigating trashcan; related to paging. (ALF-6809)
   25117: ALF-6824 - Only show "Like" and "Comment" actions if a user has the correct permissions. Additional fixes for IE7.
   25118: Fix incorrect category aspect name. Missing file from r25117
   25119: ALF-6645 - Share and Team branding updates
   25121: Removed erroneous comment block
   25123: Merged HEAD to BRANCHES/V3.4-TEAM:
      25115: Fixes: ALF-6336 - resolved incorrectly translated date formatting strings.
   25124: Add a new bootstrap component for bootstrapping Sites. Handles the contents, AVM and authentication, people and their group membership to follow. 
   (Uses singleton spring beans in line with the patch service's use, to ensure that when loaded from a bootstrap extension things still occur in the correct order)
   25128: Merged V3.4 to V3.4-TEAM
      25127: Merged V3.3 to V3.4
         25126: ALF-6903 - Share theme feature does not work. Also fixes issue with MultiThreadedHttpConnectionManager in SpringSurf.
   25130: Continue with the site bootstrapper - finish supporting the loading of the site contents ACP
   25132: Work on ALF-6832:TR25: License restriction reporting
    - ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
    - ALF-6911: RTEAM 02: Record and expose system attributes
    - Added RepoUsageComponent
      - Unit test incl. testLicenseUse
      - Persists and retrieves usage data using AttributeService
   25133: ALF-6789: Added "Close" link to dynamic-welcome dashlet and associated webscript
   25135: ALF-6789: Add missing localization
   25136: ALF-6601: Defensively code against missing config
   25137: Fix up of transfer test.
   25138: Flattening of user preferences remote calls - ensures /preferences hits the RequestCachingConnector - reduces no. of remote calls by 3 for the doclib and by 4 for a site dashboard.
   25139: ALF-6804: Disable drop outside of document list
   25140: ALF-6887 - for sending HTML emails
   - prelim support - either text explicitly starts with "<html" and/or is passed via new HTML param
   25141: Updated version to 3.5.0 for Team
   25142: ALF-6834 - activities feed email notification (1st cut)
   - for sprint 1 demo (ALF-6928, ALF-6929, ALF-6931, ALF-6932)
   - note: to demo ... manually copy "activities-email.ftl" into repo (/Company Home/Data Dictionary/Email Templates/activities) and configure your own email address (for one or more users)
   25145: ALF-6602: Added first time instructions for DND upload
   25147: Merged HEAD to BRANCHES/V3.4-TEAM:
      25100: Fix for build issue Steve was encountering on new build boxes using Ant 1.8.x
   25151: ALF-6790: Updated CSS and images to match latest mockups
   25161: Basic support for canned queries
    - ALF-6910: RTEAM 01: Query support for system-wide attributes (ALF-6832)
    - At this stage it only has support for count-style queries
    - General-purpose change that will be needed for main Enterprise branches
   25162: Temporarily disables the balloon framework while I fix a bug in it.
   25163: Basic support for canned queries: extended tests
    - ALF-6910: RTEAM 01: Query support for system-wide attributes (ALF-6832)
    - General-purpose change that will be needed for main Enterprise branches
   25164: Further Site Export/Bootstrap work - support importing People (profiles for users), and placing them into the correct groups
   25165: ALF-6905 - RTEAM 04: Add restrictions to trial license
   25166: ALF-6644 - Theme per site.
    - Theme selection for a site and its child pages can be made in the Customise Site page
    - Framework now allows theme per application, site or page.
   25167: ALF-6790: First pass at new site dashboards welcome dashlets
   25168: ALF-6832 - RTEAM 19: Update DescriptorService
   25169: ALF-6906 - RTEAM 18: Report Team or Enterprise in startup log
   25171: ALF-6998 - activities feed email - reuse Share messages (including L10N)
   25172: ALF-6910: RTEAM 01: Query support for system-wide attributes
    - Added and call canned queries for users and documents
    - ALF-6832 TR25: License restriction reporting
   25175: ALF-6998 - activities feed email - fix build copy of activity-list*.properties
   25176: ALF-6962 - activities feed email - use configured share url (from sysAdminParams)
   => share.protocol, share.host, share.port, share.context (note: you may need to override for dev/demo env)
   25178: ALF-6564: TR12: Implement JMX Form Processor. Added tests, fixed a couple of bugs in form processor and added all Mike's form config for MBeans we're provisionally exposing.
   25187: ALF-6998 - activities feed email 
   - quick fix if running within repo-only context (eg. via Eclipse)
   25188: Prevented NPE with Enterprise edition built as community.
   25189: Expose getAllowWrite on the TransactionService API
    - This is a user-independent flag as opposed to isReadOnly, which makes allowance for the 'System' user
   25190: Work on ALF-6832:TR25: License restriction reporting
    - ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
    - Use TransactionService as the source of 'isReadOnly'
   25191: Fix to issue where null could be passed as URI Tokens
    - fixes issue where pages failed to render on first display since rev 25166
   25192: CSS tweak
   25194: I18N'd system startup message
   25195: Restrictions now sets current time and readOnly property.
   25196: ALF-6790: Added user prefs to enable site welcome dashlet visibility
   25198: ALF-6790: Fix user close welcome dashlet persistence. Added site welcome dashlet close reload.
   25200: ALF-6803: Update upload dialog title to display (encoded) folder name (not entire path)
   25203: ALF-6834 - TR15: Activities feed email notifications
   - ALF-6931 - RTEAM 23: update activity feed DAO to filter by min id and/or max items
   - ALF-6929 - RTEAM 21: now uses last feed id for each user
   - minor cleanup (eg. tweak template to deal with null message)
   25204: ALF-6790: Fixed broken site preference logic
   25206: Checkpoint ALF-6608 - Inline property editing - name field. Also paves the way for ALF-6611 - Inline property editing - any meta field. Currently does not constrain input values, nor handle repository errors (e.g. duplicate name).
   25212: ALF-6602: Updates to reflect latest designs
   25213: ALF-6564: More MBean form config
   25248: A new schema version range for 3.5
   25249: ALF-7049 - RTEAM 12: Disable Alfresco Explorer
   25252: ALF-7050 - RTEAM 09: Disable MT
   25263: Fix trailing comma for IE browsers
   25268: Implementation of ALF-6829 Popularity of a node (RatingService).
   
   This check-in is actually a fairly generic support for rolled up property values within rating schemes.
   Popularity is currently the only concrete rollup in the system, but it should be possible to add more without too
   much difficulty.
   
   Given the published API for the rating service, we have added rollups for "ratingCount" and "ratingTotal" for the built-in rating schemes (likes). Therefore searching/sorting on either cm:likesRatingSchemeCount or cm:likesRatingSchemeTotal, both of which are defined in an aspect cm:likesRatingSchemeRollups should give popularity for the likes rating scheme.
   
   
   Additions to the content model.
     I have added aspects, properties for the built-in rollups, namely count and total.
   
   Spring changes
     The rating scheme(s) now have rollups injected into them. These rollups are algorithm classes that know how to calculate the rolled up props.
     Naming conventions are used to determine the output property and are captured in RatingRollupNamingConventionsUtil.java.
   
   API changes
     New methods: RatingService.getRatingRollup(NodeRef, String, String)
     & RatingScheme.getPropertyRollups()
   
   Changes to the RatingService implementation and JUnit test code.
   
   To roll your own rating rollups:
     To add your own rating rollup, you need to reuse one of the existing AbstractRatingRollupAlgorithm subclasses or create a new one.
     That class will produce the value of the rolled up property by iterating the ratings in the given rating scheme for a given node.
     You need to inject your rollup algorithm into the rating scheme bean in rating-services-context.xml
     On applyRating() and removeRating() the RatingService will check the rating scheme for any registered rollup algorithms and will have them recalculated.
     It will then use the naming conventions described in the JIRA and in RatingRollupNamingConventionsUtil to get aspect/property names for each of the rollups.
     It will then add the property value in the normal way.
     Therefore, you need to extend the content model to include the expected aspect and property values. Follow likesRatingScheme for a sample.
   25273: Fix failing unit test.
   25274: DocLib sorting support for "popularity" (Likes rating scheme)
   25277: ALF-6602: Updated instructions to reflect new design. Info shown now dynamically based on site ownership/access rights/browser feature support
   25278: Merged BRANCHES/V3.4 to BRANCHES/V3.4-TEAM:
      25267: ALF-1070 - if site/user is deleted then immediately clean associated site/user feed
   25279: ALF-6601: Updated to handle 0 byte dropped files (or folders)
   25280: ALF-7009 WIP checkpoint
    - Also removed some code that is obsolete since ConsoleTool class extends Alfresco.component.Base
   25286: ALF-6599: Changed folder DND target back to image (not row)
   25298: ALF-7009 - Upload and replace Share logo
   25311: ALF-7080 / ALF-7002 - ActivitiesFeed subsystem (+ option to enable/disable job triggers)
   - moved ActivitiesFeed into subsystem for dynamic mgmt via JMX
   - FeedNotifier repeat interval can be dynamically changed
   - also added "enabled" property to AbstractTriggerBean => FeedNotifier job can be disabled / re-enabled
   25312: ROLLBACK (Partial) 25249 ALF-7049 Disable Alfresco Explorer.
   25313: ROLLBACK 25252 : ALF-7050 - RTEAM 09: Disable MT
   25317: ALF-6930 - bootstrap / patch activities email template
   25331: ALF-6890 - RTEAM 16: License-based restrictions: Number of users
   25333: Merged BRANCHES/V3.4 to BRANCHES/V3.4-TEAM:
      25319: Build/test fix (fallout from ALF-1070)
      25322: Build/test fix (fallout from ALF-1070)
   25356: ALF-6930 - bootstrap / patch activities email template
   - missed file, sorry !
   25358: ALF-6834 - Activities email: tweaks
   - pass through repeatInterval (to template model)
   - add exclude email list (eg. for default admin)
   25360: RTEAM 28: License restriction reporting: Force refresh
    - Added API for selective updates of usage data based on an enumeration: USAGE_USERS, USAGE_DOCUMENTS or USAGE_ALL
    - When people are added, for instance, usage will be updated and then retrieved for checking.
   25363: ALF-6639 - Default collaboration dashboard
    - NOTE: may need Team overlay version on merge if this change is *not* the default for Swift
   25364: Modified usage/restriction admin webscripts to use a common FTL lib for the json output and added some missing quotes around the license mode value.
   25365: ALF-6597: Added DashletTitleBarActions widget and applied to WebView dashlet
   25367: ALF-7082 - Remove Network Dashlet
    - Removed network dashlet from codeline
    - Support in WebScripts to allow hook for override of exception handling from webscripts for specific use cases
    - Surf LocalWebScriptRuntime overrides error handling looking for specific case of SC_NOT_FOUND - and silent ignores missing webscript components
    - Improved Share handling of missing webscript components that have already been bound into a dashboard (i.e. not a missing "slot" but an existing component binding that points to a missing webscript URL) - this will also allow for easier removal of other existing dashlets in the future without requiring repo-side patches or similar.
   25369: ALF-7042 (ALF-6832) RTEAM 28: License restriction reporting: Force refresh
    - Added unit test for update WebScript
   25375: Implementation of ALF-7024. Document versions service/webscript needs to return avatar url.
   The avatar url has been added to the JSON response as requested.
   If there is no avatar, a JSON null is returned as requested.
   25377: Add maxDocs, maxUsers and license mode to License JMX bean
   25378: Adding additional property to version.get webscript: a correctly-formatted ISO8601 date.
   This has been added as requested in the comments of ALF-7024.
   25381: Refactor of LicenseComponent and related to produce LicenseMode in descriptor (ALF-6907 RTEAM 19)
    - Need actual enum to do later usage updates according to mode
   25382: ALF-7053 - RTEAM 07: Disable Transfer
   25387: ALF-6564: Finished JMXFormProcessor (again). There is now a configurable list of operations to ignore, revert is ignored by default. The labels for the buttons are also localisable now.
   25390: Fixed up License MBean after changing the descriptor API
   25391: ALF-6911: RTEAM 02: Record and expose system attributes
    - Added job locking around individual usage queries
    - It is possible to concurrently update user and document counts
    - Exposed true/false return value on updates and added this to usages webscripts
   25392: Switched version edition back to Community
    - If we distribute Team using a community build, then we should know about it.
    - Team functionality is triggered by an Enterprise build or TEAM license.
   25393: Undid rev 25392
   25394: Work on ALF-6832:TR25: License restriction reporting
    - ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
    - ALF-6911: RTEAM 02: Record and expose system attributes
    - Added RepoUsageMonitor
      - Self-starting schedule
      - Only checks for restrictions that are in place
      - Issues warnings and errors; puts system into read-only mode on violation
   25403: ALF-6890 - Switch over of user query to database backed query.
   25408: WIP checkpoint for Agenda view refactor:
      - Adds Alfresco.util.friendlyDate to supply "Yesterday/Today/Tomorrow" style date
      - refactors getEvents into a common function in calendar-view.js (calendar-view-month not touched because it gets elements from the DOM rather than API)
      - Uses DataTables to display agenda events (currently unformatted)
   25410: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
      25409: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
           25407: Merged BRANCHES/V3.3 to BRANCHES/V3.4:
                25401: Allow continuous.xml database drop/create on postgresql and mysql to support the database being on a different machine
                25406: We no longer need a 2nd _test database for the unit tests, so remove the code that created/removed them during the continuous build
   25411: Fix to allow application logo to be uploaded with same filename as a previous logo.
   25416: Implementation of ALF-7100. Comments webscript doesn't return dates in iso8601.
   I added iso8601-formatted date fields jsut as for ALF-7024.
   25418: Implementation of ALF-7173. Remove the RatingService restriction whereby a single user can only rate a single node with one RatingScheme.
   Change to the RatingService javadoc so that it doesn't mention the restriction.
   Additional method in RatingService: getRatingsByCurrentUser - to return multiple ratings.
   Reimpl's testOneUserRatesInTwoSchemes test case from a -ve to a +ve test case.
   Rewrote the REST test cases slightly to cover the case of a single user multiply rating a node.
   Various changes through the apply() case to support this.
   25419: Change the Site Loading for ALF-6567 from a bootstrap to a patch. This means that if a site is loaded then deleted, it won't be re-loaded again.
   25420: Fixed unit test for ALF-6911: RTEAM 02: Record and expose system attributes
    - Forgot to prompt user usage changes to check numbers against
   25422: Addition of selfRatingAllowed field to ratingdefinitions.get webscript.
   As this is now a configurable property on a scheme, it should be reflected in the REST API.
   25423: Node rows that transition to the deleted state (not archive) are given type sys:deleted
   25425: Add an example extension context file to patch-load an exported Site, and allow the import path to use defaults to reduce the number of settings required
   25426: ALF-6597: Added temporary tooltip code for DashletToolbarActions (and updated to WebView dashlet to use it)
   25427: ALF-6789: Removed dynamic welcome dashlet from add dashlets menu
   25428: ALF-6599: Removed encoding of spaces in displayed location name on DND upload to folder
   25430: ALF-6890 - tweaks to query and person service for user limit stuff.
   25432: ALF-6597: Updated DashletToolBarActions to ensure fade in on first mouseover
   25433: Implemented ALF-6613, ALF-6614, ALF-6615, ALF-6616, ALF-6617, ALF-6618, ALF-6619, ALF-6620, ALF-6621, ALF-6622 - PART #1 
   - ALF-6613 TR22: Document Details page improvements
   - ALF-6614 Page redesign and refactor
     * Components are atomic and doesn't need global events to work.
   - ALF-6615 Document Actions panel
   - ALF-6616 Tags panel - NEW, replaces the old "info (tags+permissions)" component
   - ALF-6617 Share links panel
   - ALF-6618 Properties panel
   - ALF-6619 Permissions panel - NEW, replaces the old "info (tags+permissions)" component
   - ALF-6620 Workflows panel
   - ALF-6621 Version History panel
   - ALF-6622 Comment component redesign and refactor
   - alfresco-macros.lib.ftl
     * <#function uriTemplate id> 
       Helper for getting a uriTemplate in freemarker
     * <#function userProfileLink> 
        Helper fopr rendering a userProfile link in freemarker
   - alfresco-util.js - Rhino Javascript-helpers
     * function error(code, message, redirect) 
       Helper for redriting and throwing a webscript error
     * function param(name, defaultValue)
       Helper for placing a webscript "param" in the model, lloks for param in the following order args, page.templateArgs, properties, defaultValue. 
       If no value is found and no default value was given an error is thrown.
       Useful to avoid webscripts "crashing" when accessed from /service/ rather than from /page/ path, i.e. when refreshed/reloaded using ajax.
     * function getRepositoryUrl()
     * function getRootNode()
     * function getDocumentDetails(nodeRef, site)
   - alfresco.js
     * New in Alfresco.util.DataTable
       c.dataSource.doBeforeParseData - to modify response before rendering, i.e. if an array is the respons rather than an object
       c.dataTable.config.className - if another css class than alfresco-datatable shall be used
       c.paginator.history - set to false to avoid browser history management to kick in
       reloadDataTable() - to reload
       getData(record) - to get data related to a row in the table
     * sanitizeMarkup() - moved out code from request(), strips out <script> tags from html
     * New in Alfresco.base.Component
       - createYUIButtons()
       - attachLinkClickListeners()
       - refresh(url) - gets new markup from server and replaces the old and unregisteres the js component instance
   - base.css 
     * .alfresco-twister-actions - use this class to place actions in the twisters that are visible when twister is opened
     * .document-version - common css class for version label
     * .alfresco-datatable - Common styling for datatables created from Alfresco.util.DataTable, 
        gives list like appearence and removes headers and bprders.
   - NOTE! Tested in FF3.5 & SF4, PART #2 will contain: 
     x-browser testing, tidy up comments form, social gadgets in header, activities after new version upload
   25437: ALF-6789: Added confirmation dialog for welcome dashlet close
   25439: More WIP for Team's Agenda view. General clean up, code commenting and start of styling.
   25443: ALF-6597: Added actions to remaining dashlets
   25451: Site label suffix removed from title bar
   25452: ALF-7053 - Disable Replication Service
   25453: ALF-6599: Disabled DocLib DND upload when viewing non path filters (and fixed filter view bug that was previously introduced)
   25454: Stub out the user upload via CSV webscripts
   25455: Implemented ALF-6613, ALF-6614, ALF-6615, ALF-6616, ALF-6617, ALF-6618, ALF-6619, ALF-6620, ALF-6621, ALF-6622 - PART #2
   - components doesn't break when accessing a working copy OR a repository document (non site)
   - remove som unecessary code that slipped in with comments-list.js
   - "Add comments" now clears the editor before the next add
   - Comment paginator is only visible when necessary (happens to all paginators by default,force show with c.paginator.hide=false)
   - removed the document-details.ftl instantion of the javascript class
   - version panel isn't rendered on doc details page for working copies 
   - versions panel had white background under text "No previous verisions exist"
   - code commenting sweep 
   25457: ALF-6599: DND event listener fix
   25460: CSS tweak to document path
   25461: ALF-6790: Updated links for invite and upload for managers/contributors
   25462: ALF-6811: Added upload users CSV button to existing user admin console page. Stubbed code for invoking WebScript
   25470: Some build fixes
   - in general running without an authenticated user
   - getPerson -> getRestrictions without any security context
   25473: Added csv, xsl, xslx formats/mimetypes to default list for webscripts.
   25475: ALF-6608: Inline property editing - name field
   ALF-6625: TR04: Balloon popup (tooltip) component
   Also Document Library restyling: rollover style, text removed from most buttons, new icons.
   25476: Repository Browser brought up-to-speed with latest Site DocLib changes.
   25477: TEAM build fixes
   - fix unprotected service not to use public services - allows repoAdminService to be wired up to personService
   - There may be collateral damage to test using the messageService
   25482: Add the Apache Commons CSV library, and also fix the classpath breakage caused by the postgresql jdbc jar switch
   25483: Implementation of ALF-7005. TR24: Remove inappropriate rule script actions.
   Both sets of script actions (email templates and scripts) are built up using FolderContentsParameterConstraint objects.
   Using this class a location in the repo is specified and all cm:content children under that location (recursive) are included.
   I have added a new, optional property to that class which allows the specification of a list of file extensions, which is used as an inclusion filter for the content nodes.
   I decided against using a MIMEtype-based filter as there are situations where users add e.g. .js files as text/plain.
   Then I inject "js" and "ftl" as inclusion filters in the relevant action-constraint beans in the action service.
   We can easily add further file extensions should it be necessary.
   
   25484: ALF-6597: Fixed IE6 selector issue
   25486: ALF-6597: CSS correction to r25484
   25488: Small adjustments to descriptor logging during startup.
   25489: Team Eclipse project
   25491: ALF-6789: CSS tweaks to welcome dashlet columns
   25492: Get the basics in place for the user CSV upload - provides a sample csv file, loads it, process the contents and reports a JSON response, but doesn't yet create the users
   25495: ALF-6642: TR08: Site only view - remove Repository view.
   Copy and Move to dialogs only display Sites destination in this mode.
   Note: Page mapping not removed until it's clear how this will integrate with the installer; hence manually browsing to the Repository Browser is not pretty right now.
   25496: Minor follow-up fix for Repository Browser.
   25497: Support for ALF-6642 on details pages.
   25499: Document Library sort improvements: individual sort parameters can now be given a default sort order (like the Share search results page). Currently configured as name: ascending, popularity: descending.
   Also added support for "#upload" in URL to show the upload dialog.
   25500: ALF-7120: TR03: Test and integrate sample site into bootstrap process
   
   NOTE: This will install the Work In Progress sample site to your repository next time you start the repo. 2 new users will be added and will count towards your allocated users, you can safely delete the site and the users, they will not get re-loaded.
   25501: When generating the example file for the user CSV upload, have the webscript generate .xls and .xlsx versions, as well as the previous .csv one.
   25502: ALF-6790: Update upload link to #upload to get upload dialog
   25503: Team build fix: Fix message service tests after changing the beans wired up
   25505: New requirements for ALF-6617 "Share links panel", now only displaying link to current page
   25507: ALF-6640 - WIP. Initial styling pass, event actions, etc.
   25511: ALF-6789/ALF-6790: Removed old welcome dashlets
   25512: Resolve ALF-7099: Duplicate view:reference entries in an ACP export created using multiple noderefs
   25514: General cleanup of implementation and use runAs to query Admin-only service
   25516: More ALF-6893: RTEAM 03: Expose restrictions using RepoAdminService
    - Added 'licenseValidUntil' to web script returns (may be null)
   25518: Harden MessageServiceImplTest against leaked transactions
   25519: Refactor the common code for dealing with tenant usernames + tenant domain checking, during person creation, out to the person service
   25521: ALF-7099 export follow up: emit associations after all objects
   25523: Add support to the User CSV Upload webscript to actually create the people and users, using the new common service methods in common with share
   25524: Implementation of ALF-7093. Transfer/replication actions must not be displayed when the transfer service is disabled.
   
   Note: It is the ReplicationService which is enabled/disabled as opposed to the TransferService.
   A new webscript has been added (available at GET /api/replication-service-status) which returns 
   {"data": {"enabled": true}}
   
   Also a new REST test case.
   25525: ALF-6911: RTEAM 02: Record and expose system attributes
    - made getRestrictions() accessible to 'guest'
   25526: Update the user csv upload webscript with some debug log entries, and excel support
   25528: ALF-6602: Updated to new (temporary) images, updates to CSS
   25535: Removed deep svn:mergeinfo.  Please merge from base of code lines and remove spurious svn:mergeinfo
   25536: Merged V3.4 to V3.4-Team
      25399: Fix for ALF-6991: "Connection pool causes poor performance in some test suites"
             - applied constructor fix recommended by https://issues.apache.org/jira/browse/DBCP-330
      25400: Fix for ALF-6991: "Connection pool causes poor performance in some test suites"
             - commit missed file
      25474: Eclipse classpath tweaks to prevent element-based entry for Commons DBCP
   25537: ALF-7094: First cut of TR24: JSF-based login screens should warn unsupported when in Team mode. The wording needs reviewing and changing as does the position and styling of the text.
   25542: Implementation of ALF-7182. TR20: When a user 'likes' a document it appears in the activities feed.
   MikeH gave me the JavaScript changes for this in Share tier. Thanks Mike.
   I added some ftl and properties.
   25546: ALF-6602: Further image and CSS tweaks to doc lib assistance
   25548: Enhancements to user limit error reporting (ALF-6890: RTEAM 16: License-based restrictions: Number of users)
    - Report the usernames being added that generate the limit violation
   25549: ALF-6789: CSS updates
   25551: Fixed bug in Alfresco.util.DataTable when setting default css class name (appearing i.e. on trash can admin ui)
   25552: Minor cleanup in createPerson code.
   25554: ALF-6635 "TR12: Browser based administation - JMX admin console pages"
   25557: Updated version of sample site for Team, the full page width welcome dashlet is now present for both users.
   25559: First phase of ALF-6835:
    - Share now retrieves repository license/restrictions via REST API on first user login
    - Dynamically applies override config onto Alfresco config based on license info - allows Enterprise/Team specific tweaks to UI etc.
      - also constructs an object representing the license/restrictions that can be read by Surf components
    - Share Footer component now dynamically switches Community/Enterprise/Team logos and text based on config
    - Removed team project from source tree - NOTE: remove it from your local Eclipse projects
    - Removed team build targets - NOTE: devenv team targets will no longer work
    - Removed enterprise overlay for footer and share enterprise logo (no longer required due to dynamic footer configuration)
   25562: ALF-6835 - About Share dialog now displays appropriate edition logo and background based on license details
   25566: Allow users of the Mail action to pass in extra model options for their templates to use. 
   25568: When processing user CSV uploads, skip cleanly over blank lines
   25570: ALF-6811: Updated users admin console page and associated scripts to process WebScript feedback
   25572: ALF-6884 - TR25: Reload license file on live server via JMX operation on LicenseDescriptor mbean.
   25575: Agenda View WIP. Added add/edit/show more events functionality, bug fixes and styling. Updated Calendar API to include event description!
   25578: Bring user limit warnings in line with PersonService (create time) warnings
   25579: Repo usage monitoring done every 12 hours
   25580: ALF-6599: Update folder target highlighting & update temporary images
   25583: Fixes bug in Calendar Agenda view - number of days shown by default (was: from now - end of current month, is: from now until now + 30)
   25584: ALF-6602: Fix broken links on assistance panel
   25585: Branding and CSS tweaks from Linton
   25587: Wrap the User CSV upload result json in a data block, to better fit the current pattern
   25591: In the User CSV upload webscript, correct line numbers in error messages for excel uploads
   25593: Dashlet title rollover behaviour changes. Insitu edit balloon now removed when textbox loses focus.
   25596: Impl of ALF-7175 Comment order ... changed.
   This check-in adds a repo-side webscript parameter to reverse the order of comments
   25599: ALF-7233 remove doc for changing server.transaction.allow-writes
   25601: ALF-6811: Update to users.js to handle modified JSON response from WebScript
   25602: Agenda View, Bug fixes and CSS tweaks.
   25605: The empty 'Operations' set no longer appears in view mode and made the mail.password field behave like a password field
   25606: Tweak the JSON to better fit the current layout standards
   25607: Add a few more fields to the User CSV upload, based on the fields in Share
   25609: ALF-6645 - Branding tweaks
   25613: Help URLs moved to new edition based config - removed enterprise overlay.
    - NOTE: final 3.5 URLs still to be decided!
   25624: ALF-6789/ALF-6790: Updates to CSS/DOM to achieve completely fluid vertical and horizontal layout
   25626: ALF-6789: Updated profile to provide #edit hash and welcome daslet to make use of it
   25628: ALF-7207 - activities feed email / mail action executor
   - mail action executor should not get (+ auto-create) person when running as System
   - prepare / send email for each person as a separate txn
   - also: add actual / max feed item counts to template model  (as per ALF-6834)
   25631: Share Admin Console tool groupings
    - Implemented basic groups of tools in the admin console
    - First attempt at grouping tools - needs review by Linton/MikeF
   25644: Disable repository searching for team license configuration.
   25646: ALF-6835 - License details shown on License Descriptor admin page
    - Fixed up out-of-date JMX form bean names (changed on repo side since original JMX form config)
   25647: Team Agenda View - no events text, and other minor fixes
   25648: ALF-6811: Updates CSV WebScript response, added HTML format handling, added results panel to user console.
   25650: File missed from check in 25647
   25652: Start to convert the User CSV uploader to using localised error messages and error responses rather than non-localise exceptions
   25653: Added MikeF's url templates for ALF-6628 TR23: Preview support for Flash Video and HTML5 video.
   
   25654: ALF-6835 - Edition Interceptor improvements
   25655: Update how the User CSV Upload webscript returns messages and errors. Makes use of a property loaded via a resource bundle, and a new extension to WebScriptExtension which is driven by a supplied ResourceBundle, rather than the system-wide ones (which don't hold webscript specific messages)
   25656: ALF-6789/ALF-6790: Updated text, CSS/DOM tweaks & update to site-members to provide all members hash for welcome dashlet
   25658: ALF-6811: Updates to HTML format response for CSV request to support HTML uploader
   25659: Partial implementation of ALF-7230.
   This check-in changes the bootstrap data within the acp such that the sample JavaScript files in Data Dictionary/scripts are now bootstrapped as *.js.sample.  Their content has not been changed.
   Note that this applies to backup.js, example test script.js, backup and log.js, append copyright.js, alfresco docs.js and test return value.js.
   A separate solution will be provided for the command-*.js scripts.
   
   25660: Better reporting of the script causing stream errors
   25661: ALF-7231: RTEAM 32: FileFolderService method to get localised file
    - Locate the base translation using the well-known QName path (selectNodes) - this is the current way.
    - Call this additional method to locate any localized siblings
   25662: ALF-7263 - Track multiple reasons why we are read only otherwise we can't go back to read/write.
   ALF-7220 - Repo Usage Component Unlock
   25663: ALF-7256 - Ensure license reload does not damage server after upgrades
   25666: ALF-6811: Fix success message for all users uploaded
   25668: Increased user limit to 10 users for trial license
   25672: Some formatting
   25673: Minor comments format from Javadoc to inline
   25674: User count reporting: Keep track of disabled users on person
    - Disabling a user adds an aspect to the related person object
    - Should be able to export after disabling user
    - Don't count disabled persons
    - User count is reduced by 1 to cater for 'guest'
    - RTEAM 16: License-based restrictions: Number of users
   25679: A little more information is now returned if an error occurs whilst persisting MBean attributes or invoking an MBean operation.
   
   The sample site root node is prevented from being archived when it's deleted during the sample site bootstrap process.
   25681: ALF-6789: Change "Close" to "Remove"
   25685: Agenda View: Fixes Tagging.
   25686: IE fixes and slight change to the "automatic" binding from button/links against a component (value/rel attribute is now treated as a simple string instead of as an object)
   25688: Agenda view - new sketch logo from Linton for when there are no events
   25689: Feed edit icon css class
   25690: Invite test uses disabled users
   25691: ALF-7229 - partial (for Activities Feed Notifier)
   - also cleanup IoC deps
   25693: Work in progress ALF-6593: TR04: Update dashlets to provide consistent look & feel, include thumbnails, help text, action links where applicable
   25694: MERGED V3.4-BUGFIX to V3.4-TEAM
      24898 : Fix to FixUserQNamesPatch
   25695: ALF-6789/ALF-6790: Added new icons, removed old ones
   25697: ALF-7231: RTEAM 32: FileFolderService method to get localised file
    - Fixed extraction of 'base' name to be parts before *first* period
    - Changed unit test to use 'Something.html.ftl'
   25698: IE7 bug fix (a comma sign had slipped in by mistake)
   25701: Continued implementation of ALF-7230. Bootstrap data amendments and additions for Team.
   This changes the name of DataDictionary/EmailTemplates/NotifyEmailTemplates/notify_user_email.ftl to .../notify_user_email.ftl.sample.
   With this check-in there will now be no .ftl files available for the Rules UI's "send email" action. The "Use Template" dropdown will have no contents. A future check-in will add the new (i18n'd) ftl files.
   25702: Adds options support to Alfresco.widget.Resizer & updates console and calendar templates to use it. Tweaks styling on calendar to make it behave.
   25703: Update the FileFolder localised version tests to do both Standard.html/Standard_fr.html and Another.get.html.ftl/Another_fr.get.html.ftl so we test both cases
   25704: Provide a util helper for building Share and Alfresco (Explorer) urls up from SysAdminParams
   25705: ALF-6628TR23: Preview support for Flash Video and HTML5 video.
   - Customisable plugin architecture added for web-preview component, ootb plugins are:
     * WebPreviewer: for documents (and image & flash movies) in other words the "good ol previewer"
     * FlashFox: .mp4 & .flv videos for users w FlashPlayer 9
     * StrobeMediaPlayer: .mp4 & .flv videos for users w FlashPlayer 10
     * Video: HTML5 <video> element, support depends on the browser, but if youre lucky it might support .webm & .ogv movies
     * Image: Displays images using the <img> tag (if taken from the nodes content and the image is larger than 0.5 mb, a link must be clicked to get the conten displayed).
     * Flash: embeds flash content using swf-object
     * plugin kicks in depending on node's mimeTYpe & thumbnail in combination w rules defined in web-preview.get.config.xml
   - Added new mime types to repo:"video/ogg", "audio/ogg", "application/ogg" & "video/webm"
   25706: ALF-6628TR23: Preview support for Flash Video and HTML5 video. part 2
   - some strange white space characters had made their way in 25705
   25708: Add new notifyPerson method to the Person service. This sends an email to the newly added user telling them their credentials, where to log in etc. 
   (Email template patch to follow)
   25709: Use the new user notification method on the Person Service if requested, through the user CSV upload and person script service. It is on by default for CSV uploads, and off by default for javascript (Share)
   25710: Add security file missing from earlier PersonService.notifyPerson checkin
   25711: Further impl of ALF-7230.
     Ensuring that the (recently renamed) notify_user_email.ftl.sample file has a qname path which is .sample-based.
   25712: ALF-6835, ALF-7093 - Various improvements to Admin Console related to showing appropriate components based on license edition and admin console tool groupings.
    - JMX tools now only available when an appropriate Enterprise license is found
    - Subset of JMX tools available for TEAM edition
   25713: Library updates for rev 25712
   25719: Fix Alfresco.util.DataTable first request after r25693. Slight tweak to console tools list CSS for readability. Also modify how item separators work in social panel.
   25722: Fixes broken links in wiki page within Team sample site
   25732: Added quicktime move to the list of supported previews
   25733: Added localised model title and descriptions for all the cm:person properties
   25735: Revert non-English message bundles
   25736: Document Library folders defaulted to visible on first use.
   25739: Workaround for exceptions during bootstrap of clean db.
   Changes to the email template acp introduced an exception. The changes are related to ALF-7230.
   25740: Added read-write locking around veto code
   25741: Patches runAs 'System' to allow execution even in read-only environment
   25742: Patches runAs 'System' to allow execution even in read-only environment
   25743: Removed some javadoc-style comments within methods
   25744: Enhanced usage GET method
    - Currently, I have problems preventing real data from being returned; so see dummy data
    - Made usage GET a guest operation
    - Included 'level', 'warnings' and 'errors'; see usage.get.desc.xml.
   25745: Fix typo in error message
   25748: ALF-7094: TR24: JSF-based login screens should warn unsupported when in Team mode (final text from Linton/docs)
   25749: Make an unrestricted license available in the build classpath of each version
   25750: ALF-6622 "Comment component redesign and refactor"
   - Current user's avatar is displaye in add comment
   - editor is correctly configured and styled and uses full width
   25751: ALF-6602 - Final drag'n'drop icons and text from Linton/docs.
   25752: Email templates for new user notifications, and a patch for this (applicable to both new and existing installs)
   Note - acp may need a refresh later for tweaked templates, and description tweaks, but it shouldn't be a problem for anyone who gets this version now
   25753: Reduced property path console logging on startup
   25755: More acp hacking for ALF-7230.
     Now the property key is defined in bootstrap-spaces.properties. Oops. Mustn't forget that next time.
   25756: Update the User CSV scripts to use the new titles and descriptions for the person model, in both the template, and in the upload when skipping over title rows
   25757: Tweak the User CSV upload template to show the descriptions properly in all excel versions
   25758: Usage messages for usage web scripts
    - Fixed unit test fallout
    - Added license timeout as a restriction/usage element
   25759: Fix for making "poster" attribute to videos understand the filesuffix of a thumbnail
   25761: Fixed template to remove redundant 'warnings'
   25762: Add a note about why this class generates mail text itself, via dedicated template service calls, instead of following the new pattern of passing a template noderef + model to the Mail Action Executor
   25763: Update the site invitation mail action to enable the use of localised email templates (where present), and update to the new noderef+model pattern (rather than processing the template in the class)
   25764: Fixed bug where it was only possible to upload a new version once on the docuemnt detais page, also small css tweaking in the version list
   25765: Fix for ALF-7337 Email with content shorter than 5 chars causes exception in MailActionExecuter.
   A simple fix that tightens up some string comparison.
   25766: JMX MBean error handling: UI now shows the error message returned from the form processor. As the raw error message is being shown I have also localised the error messages on the server.
   25768: Sample site users are now loaded in a disabled state so they do not count towards the user count. The main wiki page also had a broken link to one of the images in the project library which is now fixed.
   25771: Removed organization id from the CSV upload as it's not used anywhere in the UI
   25772: Added protection for the usage.users or usage.documents properties being null
   25775: Removed unused warning suppress
   25776: Minor formatting
   25777: Added ability to get transactions that don't respect read-only vetos
    - Typically used by doing
          RetryingTransactionHelper txnHelper = transactionService.getRetryingTransactionHelper();
          txnHelper.setForceWritable(true);
          ...
    - This ranks with the 'Run As System' for permissions, but allows a clean separation between permissions and transactions.
    - Don't have to force everything to run as 'System' to get a writable transaction, but 'System' will still have one.
    - ALF-7236 RTEAM 34: Reload Licence fallout
      - ALF-7256: Ensure license reload does not damage server after upgrades
   25778: Allow patches to run against read-only system
    - Made a write-forcing RetryingTransactionHelper available for patches and their offspring worker threads
    - main upgrade thread is already running as 'System' user
    - ALF-7236 RTEAM 34: Reload Licence fallout
      - ALF-7256: Ensure license reload does not damage server after upgrades
   25779: ALF-7257: Changed read-only setting to server.allowWrite to avoid mixing with Spring config
   25780: Further impl of ALF-7230.
     This check-in includes a patch which bootstraps a .html.ftl notification email template and placeholder templates for supported locales es, fr, de, it. (The notification email has a broken link in it. I will fix that today.)
   25781: Inbound Email admin console tool disabled for Team edition
   25782: Agenda View style fixes, non-default theme updates and description expand.
   25784: Added MBean form config for the IMAP susbystem.
   25786: ALF-6635 - Added IMAP admin console component
   ALF-6835 - License component improvements
   25790: ALF-6835 - Show license info warnings/errors. Show SysAdmin JMX console component so share host/port can be set for email templates.
   25791: Build fix for recent changes (labels being added, scripts being renamed and site membership URL cleanup)
   25794: Add missing admin user exclude to the people export with a site
   25795: Further impl of ALF-7230.
     Added a new acp containing a new example JavaScript file & a patch to bootstrap it in.
   25796: Removing unnecessary property values. As part of ALF-7230.
   25799: Improved the order of the fields in the sysAdmin MBean form, fixed typos in a couple of labels and provided more explicit labels (there were 2 fields each called Context, Host, Port and Protocol)
   25800: Removed the loading of the command-*.js files that end up in Data Dictionary/Scripts. If they turn out to be required by something (we can't find any code reference to them anywhere) then they will need to be added back but to a different location.
   25802: ALF-6884 "TR25: Reload license file on live server via JMX operation on LicenseDescriptor mbean."
   25804: Agenda View polishing: Style tweaks, removed refresh jump, added "Today" button (currently uses page refresh), new Sketch icon, etc.
   25805: Fix up license admin component after previous checkin
   25806: Update the new user email template acp to have localised descriptions for the templates
   25808: ALF-6621 "Version History panel"
   - activitiy filed after new version upload
   - fixed bug where revert didn't work
   - components refresh inline instead of page reload
   - made alfresco-macros.lib.ftl work when "page" attribute isn't present
   25811: Update the site invite email templates to be localised and html. For new installs, you will get the html versions from the acp. For old installs, the text version will remain in DD, and you'll get (+ start using) the new html ones.
   (Change also pushes some freemarker model logic from the people invite into template service, so the site import can use it.)
   25812: For new installs, don't bootstrap load the old invite-email.ftl, as we now get the new html ones from an acp patch that always runs
   25813: Merged V3.4-BUG-FIX to V3.4-TEAM (3.4.1 changes)
      24884: adding back runBare over-ride - test was deadlocking
      24894: Merged BRANCHES/V3.3 to BRANCHES/DEV/V3.4-BUG-FIX:
         24892: Fix ALF-6729: Corrected build paths for WQS following upgrade of commons-pool library
      24901: Fix ALF-6590: Requesting details of many assets using a GET request was causing Tomcat to close the socket connection. Changed so that we use a POST for this request.
      24905: Merged V3.3 to V3.4-BUG-FIX
          24904: Fixes ALF-5964: Installer height too small RHEL (records only)
      24928: Merged V3.3 to V3.4-BUG-FIX
         24927: Fixed ALF-5025 (ALF-6206): Support background processing of archiving
             - Added property: xam.archive.forceBackgroundStoreMove=false
      24930: Merged V3.3 to V3.4-BUG-FIX
         24929: Merged DEV/DAVEW/SAP to V3.3
            24925: ALF-6667: Fixed possible deadlock where index merger is never rescheduled under heavy load
      24941: Merged BRANCHES/DEV/BRIAN/wqs-caching to BRANCHES/DEV/V3.4-BUG-FIX:
         24613: WQS: Added caching layer for asset collections. Improves rendering time of homepage by 23% at steady state.
      24944: ALF-6662 - Transfer/replication servers need to be compatible versions
   25814: Convert the activities email templates patch/bootstrap from a single xml + classpath ftl, to an acp containing localised html versions following the new pattern
   25815: Merged V3.4 to V3.4-TEAM (RECORD ONLY)
      24946: Merged V3.4-BUG-FIX to V3.4 (RECORD ONLY)
         24752: Merged V3.4 to V3.4-BUG-FIX
            24751: Merged V3.3-BUG-FIX to V3.4 (RECORD ONLY)
               Restored V3.3-BUG-FIX mergeinfo, somehow truncated in revision 24274
         24757: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24756: Fix for ALF-6269: WebForm (Edit Web Content Wizard) ERROR on Alfresco Community Edition 3.4.b and 3.4.c
         24771: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24767: Merged BRANCHES/V3.3 to BRANCHES/V3.4:
               24765: ALF-6547: fix intermittent test failure (AssetServiceImplTest renameFile/renameFolder) - fallout from ALF-1948
         24802: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24801: Fix for ALF-3055: "SecurityTestSuite hangs when run in DOD5015 context - failed authentication audit hangs on DB connection"
                - do failed audits in a separate thread (from a thread pool)
         24822: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24821: Fix for ALF-3055: "SecurityTestSuite hangs when run in DOD5015 context - failed authentication audit hangs on DB connection"
               - fix up unit tests
         24838: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24828: Merged BRANCHES/DEV/BELARUS/V3.4-2011_01_13 to BRANCHES/V3.4:
                24824: ALF-6361: web-client-config-custom.xml doesn't work in /alfresco/tomcat/shared/classes/alfresco/extension
         24857: Merged V3.4 to V3.4-BUG-FIX
            24853: Merged V3.3 to V3.4 
               24852: Fixed ALF-6573 "Incorrect name of subgroups on "Groups" page"
         24858: Merged BRANCHES/V3.4 to BRANCHES/DEV/V3.4-BUG-FIX:
            24750: Limit installer builds to 2 threads
         24874: Merged V3.4 to V3.4-BUG-FIX
      24948: Merged V3.4-BUG-FIX to V3.4
         24718: Merged V3.3 to V3.4-BUG-FIX
            24717: Fix ALF-5555: It is impossible to edit review date from record's details page
         24719: Fix for ALF-6106: Error on Check In operation with % symbol (SPP)
         24733: Better fix for ALF-6106: Error on Check In operation with % symbol
         24734: Fix for ALF-6089: Incorrect order of fields at 'Create Series', 'Create Category' and 'Create Folder' forms
            The name, title and description fields are now placed in their own group on the server, all other non custom rm fields are put in an 'other' group, the client side config then declares a set for each group and orders them appropriately.
         24753: Merged V3.3-BUG-FIX to V3.4-BUG-FIX
            23870: Merge Dev to V3.3_BUG_FIX
               ALF-4243: F5 load-balancer sending regular HTTP requests to Alfresco server causing Faces Servlet to throw java.lang.NullPointerException (MyFaces upgrade to from 1.1.5 to 1.1.7)
            23897: Additional fixes and tweaks since introduction of MyFaces 1.1.7 library.
            23919: More JSF component id related fixes.
            23945: More MyFaces1.1.7 JSF page fix ups
            23959: Another MyFaces 1.1.7 dup id issue fixed.
            24008: ALF-4243
               - Upgraded MyFaces from 1.1.7 to 1.1.8 to fix a bug seen in 1.1.7
               - Added handling for the fact that valuebound properties that result in null now cause an exception where-as they were perfectly valid in 1.1.5.
            24419: Merge from V3.3 to V3.3-BUG-FIX
               r.24418 Fix for ALF-6075. Running out of /tmp space on the server is causing uploads to fail.
         24768: Fixes ALF-6295: Allows MySQL to not be installed via unattended installer invocation
         24779: Merge V3.3 to V3.4-BUG-FIX
            24497 : ALF-3092 - deployment service - catch Throwable from Begin.
            24684 : Merge DEV/BELARUS/V3.3-BUG-FIX-2010_10_04 to V3.3
               23498 : ALF-5498 In Windows XP, placing a Folder with a Name that already Exists Removes all Content of the Existing Folder
            24749 :  ALF-6174 - Transfer Service fails with double peer assoc custom content type
            24766 : ALF-5603 - It is impossible to assign workflow from workflow console to non-admin user
         24812: Fix ALF-6316: A new "spoof" multivalue text property (cm:tagScopeSummary) is now made available for TagScope nodes when accessed via the getProperty or getProperties operations on the standard node service. The values of this property take the form "<tagname>=<tagcount>". A new interceptor has been added to the node service to do this (TagScopePropertyMethodInterceptor). WQS has been tweaked to make use of this new property, and the now defunct behaviour has been removed.
         24820: Work in progress refactoring transaction handling of transfer unit tests.
         24834: ALF-6468 - Update the scheduled actions folder bootstrap to use localisable names and descriptions, following the normal pattern
         24836: Added system property 'system.cache.disableImmutableSharedCaches' (false by default)
            - Equivalent to disabling Hibernate L2 cache for *immutable* entities
            - Allows distinction between mutable and immutable cache entries
         24850: Fix ALF-6562: Moved property that is used to label the WQS dashlet on the "configure site dashboard" page out of the Slingshot project and into the WQS Share Module project. Corrected its value to "Web Quick Start" rather than "WCM Quick Start".
         24860: ALF-6673 - bootstrap folders and rename
         24870: Removed svn:mergeinfo from root
         24873: Merged V3.3 to V3.4-BUG-FIX (RECORD ONLY)
            21789: ALF-4333: Fix
               - Updated RepoPrimaryManifestProcessorImpl so it can handle deletions that are reported by either pre-delete noderef or archived noderef (previously only handled the latter).
               - Updated TransferManifestNodeFactory so that it handles the case where the status of the node to transfer is "deleted".
               - Updated UnitTestTransferManifestNodeFactory so that it handles the change to TransferManifestNodeFactory above.
               - Added new tests for deletion cases.
            23259: Merged HEAD to V3.3
               23256: Fix ALF-4573: Start Workflow action is absent for edited document and working copy in Share
            23346: Brought WebQS module in (including build process but not installer elements yet)
            23371: "Simply" added wcmqs to installer
            23391: ALF-5367: Copy dlls into tomcat/bin as appropriate.
            23485: Merged V3.4 to V3.3 (fix backported for V3.3.x lines)
               23472: Fixed ALF-5408: SQL Server missing ON DELETE CASCADE declarations
            23515: Merged PATCHES/V3.2.0 to V3.3
               23514: ALF-5554: Merged HEAD to V3.2.0
                  23153: When updating tag scopes following system shutdown/restore, be smarter about quickly skipping tag scopes that another (new) thread is currently working on
                  23283: More debugging level logging for tagging updates, to help identify the problem with periodic multi-threaded test failures on bamboo
            23535: Merged V3.4 to V3.3 (complements 23517: ALF-5552)
               23508: Fixed ALF-5559: Permission interceptors can fail if Lucene returns invalid NodeRefs
            23564: ALF-5600: Merged V3.4 to V3.3
               23424: Fixes: ALF-2989 - Incorrect sideId reference in URL for event in Site Calendar Dashlet
                  Adds support for displaying events that start in the past but finish in the future (previously only events that start in the future were shown)
            23586: MERGED V3.4 to V3.3
               22864: Fix for ALF-5005: "Create and edit functions on AWE become "confused""
               23042: Fix ALF-5127: Impossible to create an article/blog (WCMQS) [Must clear panel hideEvent handler if manually hiding a YUI panel]
               23561: Fixes: ALF-4569 - Removes universal override of input width box and switches the editor form panel to adjust it's width based on content rather than window size. 
                  Fixes: ALF-4570 - Adds an override for the CSS 'top' property of the form dialogue to ensure it's always below the ribbon. (Was being set automatically by the YUI widget.panel call)
               23569: Fixes: ALF-5606 - Ribbon wasn't resizing correctly after the form events.
            23630: Backport of installer
            23631: Added 64-bit & deployment installers
            23664: Fixes ALF-5691: TransferService: Multi-byte characters are not encoded correctly
            23681: Fixes ALF-5699: TransferService: Snapshot file from source repo never contains complete MLText properties
            23695: Fixed bug exposed after fixing ALF-5699. Parsing of MLText properties out of the transfer snapshot file was incorrect, and that was causing multi-lingual property values to be duplicated
            23709: ALF-5699: Fix NPE in ManifestIntegrationTest
            23734: Merged V3.4 to V3.3
               23731: Fixes for ALF-3098 and ALF-3097
                  - Share - Security check on Personal Dashboard - only the owning user can view a user dashboard page
                  - Share - Security issue on Customize Site Dashboard - private and moderated site dashboard pages no longer visible to non-members, customise site and dashboard pages only accessible to SiteManager
            23747: ALF-5696: Merged V3.4 to V3.3
               23585: Fixed ALF-5372 "JavaScript error on Groups management dialog with IE8 : document.getElementById is null"
            23790: Fixed ALF-3823 "Share: RSS feed can't be read: http://cds-srv.sun.com:8700/rss/update/public/sunalert_update.xml - ok with other RSS client."
            23883: Fixes ALF-5759: WQS: Attempt to copy a website section fails
            23907: Merged DEV/BELARUS/V3.3-BUG-FIX-2010_09_20 to V33
               22750: ALF-4846: Update rules are firing on inbound actions 
            23931: Undid rev 23907 (Reverse-merged /alfresco/BRANCHES/DEV/BELARUS/V3.3-BUG-FIX-2010_09_20:r22750)
            23961: Fixed ALF-5686 "Incorrect behaviour of "All" filter in "My Tasks" dashlet"
               - Variables assigned in a <#macro> shall always be assigned using <#local> (using <#assign> makes them globally available which might cause naming collisions)
            24132: Disable intermittent failing unit test
            24148: ALF-6007: Merged HEAD to V3.3
               23049: Fixed ALF-5099: Error when trying to go back in Create Web Content Wizard (only with certain XSDs)
            24263: Merged from V3.3-BUG-FIX to V3.3
            24264: V3.3-BUG-FIX to V3.3
               24262: Stress test code for ALF-5025: Support background processing of archiving
            24287: Added missing import
            24336: Merged V3.4 to V3.3
               23205: Fix for ALF-2111 - Download URLS are different on different pages, authentication fails when URL sent
            24353: Merged V3.4 to V3.3
               24352: Fix SQL fallout from ALF-6078
            24510: Merged V3.4 to V3.3
               21960: First round of date refactoring: Document Library pages now expect XML dates (ISO8601) from Share data webscripts
               21961: Share client-side I18N utility now emulates sever-side handling of doubled-up single quotes.
            24526: Merged V3.4 to V3.3
               24402: Fix for performance degredation related to ALF-3823. 
                  RSS feed processing in JavaScript relies on Rhino impl of regex - this is extreemly slow as Rhino regex is by far the slowest component of the library. 
                  Switched code to use the Java Regex libraries to improve performance and reduce memory usage.
            24587: Merged V3.4 to V3.3
               24564: Fix for ALF-3727: Custom permissions aren't visible in Explorer UI
            24604: Merged V3.4 to V3.3 
               24602: Build fix for RM permission model loading - collateral damage for R 24564
            24774: Merged BRANCHES/V3.4 to BRANCHES/V3.3:
               23492: Fixed ALF-5550: DB2: Unable to insert values into alf_string_value
            24813: Merged BRANCHES/V3.4 to BRANCHES/V3.3:
               24750: Limit installer builds to 2 threads
         24880: Merged V3.3 to V3.4-BUG-FIX
            24463: Fixed ALF-4398 "Path to rule set is not displayed" ($html alias was missing from a merge)
            24465: Merge V3.3 to V3.4 (RECORD ONLY)
               24463: Fixed ALF-4398 "Path to rule set is not displayed" ($html alias was missing from a merge)
            24493: Fix for Mac OS X CIFS logon problem, change UID to start at one as zero has special meaning, plus other minor fixes. JLAN-112.
            24569: Fix for ALF-5333: Webdav - Online editing of files in a folder with German umlauts does not report correct characters
            24611: Fix broken build due to merge #fail (r24460 / ALF-4015)
            24668: ALF-4557 - Upgrade of large repository to latest 3.3 fails on excession of mysql table lock size
            24707: Fix for handling of null first/last name in wiki page list
            24710: ALF-5535 - Fix to correctly format json number values (not as numeric human readable strings)
            24794: Fix for ALF-4984 - Outdated custom-slingshot-application-context.xml.sample file for share
            24798: Fix for ALF-5806: Lucene query does not return expected result.
               - Alfresco FTS now supports the prefixes ~ and = for phrase queries
            24814: Build fix after r24798: Fix for ALF-5806: Lucene query does not return expected result.
            24823: Synchronization improvements to RemoteClient and http proxy hosts
            24825: Fixed #3 of ALF-6308 "Share data issues"
               - Share falls back to use "html uploader" (in all browsers except IE) when "JSESSIONID" cookie is unreachable from javascript (like when "HttpOnly cookies" is activated on the server.
            24835: Fixed ALF-5484: Check-in does not update association
               - Copy code when copying over an existing target node was NOT processing associations
               - Fallout from refactor and subsequent fixes related to ALF-958 (Target associations aren't copied)
               - Some commented-out unit tests reintroduced
            24842: Fix for ALF-6308 item #4 - validate the redirect URL to ensure it is a relative url
            24845: Merged DEV/DAVEW/SAP to V3.3
               23874: ALF-5822: Correct Lucene throttling mechanism to prevent build up of excessive committed deltas
                  - Also correct BatchProcessor's mechanism for single-threading batches with cross dependencies
                  - Single-threaded batches must be sequenced in order
               23876: ALF-5822: Default lucene.indexer.mergerTargetOverlaysBlockingFactor to 2 for better write performance under load
               24022: ALF-5822: Refinement of fix
                  - Don't block a thread that has already entered the prepare phase with another indexer (e.g. a cross-store commit). Otherwise it could block indefinitely and never enter the commit phase
                  - Also added extra debug diagnostics and handle all Throwables on failure
               24023: ALF-5822: Minor correction to debug log message
               24421: ALF-6134: Do not export org.hibernate.jmx.StatisticsService through JMX to avoid excessive blocking under load
               24422: ALF-6135: Remove lock contention from concurrent Lucene searches
                  - Added a RW Lock and Thread local-based solution to org.apache.lucene.store.FSDirectory.FSIndexInput.readInternal() to avoid contention during multiple parallel Lucene searches. This is already recognized as a bottleneck by the Lucene developers, who offer NIOFSDirectory as an alternative, which unfortunately doesn't work on Windows.
                  - Added RW lock to org.apache.lucene.index.TermInfosReader.ensureIndexIsRead()
                  - Threads no longer hanging in lucene searches during load tests. Woohoo!
               24423: ALF-6136: Don't call through to org.apache.log4j.NDC unless debug is enabled as it's heavily synchronized. Also avoid dynamic method invocation by using a delegate.
               24426: ALF-6138 (SURF - PARTIAL): 'Warm' the java.beans.Introspector cache for key Freemarker accessible bean classes on loading in static initializers
               24428: ALF-6139 (SURF - PARTIAL): First log in to Share is expensive due to 'lazy' dashboard creation and excessive synchronization
                  - Added AVMRemoteStore.createDocuments() for creating multiple XML documents at once, all embedded within the same master XML document in the request body 
                  - Added corresponding saveDocuments() methods to Store, RemoteStore, Model, ModelObjectManager and ModelObjectPersister on the Surf side 
                  - Used this in PresetsManager 
                  - Removed excessive synchronization from StoreModelObjectPersister 
               24429: ALF-6140 (SURF - PARTIAL): Surf tweaks to allow concurrent execution of web scripts
                  - Use StrongCacheStorage instead of MruCacheStorage in RepositoryTemplateProcessor to avoid use of a synchronized cache
                  - Tweak cache sizes in FreeMarkerProcessor
                  - Use thread local object wrapper delegates in QNameAwareObjectWrapper and PresentationTemplateProcessor to work around synchronization in DefaultObjectWrapper
                  - Swap in the same object wrapper to WrappingTemplateModel
                  - Use a concurrent HashMap in ModelObjectCache and ModelHelper and remove excessive synchronization
                  - Use RW locks rather than synchronized blocks in AbstractWebScript
               24431: ALF-6141: Improvements to IBatis DAO performance under load
                  - Use lazyLoadingEnabled="false", enhancementEnabled="false" to avoid unnecessary blocking and generation of CGI proxies in IBATIS DAOs
                  - Use useTransactionAwareDataSource="false" to prevent Spring from agressively unwrapping DBCP connections and bypassing the prepared statement cache
               24432: ALF-6142: Remove dependency between RepositoryAuthenticationDAO and Lucene
                  - Reworked RepositoryAuthenticationDAO to use a node service lookup by child association QName
                  - This required adding a patch to 'upgrade' the qnames of existing authentication nodes, which previously all had the same QName
               24433: ALF-6143: Remove net.sf.ehcache.use.classic.lru setting from EhCacheManagerFactoryBean and InternalEhCacheManagerFactoryBean to prevent serialization of accesses to shared caches by multiple executing threads
               24434: ALF-6144:  DirtySessionMethodInterceptor was causing contention between multiple threads calling the same DAO.
                  - Unfortunately method.getAnnotation() is a synchronized call, and thus causes concurrent calls to the same method to contended with each other. 
                  - Added a non-blocking cache so that DAOs can be accessed in multiple threads without contending. 
               24435: ALF-6145: Use RW Locks in Subsystem Framework
                  - The operations relied on by the dynamic proxies wrapping subsystems were synchronized and thus caused contention when multiple threads were calling in to the same subsystem
                  - Replaced synchronized blocks with use of read write locks, thus allowing multiple concurrent readers
               24436: ALF-6146: Regulate PermissionModel accesses with RW locks, rather than synchronized blocks and an excessive number of concurrent hashmaps.
               24438: ALF-6136: Fix build classpath
               24439: ALF-6142: Fixed seeding of admin user password
               24444: ALF-6142: Fix unit test fallout
                  - InviteServiceTest needs a transaction
                  - RepositoryAuthenticationDao must listen for Person username changes and update authentication node qname accordingly
                  - Correction to MT handling in RepositoryAuthenticationDao
                  - Repository Authentication Component must 'normalize' the username before passing it through the DAO
               24445: ALF-6145: Correction to lock handling when propagating destroy() events
               24446: ALF-6142: Add new dependencies to unit test
               24448: ALF-6142: Further fix ups
               24461: ALF-6142: Fix unit test
               24664: ALF-6408: Prevent possible deadlock during reindexing
                  - waitForHeadOfQueue() now only called in beforeCommit() phase rather than afterCommit() to prevent deadlocking with Lucene throttler
                  - indexes are also flushed beforehand in beforeCommit() so that indexing work can still be parallelized
                  - also prevent potential deadlock caused by clearing of IndexInfo.thisThreadPreparing in a nested transaction
               24810: ALF-6653: Use read write lock in Hibernate ReadWriteCache to avoid needless contention on L2 cache reads
               24817: ALF-4725: Avoid excessive lock contention in dbcp by upgrading to 1.4
                  - also upgraded commons pool
               24818: ALF-6658: Remove synchronization from LockService - transaction local collections used anyway
               24844: ALF-6681: Don't let the PostLookup job stack up in multiple threads
                  - Now only executes in one thread at a time and skips scheduled slots where it is already running
            24864: Fix for ALF-5904: Explorer - Space model rights not duplicated when creating a space based on a template
               - copy service no longer uses hasPermission
               - added tests for permission copy scenarios with assorted rights
               - this fix assumed there is nothing special about templates - ie that they should always carry permissions and is the "default" copy behaviour to copy permissions if possible
            24865: ALF-6145: Fix failing unit test
            24878: ALF-6146: Correction to write lock around requiredPermissionsCache
         24881: Increment version revision
         24884: adding back runBare over-ride - test was deadlocking
         24894: Merged BRANCHES/V3.3 to BRANCHES/DEV/V3.4-BUG-FIX:
            24892: Fix ALF-6729: Corrected build paths for WQS following upgrade of commons-pool library
         24898: Fixed merge issue in FixUserQNamesPatch
         24901: Fix ALF-6590: Requesting details of many assets using a GET request was causing Tomcat to close the socket connection. Changed so that we use a POST for this request.
         24905: Merged V3.3 to V3.4-BUG-FIX
            24904: Fixes ALF-5964: Installer height too small RHEL (records only)
         24928: Merged V3.3 to V3.4-BUG-FIX
            24927: Fixed ALF-5025 (ALF-6206): Support background processing of archiving
               - Added property: xam.archive.forceBackgroundStoreMove=false
         24930: Merged V3.3 to V3.4-BUG-FIX
            24929: Merged DEV/DAVEW/SAP to V3.3
               24925: ALF-6667: Fixed possible deadlock where index merger is never rescheduled under heavy load
         24941: Merged BRANCHES/DEV/BRIAN/wqs-caching to BRANCHES/DEV/V3.4-BUG-FIX:
            24613: WQS: Added caching layer for asset collections. Improves rendering time of homepage by 23% at steady state.
         24944: ALF-6662 - Transfer/replication servers need to be compatible versions
   25816: Removed unused config files; superceded by subsystem configuration
   25817: Tweak how the html notification/invite template ACPs are patched/bootstrapped to better fit the pre-existing pattern
   25819: ALF-7230. Fixed the document link sent out in the notification email.
   This document link is now a Share link and requires the admin to have configured SysAdminParams with server config data such as port number etc.
   Added the SysAdminParams bean to the ServiceRegistry
   Added a helper method to TemplateNode to get the Share URL for a (document) node.
   Updated the email templates within the acp to use the helper method in TemplateNode.
   25820: Merged V3.4 to V3.4-TEAM
      24885: Fix ALF-6694: V3.4.0 schema inconsistencies
         - ALF-6712: DB2: alf_authority missing index 'authority' during upgrade
         - ALF-6714: ALL: alf_prop_unique_ctx missing FK index on upgrade from 3.3 and 3.2
      24889: Disabled intermittently failing test (ALF-6700) until it can be made more reliable.
      24951: Merged DEV/DAVEW/SAP to V3.4
         24950: ALF-6698: Allow clearBatchSize and updateBatchSize properties of userUsageTrackingComponent to be controlled through system.usages.clearBatchSize and system.usages.updateBatchSize global properties
      24966: Fixed ALF-6363: Transaction status incorrect during afterCommit phase
         - Covered by unit tests
         - afterCommit or afterRollback will report "Not in transaction"
      24969: Fixed ALF-4372: JavaDocs don't match code for Index Recovery Modes (VALIDATE)
      24970: WQS: Fixed web publishing transfer service Spring definition (hopefully permanently now) following change to TransferService requirements
      24974: Fix ALF-6813: WQS: Specifying the sort order in the query of a dynamic asset collection has no effect
      24978: WebDAV: minor debug logging fixes
         - fix WebDAVHelper logger name to be consistent (with rest of WebDAV and other filesys protocols)
         - log service call as info (separate from rest of debug)
      24983: Step 1 of ALF-3891: Policy beforeDeleteChildAssociation not fired on delete node
         - Clean up deprecated beforeCreateChildAssociation, which could only be used *after* the event
      24985: Attempt to fix ALF-6820: Slow CMIS unit tests on build box
      24994: Fixes: ALF-6815 - terminology change (also fixes encoding bug that was preventing files being loaded into translation memory)
      24995: ALF-6572 - WCM: virt svr - enable "lazyDeploy" by default
         - can be disabled (in server.xml)
      24997: correction/kludge of DescriptorServiceTest.
      25002: Fix up test.
      25029: Merged DEV to V3.4
         25009: ALF-5829: Cannot upload files to Records Management site using WebDav from Mac OS X
             - Configuration constant that maps User-Agent pattern to response status code was added to WebDAVMethod.
             - Method that determines response status for AccessDeniedExeption using ‘User-Agent’ header was added.
             - AccessDeniedException processing was changed to return appropriate status.
      25043: Merged DEV to V3.4
         25012: ALF-6758: Potential JGroups Locking issue requiring jgroups upgrade
         JGroups was upgraded to the latest available stable version 2.11.1 Final:
            - jar was upgraded;
            - sources were upgraded;
            - classpath of the ‘3rd Party’ project was upgraded;
            - AlfrescoJGroupsChannelFactory was upgraded according to extension in superclass 
      25061: Merged DEV to V3.4
         24920: ALF-1787: Slow performances when many workflow are opened
             1. Implementation of a custom query for JBPMEngine.getAssignedTasks.
             2. Uint test for creating and testing neccessary items in DB.
         25014: ALF-1787: Slow performances when many workflow are opened
             1. HQL query for TaskInstance properties chache. 
         Also:
            - Moved back to query.list() - no difference with scroll
            - Checked query plan for batching queries and found no problems
            - Batch queries *have* to be limited in the IN clause
            - Although not using scrolling, there was a missing close statement
      25072: Reversed change 25043: Slow performances when many workflow are opened
      25094: Resolve ALF-6736: CMIS Web Services: getObjectByPath() should return an objectNotFound error if the given path doesn't exist
      25107: Resolve ALF-6754: CMIS nameConstraintViolation errors are not returned to client
      25122: Merged HEAD to BRANCHES/V3.4:
         25115: Fixes: ALF-6336 - resolved incorrectly translated date formatting strings.
      25144: ALF-6841 - IMAP Sync Errors
      25148: ALF-6991: Connection pool causes poor performance in some test suites
         - Added explicit 'forceMultipleResultSetSupport=false' in case someone wants to change it.  
         - This is not a fix (or actually a change at all) just a documentation of the options available
      25149: Added transaction leak checks in security tests.
         - Just helpful for diagnosis when one test fails and brings the others down.
      25182: Merged PATCHES/V3.4.0 to V3.4
         25180: Merged DEV/TEMPORARY to PATCHES/V3.4.0
            25150: ALF-6918: Editing a Share document simultaneously using Share HTTP and Webdav breaks the document - working copy relationship.
               User can't unlock and edit original node that was checked out by him. 
               WebDAVMethod-> checkNode() was changed to return Http Status 423 if node has a working copy
         25181: Merged DEV/TEMPORARY to PATCHES/V3.4.0 (with corrections)
            25102: ALF-6894: Share IMAP - Modifier and date/time incorrect.
               ImapServiceImpl.checkForFlaggableAspect() method was modified to  disable "auditable" behavior before adding "flaggable" aspect and then enable it again.
      25193: Fix ALF-7039: Unable to specify target MIME type for renditions generated by the TemplateRenderingEngine
         The "mime-type" parameter is now exposed by any rendering engine that is derived from the BaseTemplateRenderingEngine
      25205: Merged V2.2 to V3.4
         25184: ALF-6914: Use RetryingTransactionHelper in WorkspaceClipboardItem
            - Also decoded the mysterious looping logic
      25214: Merged BRANCHES/DEV/BELARUS/V3.4-2011_01_13 to BRANCHES/V3.4:
         25045: ALF-6435: SPP doesn't work with MT users
      25216: Merged HEAD to BRANCHES/V3.4:
         25100: Fix for build issue Steve was encountering on new build boxes using Ant 1.8.x
      25219: Fix for ALF-6312: "Incorrect work of AWE functionality"
      25222: Merged BRANCHES/DEV/BELARUS/V3.3-2010_12_20 to BRANCHES/V3.4:
         24943: ALF-6103: Explorer - Version type not set by auto version
      25224: Fixed ALF-6992: PersonUsagePatch is sequenced incorrectly and is too slow
         - Added direct SQL update for cm:sizeCurrent (adds a type NULL property just like the Java patch did)
         - Removed the Java patch; ensured that new patch has the old as an 'alternative' and that the old patch is now a NoOp.
         - Tested with 50K users upgrading from 2.1
         - Can be backported safely to 3.2 and later.
         - Will provide instructions in the JIRA for working around.
      25225:ALF-6992: PersonUsagePatch
         - Fixed alf_applied_patch entry
      25229: Fix for ALF-6661: Fixed issue with navigation handling in JSF client, although seen via WebDAV in the bug description, it's actually the same for any inline editing.
      25237: Fix for ALF-6463: Collaborator and Editor cannot rename items via WebDav
      25244: Fix for ALF-6858: Uninitialized FormUI options parameter causes UI to be unusable
      25245: A new schema version range for 3.4.1
      25246: Merged BRANCHES/DEV/BELARUS/V3.4-2011_01_13 to BRANCHES/V3.4:
         25226: ALF-6348: Edit the event to reccurent and backward doesn't work
      25253: ALF-7059: Excessive webscript loading times in v3.3 and v3.4
         - Corrected escaping of Lucene document searches in RepoStore
         - The '-' character was getting interpreted as an operator when searching for package-desc.xml
      25256: ALF-5143: Eliminate use of non-I18N friendly FileWriter
      25258: Undid fix for ALF-6992 revs 25224 and 25225
      25259: Fixed ALF-6992: PersonUsagePatch is sequenced incorrectly and is too slow
         - Fixes ALF-6954, too: CLONE - Attempt to login into Alfresco fails for previously created users ...
         - Follows previous fix removal
         - Moved SQL from bootstrap to patch execution, but still do a mass update
         - Ensure that QNames are present prior to SQL execution
         - 'patch.authorityDefaultZonesPatch' depends on 'patch.personUsagePatch'
      25261: Merged DEV to V3.4
         25160: ALF-1787: Slow performances when many workflow are opened
             1. Implementation of a custom query for JBPMEngine.getAssignedTasks.
             2. Uint test for creating and testing neccessary items in DB.
             3. HQL query for TaskInstance properties chache.
             4. HQL query for ContextInstance variables chache.
      25270: Fix for ALF-6271. ThumbnailRegistry loading definitions without transaction.
      25275: Merged DEV to V3.4
         25243: ALF-6583: when a LDAP admin removes its own account, account cannot be useed anymore and cannot be recreated
             - Full path to node calculating logic was extracted from ‘org.alfresco.filesys.repo.NodeMonitor.beforeDeleteNode()’ policy handler:
             - ‘NodeMonitor’ performs lookup operations as 'System' user
         25251: ALF-6583: when a LDAP admin removes its own account, account cannot be useed anymore and cannot be recreated
             - Additional persons’ cache controlling was added:
                - currently, ‘org.alfresco.repo.security.person.PersonServiceImpl.getPersonOrNull()’ checks all ‘User Home’ NodeRefs before using;
                - all inexistent NodeRefs will be removed from the cache 
      25281: Attempt to prevent build hang in ChainingUserRegistrySynchronizer
      25287: Merged DEV/TEMPORARY to V3.4 (with correction)
         25284: ALF-5596: Alfresco WebDAV does not work when repository is in read only mode.
      25295: Merged DEV/DAVEW/SAP to V3.4
         25207: ALF-6856: Avoid checkout failures under heavy load
            - Stop absorbing all exceptions in checkin / checkout / cancel-checkout
            - Propagate object wrapping code, message and cause instead
         25208: ALF-7062: Use a shared cache in RepositoryAuthenticationDao
         25209: ALF-7063: Use nodeService.exists() instead of a Lucene search in Search.findNode()
         25210: ALF-7064: Use caching plus a read write lock to avoid contention in SubsystemChainingAuthenticationService under load
         25211: ALF-7065: Use cached authorityService.getContainingAuthorities() method to improve performance of SiteServiceImpl.getPermissionGroups()
         25220: ALF-7062: MT fix
         25221: ALF-7062: Fix AuthenticationTest
         25223: ALF-7065: Refinement to use of cached authorities in SiteServiceImpl.getPermissionGroups() that preserves current 'direct memberships take precedence' semantics.
            - First fetch cached recursive group memberships. If there are zero or one, they can be returned immediately.
            - Otherwise, fetch immediate group memberships and work it out from there.
         25230: Extend ehcache cluster sample with socketTimeoutMillis=10000. Increase timeout from its 1 second default to avoid lots of RMI and cache integrity errors under load.
      25297: Fixed merge issue in 25295
      25302: ALF-6067: Unable to run read-only server without error
        - The latest error could not be reproduced
        - Added double-check to bypass audit if the system is in read-only mode (TransactionService.getAllowWrite())
      25306: ALF-5596: Merged DEV/BM to V3.4
         24726: BM - tweak WebDAV propfind (to use read-only txn)
      25326: Fixes for DB coverage: ALF-1787: Slow performances when many workflow are opened
         - Refactored query to use neat JOIN syntax
         - Added back batch size limiting to prevent Oracle blow-outs
         - Added in parameters to cover boolean query conditions
      25334: Added missing quotes in invitation service properties file
      25336: Merged V3.3 to V3.4:
         - 24918: ALF-6496: Browsing large File Plan is slow			
         - 24940: - Fix up issue with over enthusiastic caching of capability results.
              - Rename troublesome capability test so as not to hold up the build.  				
         - 24947: Fix-up to capabilities test.
         - 24973: Unit test fixes
         - 25046: Build fixes
         - 25080: RM: Fix transaction cache key
         - 25260: ALF-7000: RM: Cuttoff action for folder is missing when record is frozen
      25344: Updated capability tests.  More to come.
      25370: Fix for ALF-3339 - Modifying the properties of a link on a Folder does not show up after pressing the OK button but after pressing the 'close' button
      25374: Fix for ALF-6691 - Incorrect behavior of RSS feed for Wiki. Also fixes other minor RSS feed validation issues (pubdate format).
      25389: RM: Build fixes
      25414: Fix for ALF-3202: ALL field not fully implemented in LuceneQueryParser for wildcards, prefixes, and fuzzy
        - all current fields behave sensibly or throw unsupported
      25424: Fix for ALF-6576 - Search by tags shows not empty results on the site which has no content
      25467: Resolve ALF-7074: CMIS web services do not appear to allow ticket authentication
      25508: Fix for ALF-7110 - JSF custom component Form submit value encoding
      25538: ALF-6497: Updates to disposition schedules in progress do no complete with large record sets
         - Updates to records under the control of an edited disposition schedule is now performed in the background
         - A quartz job manages the record updates
         - UI updates to show whether there is a unpublished update to the disposition action pending 
      25539: RM: Ensure not "all" behaviours are switched off when processing disposition action defintions updates.
         - rm search information is now being populated and shown in the Ui correctly post publish
         - see ALF-6497
      25545: Merged V3.3 to V3.4
         ALF-7196: Records only
      25573: Deleted : /alfresco/BRANCHES/V3.4/root/modules/dod-5015/source/java/org/alfresco/module/org_alfresco_module_dod5015/model/FilePlanComponentAspectTest.java
      25603: Updated Postrgresql install switch
      25608: Fix Eclipse classpath after Postgres driver move
      25620: Fix for escalated issue ALF-7218: Advanced Search in Share breaks with custom type which contains underscores in type name
      25622: Merged BRANCHES/DEV/BELARUS/V3.4-2010_12_14 to BRANCHES/V3.4:
         24647: ALF-6307: Compliance for Third Party jars with Source Modified
      25623: ALF-6309: Changes to notice.txt and addition of license files
      25627: Fixes ALF-7222: Updated linux installer window height (with taller image to hide additonal background)
      25633: Fix intermittent unit test failure - retrying txn in RecordsManagementAuditServiceImplTest
      25637: Merged DEV/TEMPORARY to V3.4
         25215: ALF-6696 : Upgrade from 2.1.7 to 3.3.4 failing Due to "out of memory"  
            All large db scripts for all supported dialects was modified to follow batching approach.
         25325: ALF-6696 : Upgrade from 2.1.7 to 3.3.4 failing Due to "out of memory"
            1. Upgrade scripts for all supported dialects was corrected to follow mysql style after David's review of batching porting work.
         25398: ALF-6696 : Upgrade from 2.1.7 to 3.3.4 failing Due to "out of memory"
            Some errors was corrected in upgrade scripts after David's review.
      25643: Initial commit of reworked Japanese language pack
      25669: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4:
         25665: Spanish Language Pack update from Gloria
      25671: Updated installer with simple Easy install.  Fixed binaries inclusion.
      25684: Fixes: ALF-7102 - minor (consistent) typo in i18n string.
      25692: ALF-7293 - Handle error condition of unsupported RSS XML format (RDF in this case)
      25707: ALF-6993 Fixed AlfrescoTimer so that it no longer ends the task if the Timer is set to repeat.
      25715: Fix intermittent failing unit test by increasing time window
      25718: Merged PATCHES/V3.4.0 to V3.4
         25700: Fix for ALF-7059: Webscripts: Startup: webscript loading takes about 10 minutes to complete.
            - QNAME:simpleToken will go down an optimised route
      25720: Fix for ALF-7318: patch.calendarNamespaceUri fails as the TYPE field no longer supports prefix queries
         Part fix for ALF-6291: Inconsistencies in lucene search queries with wildcards and single letters.
      25721: Fixed ALF-7319.  Removed ';'.
      25734: Updated copyright to 2011
      25738: Fix to issue with groups display and wrong panel returned to after cancel group edit
      25773: Merged BRANCHES/DEV/BELARUS/V3.4-2011_02_16 to BRANCHES/V3.4:
         25747: ALF-6307 Compliance for Third Party jars with Source Modified
      25798: Merged PATCHES/V3.4.0 to V3.4
         25789: Merged DEV/TEMPORARY to PATCHES/V3.4.0
            25783: ALF-7079: concurrent access to share site using the Share web UI and webdav by two users break the copy.
               1. The WebDAV MOVE and DELETE methods were modified to properly handle the "MS Word shuffle" for working copies.
         25793: Merged DEV/TEMPORARY to PATCHES/V3.4.0
            25395: ALF-7079 : concurrent access to share site using the Share web UI and webdav by two users break the copy.
               UnlockMethod (webdav) was modified to correctly handle working copies.
      25803: Merged V3.3 to V3.4 (RECORD ONLY)
         25015: ALF-6749: Merged V3.4 to V3.3
            24601: Fix for ALF-6032: It's impossible to create meeting items
         25062: Merged V3.4 to V3.3
            25061: Merged DEV to V3.4
               24920: ALF-1787: Slow performances when many workflow are opened
                   1. Implementation of a custom query for JBPMEngine.getAssignedTasks.
                   2. Uint test for creating and testing neccessary items in DB.
               25014: ALF-1787: Slow performances when many workflow are opened
                   1. HQL query for TaskInstance properties chache. 
               Also:
                  - Moved back to query.list() - no difference with scroll
                  - Checked query plan for batching queries and found no problems
                  - Batch queries *have* to be limited in the IN clause
                  - Although not using scrolling, there was a missing close statement
         25276: Merged V3.4 to V3.3
            25261: Merged DEV to V3.4
               25160: ALF-1787: Slow performances when many workflow are opened
                   1. Implementation of a custom query for JBPMEngine.getAssignedTasks.
                   2. Uint test for creating and testing neccessary items in DB.
                   3. HQL query for TaskInstance properties chache.
                   4. HQL query for ContextInstance variables chache.
         25328: Merged V3.4 to V3.3
            25326: Fixes for DB coverage: ALF-1787: Slow performances when many workflow are opened
                - Refactored query to use neat JOIN syntax
                - Added back batch size limiting to prevent Oracle blow-outs
                - Added in parameters to cover boolean query conditions
         25373: Merged HEAD to V3.3
            25100: Fix for build issue Steve was encountering on new build boxes using Ant 1.8.x
      25807: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4:
         25785: Add the WQS client API to the "generate-javadoc" build target
         25792: Fix ALF-7345: WQS: Unable to place a WQS on the root context of a web container easily. This fix enables the web context of a WQS website to be set to "/" to indicate that it lives at the root of the URI namespace of the web container.
      25809: Merged V3.3 to V3.4
         24899: (RECORD ONLY) Merged V3.4-BUG-FIX to V3.3
            24898: Fixed merge issue in FixUserQNamesPatch
         24913: Merged BRANCHES/DEV/BELARUS/V3.3-2010_12_20 to BRANCHES/V3.3:
            24890: ALF-837 Firefox: Incorrect behaviour of Insert/Edit image option on creating content based on web form
         24962: (RECORD ONLY) Merged PATCHES/V3.3.3 to V3.3
            24959: ALF-6780: Merged V3.4 to PATCHES/V3.3.3
               23385: Fix for ALF-5166: After restore of indexes - AUTO hangs
                  - bulk deletes are now handled as such during index tracking and rebuild (as they are normally)
         25011: Attempt to resolve latest build deadlock: Specify inputstring="" in junit invocations in order to work around Ant bug https://issues.apache.org/bugzilla/show_bug.cgi?id=37887
         25012: Reverse previous checkin.
         25033: ALF-6535: Changes to enable session sticky sessions for SPP
         25034: Merged DEV/TEMPORARY to V3.3
            25026: ALF-6763 : Malformed web.xml prevents 3.3.5 340 JBoss deployment, org.apache.myfaces.ERROR_HANDLING param should be replaced
               1. Web.xml was modified for web-client to allow bootstrap alfresco on Jboss EAP 5.1.0.
         25060: (RECORD ONLY) ALF-6114: Rules for updated items are triggered before users commit any changes.
         25063: Merged DEV/TEMPORARY to V3.3
            25059: ALF-608 Errors when uploading content via CIFS result in zero byte files
               Closing file operations wrapped by transaction in ContentDiskDriver.
               Catching IOException in NTProtocolHandler.procCloseFile() was changed to catching Throwable to avoid delay.
         25067: For for ALF-6807: TinyMCE: This is a follow up of: http://issues.alfresco.com/jira/browse/ALF-5420 (escalation)
         25177: ALF-6855: Adding versionable aspect as rule in share site causes errors
         25186: Merged PATCHES/V3.3.3 to V3.3
            25065: Fix for ALF-6780 Full re index seems to not ends up under certain circumstances.
               - A full rebuild only creates nodes
               - Fixed issue repeating all previous deletes already processed in the transaction (for deletes and updates to nodes)  with every delete/update in the transaction
               - Closed TermDocs enumerations
         25372: ALF-5933: Updated mysql collate encoding
         25456: Fix for ALF-7078: CLONE -Impossible to reject invitation due to script error
         25478: Fix for ALF-6756 - JSON delete should not pass body for request
         25498: (RECORD ONLY) ALF-5964: Updated installer window height for linux
         25533: ALF-6946: Correction to WAS libraries.xml
         25558: (RECORD ONLY) Fixes ALF-6268
         25560: Fixed ALF-7210: User workflow tasks query fails on RHEL
            - Case-sensitivity in the table aliases cause failure on unix
            - Must be 'processInstance' not 'processinstance'
            - Fallout from ALF-1787: Slow performances when many workflow are opened
      25810: Merged V3.3 to V3.4 (RECORD ONLY)
         25070: Reversed revision 25062
   25822: First embryo of social items on doc details page.
   25823: ALF-7336 - License file to be loadable from configurable location
   25824: ALF-7333: TR24: IMAP, CIFS, WebDAV & FTP should not mount company & user home by default
    - Added global property 'protocols.rootPath' defaulting to protocols.rootPath=/${spaces.company_home.childname}
    - Included 'protocols.rootPath' in file-servers config and IMAP config
    - TODO: Get 'protocols.rootPath' into WebDAVServlet
   25825: Fixed Eclipse classpath which contained a reference to someone's Tomcat directory
    - To avoid having to update the classpath, create a project in Eclipse called "Enterprise Runner"
      and pull in the "Enterprise Repository" into that.  Then run tests in context of "Enterprise Runner".
      Additional jars and paths can be pulled in as required.
   25826: Merged V3.4 to V3.4-TEAM
      25301: (RECORD ONLY) Merged V3.4-TEAM to V3.4
         25189: Expose getAllowWrite on the TransactionService API
      25821: ALF-5841 Applied fix to queryTasks() to stop the process definition hibernate query exceeding the limit of 1000 arguments.
   25828: New i18n labels for social interactions
   25830: Working "likes" added to document header on doc details page, using the Alfresco.Like widget found in share.js
   25831: More work in progress ALF-6593: TR04: Update dashlets to provide consistent look & feel, include thumbnails, help text, action links where applicable
   25832: Remove placeholder text (unused)
   25833: Some improvements on the "likes" in share.js, such as calling it Alfresco.Like instead of Alfresco.Favourite...  :-)
   25835: Build fixes for RM related tests
   25836: Added "favourite" on doc details page's header suing Alfresco.Favourite foun din share.js ALF-6614 "Page redesign and refactor"
   25837: Update the new html templates - remove the share_or_team flag (switching to just being "Alfresco"), and rationalise on shareUrl rather than a mix of shareUrl and share_url
   Also tweaks how shareUrl is injected into the model
   25838: I have no idea why FormServiceImplTest is failing on the build server, it runs fine locally. In the interest of getting a successful build this weekend I'm disabling the failing checks until I have time to investigate the environment difference on the build server.
   25839: Fixes to siteURL macro and param reader following recent refactoring.
   25841: ALF-7358 - RTEAM 38: User count is not decremented when users are removed
   ALF-7378 - RTEAM 39: Excess users error is not accurate for an end-user
   25842: Removed deep permission checks in RepoUsageComponent
   25844: Url fix for "like activity" posted from doc details page ALF-6614 "Page redesign and refactor" activities
   25847: ALF-6614 "Page redesign and refactor" added missing peice "comments" in doc detail header
   25848: Update the InviteSenderTest to work with the new way of passing the template details+model to the MailActionExecutor, rather than rendering the text itself
   25856: Change the User CSV Upload webscript to handle the transaction itself. This means that if the transaction commit fails (eg user limit exceeded, custom person validation fails) then we get to send the client our own error message+status code. 
   (Previously the commit failure was trapped by RepositoryContainer, and so the webscript had no control over the error reporting process, which is required in this case to meet share UI needs)
   25858: When generating WebScriptExceptions from a resource bundle (instead of the more usual system properties), ensure that the underlying cause (if present) is included
   25864: Added back logging of subsystem start/stop.
   25865: Removed unused code and comments
   25871: General license fixes
    - Apply forced read-write to transactions
    - Heartbeat code synchronization around enable/disable
    - Fixed license test to check for heartbeat state correctly
   25872: Merged V3.4 to V3.4-TEAM
      25849: Fixed ALF-7379: PostgreSQL patch.migrateAttrAVMLocks error when upgrading to Enterprise 3.4
         - PostgreSQL doesn't accept column aliases without 'as'
         - Probably version-dependent
      25850: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4:
         25843: Updated FR files received from Gloria 2011-02-25
         25845: Updated IT files received from Gloria 2011-02-25
         25846: Updated DE files received from Gloria 2011-02-25
      25859: Merged PATCHES/V3.4.0 to V3.4
         25857: ALF-7376: Detect concurrency problems in PutMethod
      25867: Fixes: ALF-5628 - Meeting Workspace Calendar Entry issue.
      25868: ALF-7274: Reinstate &characterEncoding=UTF-8 into default MySQL JDBC URL, using proper encoding of & for an XML file (&amp;)
   25882: License tests: Narrow down failures (doesn't fail locally) and also deal with logging problems
   25883: ALF-6593: TR04: Update dashlets to provide consistent look & feel, include thumbnails, help text, action links where applicable.
   New placeholder filetype icons @ 32x32.
   New avatar get URL (internal): /slingshot/profile/avatar/{username} or /slingshot/profile/avatar/{username}/thumbnail/{thumbnailname}
   Added "avatar32" thumbnail preset.
   25885: Remove reference to non-existent file. Add folder icons back into path on the details page.
   25886: Added new avatar photo placeholder icons from Linton
   25893: Fixed Legal and License url in About dialog
   25895: Fix for ALF-6622 "Comment component redesign and refactor"
   * show new comments component where required
   * comments in correct order 
   * displaying ok in 1024x768
   25897: Fix for ALF-6622 "Comment component redesign and refactor" part 2 (#svnuserfail)
   * show new comments component where required
   * comments in correct order 
   * displaying ok in 1024x768
   25907: Clean up redundant javadoc
   25909: Wrapped setup and tearDown work in retries
   25910: More ALF-7120: TR03: Test and integrate sample site into bootstrap process
    - Pulled everything into first-level patch
    - Removed build-time dependencies
    - Fixed authentication wrapping
    - Fixed I18N messages for patch
    - Note: The patch ID has changed, but this will not cause problems on re-application
   25912: Fixed test fallout from rev 25910 (ALF-7120: TR03: Test and integrate sample site into bootstrap process)
   25926: Even more ALF-7120: TR03: Test and integrate sample site into bootstrap process
   - Removed exclusions from build script for XML file no longer present
   - Fixed an re-enabled JavaScript test in SiteServiceImplTest that was disabled earlier
   25928: - Added form config for ActivitiesFeed MBean ready for addition to admin console
   - Made all boolean fields use a checkbox
   - Re-ordered Fileservers fields to tidy up form and fixed labels
   25937: Build fixes, updated counts for groups as there are now more groups in a default repo due to sample site being created.
   25940: Added Activities feed admin console component
   Fixed label reference in IMAP admin console component
   25955: Merged V3.4 to V3.4-TEAM
      25946: ALF-7191: Generate duplicate _en resource bundles, using location of _fr bundles as a guide for ALL bundles under alfresco and share WEB-INF/classes 
      25947: ALF-7191: Reverse accidentally committed changes to WebDAV in 25946!
      25954: ALF-7191 - Generate _en bundles for all message bundles for Explorer and Share - using known location of message bundles
   25959: Extra logging around ALF-7336: License file to be loadable from configurable location
   25962: Updated example JavaScript patch to include an example that starts a pooled review and approve workflow for all the members of the site the document being acted upon belongs to. The script has no effect if the document lives outside a site.
   25965: Fixes and tweaks from Alfresco Team UI review meeting
   25973: Fixed issue where some form field labels were not returned, was caused by a bean in the enterprise forms context file having a duplicated name.
   
   Also re-enabled the forms tests I disabled as these should now be fixed too.
   25977: More TR28: Prevent the IMAP 'Email Actions' folder from being created during bootstrap. The folder structure contains rules that point to the scripts we also no longer bootstrap. This folder is used for optional IMAP functionality which can be enabled by manually importing the ACPs if required.
   25982: Merged V3.4 to V3.4-TEAM
      25890: Fix for ALF-5796 - It's impossible to add tag in Japanese language (IE specific)
      25894: Fixed Legal and License url in About dialog
      25896: ALF-6476 -translation on Transfer Target configuration
      25899: First cut of French transfer properties.  Mostly English! but has 3 lines of French.
      25900: Fix for ALF-6916: More Deployment Reports action causes an error
      25916: Updated support URL in readme
      25925: Fix for ALF-6885: alfresco-enterprise-3.4.0.zip package has 2 issues with apply_amps.sh
      25936: ALF-6469 - transfer folders internationalized
      25949: Fixes: ALF-6521 and ALF-6493 (Site discussion's handling of tags with special characters in them)
      25950: Fixes: ALF-6489 - encodes the content's name to make it safe for a URL.
      25951: Fixes: ALF-6487 Adjusts styling for rename panel
      25956: Allow a bit of leeway with audit timing during delete tests
      25957: Fixed ALF-7341: Upload performance degradation when uploading contents to folders with content rules applied.
         - Action executions were being recorded by the ActionTrackingService for all actions
         - Post-commit updates of the action node was reducing performance
         - Added 'trackStatus' to ActionExecuter, ActionDefinition and Action
         - Default 'trackStatus' is false; exceptions: 'replicationActionExecutor' and 'commit-transfer'
         - Adjusted tests accordingly
         - General cleanup around modifications
      25964: ALF-5625 - When viewing properties in version history hitting close results in loop
      25970: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4:
         25967: Fix ALF-7440: WQS: commons-pool library has been upgraded, but WQS build properties have not been changed accordingly
      25974: Reverted rev 25964 - as fix is scheduled for 3.4.2
      25979: Disabling intermittent failing unit test. ALF-7443 logged.
   25989: ALF-7457: Update to Team UI following 01/03/2011 review
   25990: Fix initial load of my tasks dashlet. Dashlet pagination now hidden if dashlet empty.
   25991: Agenda View: fixes minor bugs & attempts to slightly improve usability of Event Info box.
   25993: Fix for ALF-7444: RTEAM 41: ActivitiesFeedNotifier fails to send emails (when built using exploded target)
   25997: License management debug logging
   25998: Temporary logging for license and heartbeat
   26008: Merged BRANCHES/V3.4/ to BRANCHES/V3.4-TEAM:
      25891: Fixes: ALF-7363 (updated JA translation)
      25901: Fixes: ALF-6847 (Italian Translation)
      25902: Fixes: ALF-6861 (incorrectly encoded German character)
      25904: Fixes: ALF-6755 (translation quoting error)
      25911: Fixes: ALF-6478 - French translation correction
      25915: Updates TinyMCE translation as requested in ALF-6486.
      25917: Fixes: ALF-6482, wrong word order in FR has been corrected.
      25913: Fixes: ALF-6334 and ALF-6477 (Profile Edit style issues - makes mark up consistent, clears floats to allow for foreign languages being a tad more verbose than English and adjusts padding to help input boxes line up.
      25919: Fixes: ALF-6655 updated to allow enough space for verbose languages (e.g. FR, ES)
      25941: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4:
           25939: Latest JA update from Translators, received: 2011-02-28
      25943: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4:
           25942: Language updates for property string changes and additions between 3.4.0 and 3.4.1
   26009: Fixes double byte comma issue in JA.
   26010: License loading: Further use of the license change callback
    - Added notification for license failures
    - Heartbeat uses callbacks
    - ALF-6884, ALF-6905, ALF-6888
   26015: Updated sample site, now contains images that can be distributed.
   26016: Temporarily disable failing test: runs locally
   26018: Final version of English HTML email templates.
   26025: Debug logging to test to trace during builds.
   26029: Team unit test fixes and analysis
    - Reintroduced UserUsageTrackingComponentTest with debug logging to aid trackability
    - Fixed at least one LicenseComponentTest (Trial license generation for forcing read-only mode)
    - Added further logging of failed licenses to aid tracability on build box
    - Removed temporary debug logging (build box debug logging working fine)
   26031: Fixed embedded license loading and logging
   26038: Updated Contents.acp of sample site, fixes the broken image link in the wiki's main page
   26041: Merged V3.4 to V3.4-TEAM
      26024: ALF-7466 - Links do not appear correctly in the management Console (RM)
      26033: Correct database cleaning behaviour of continuous build - dir.test.data was never set. dir.root was never getting cleaned.
         - dir.test.data replaced with dir.root
      26036: ALF-6403: Merged V3.4 to V3.4 (lost revision)
         25627: Fixes ALF-7222: Updated linux installer window height (with taller image to hide additional background)
      26039: Fix intermittent failures in InviteServiceTest.tearDown()
      26040: Fix intermittent failures in InviteServiceTest.setUp()
   26046: Test cleanup of license restrictions
   26047: Prevent real embedded license from being picked up during unit tests of embedded license
   26053: Added in loop to wait for asynchronous post-failure auditing (ALF-3055)
   26054: Separation of embedded license location for HeartbeatTest
   26055: Merged V3.4 to V3.4-TEAM
      26014: ALF-7087 - Cannot override webscript files in case of using jboss 5.1GA
      26043: Sync up run-junit-test with junit macros so that it can be used to run unit tests in an enterprise environment (e.g. DB2 / Oracle)
      26044: Possibly fix intermittent TransferServiceImplTest failures by using org.alfresco.repo.transaction.RetryingTransactionInterceptor
      26052: Do not wait indefinitely for a heartbeat in HeartBeatTest. A broken heartbeat would cause the build to hang forever!
   26062: ALF-7492 - MT support for new Team/Enterprise license info retrieval in web-tier.
   26064: Fixed ALF-7419: RTEAM 40: Duplicate warning and error messages when user limit reached
   26066: Fixed ALF-7489: Team - default outbound email settings need removing
    - Now: mail.host=smtp.example.com
    - Added this to build env. on bamboo and bamboo2: mail.host=smtp.alfresco.com
   26069: Removed unused remote-api bootstrap files
   26070: Use PropertyCheck to check for valid property values
   26071: Extra debugging during 'split person' processing
   26072: ALF-7333: TR24: IMAP, CIFS, WebDAV & FTP should not mount company & user home by default
    - WebDAV obeys 'protocols.rootPath'
      - Use dedicated bean to ingest properties so that Spring takes care of the placeholders
      - Servlet gets the bean instead of using web.xml config values
    - Added global property 'protocols.storeName' and injected it into protocol configurations
   26073: Follow-up on rev 26069: Removed unused remote-api bootstrap files
   26074: ALF-7468: Update to Team UI following 03/03/2011 review
   ALF-7474: Check supported mimetypes for new icon support
   26075: Latest dashlet help balloon and empty content text. Missing file from r26074. Consolidated Site and Repository DocLib renderers.
   26076: Fix to base style for Content I'm Editing dashlet
   26078: Fixed the "RM part" of ALF-7013 "Fix up refactored Document Details page and components for RM and WCMQS modules"
   26079: Merged V3.4-BUG-FIX to V3.4-TEAM
      26057: Fix for ALF-6691 - Incorrect behavior of RSS feed for Wiki. Resolves a number of niggly auth related issues with RSS feeds and auth.
      26060: Improvements to error 500 handling page for Share. Complete exception output as HTML comment for administrators and developers. Web-tier server errors now output to the console again also.
   26080: ALF-7358 - RTEAM 38: User count is not decremented when users are removed
    - Added listening during modification of user (enable/disable)
    - Use common warning and error logging: the same logging that is displayed to admin
    - Also fixed erroneous logging of person splitting when a user was changed (it was not actually doing anything)
   26083: JA file moved to reflect changes made while translation was being done.
   26085: Fixed ALF-7529 "No doclib action on details" - caused by double encoding of vtiServer property
   26086: ALF-6835 - Report license errors to all users and warnings+errors to admin on first login.
   26087: Final implementation of ALF-7230.
    - Changed ImapServiceImpl to look for localised siblings of the Imap Email templates. Using the normal FileFolderService method, email templates for IMAP clients will be selected based on server locale.
    - Added new email templates for locales: de, es, fr, it.
    - Changed existing default locale to use ACP for consistency.
   26090: Updated sample site, now includes a video file to highlight new video previewing capabilities
   26091: Fixed ALF-7013 "Fix up refactored Document Details page and components for RM and WCMQS modules" part 2 - WCMQS
   26092: Addition of patch for non-default locale templates for Imap Clients. (ALF-7230)
   Also stepped the db version number.
   26098: Minor updates to dashlet help text.
   26103: Fixed test after default config for email settings were changed.
   26105: ALF-7533: Drag and Drop no longer works into FF3.6 browser
   ALF-7532: Content Rule on RM site (other than Folder) creates 'GUID' folder in Share (fixed as part of general RM fixes)
   
   Also: RM and WCM QuickStart Document Library extensions patched to latest code. WCM QuickStart toolbar extension removed. Drag and Drop refactored to work in Repository Browser and WCM QuickStart; switched off for RM. English property files created when using Slingshot exploded target. Header conditions updated to use correct Community edition string.
   26106: Remove debug output.
   26108: Fix for ALF-7331. Thumbnails in Share do not change from initial generic filetype icon...
   The fix is to have StreamContent.java use the actual resource's modification timestamp for the Last-Modified header.
   It was using the mod-time of a newly created file, which held a copy of the classpath resource.
   This led to a race condition between putting a timestamp on the placeholder and putting a timestamp on the cm:thumbnail node.
   26113: Fix slingshot-exploded target - missed commit from yesterday.
   26114: Merged V3.4 to V3.4-TEAM
      26077: Upped LOGFILSIZ to avoid failures in unit tests with large transactions on DB2
      26084: Avoid intermittent test failures in AbstractTestFormRestApi by using retrying transactions
      26096: Correction to DB2 drop / create commands
      26097: Fixes: ALF-7102, typo in property string.
      26102: Attempt to avoid intermittent failures in TaggingServiceImplTest by upping wait time
      26109: Another go at executing the db2 creation statements synchronously through db2cmd
      26111: ALF-6764 - Copyright year on Share login page out of date
   26118: Made the JMXFormProcessorTest more resilient to changes in the email configuration.
   26122: Fix customize site page following refactoring in r26078. Added Data List page icon.
   26126: Merged V3.4-BUG-FIX to V3.4-TEAM
      26099: Resolve ALF-7539: Tomcat sessions are created unnecessarily when invoking CMIS web scripts from Web Quick Start
   26129: ALF-6929: RTEAM 21: activities feed notifier - add per user on/off flag
   26149: Removed old System.out
   26150: Fixed ALF-3856: Version History lost when Versionable Content renamed via CIFS
    - Added fileservers property: filesystem.renameShufflePattern=(.*\.tmp)|(.*\.wbk)|(.*\.bak)|(\\~.*)
    - Any rename that does not match the pattern on either the source or target names will not be shuffled
    - Requires retesting of use cases involving CIFS and MS Word.
   26151: ALF-6626 TR15: Email notification preferences
   Cleanup to related components
   26161: Fix full installer.
   26162: Updated calendar help with latest icons and styling to match.
   26168: Use new install builder 7.0.3
   26169: Localized installer.
   26173: Tweak to display of warnings/errors after login - reduced impact on server
   26200: Locate Postgres data within alf_data directory
   26209: Locate Postgres data within alf_data directory for Team
   26210: Set license path to include install dir, and set protocol root to Sites
   26215: The ContentTransformerRegistry and the ContentService used to only expose the 'best' transformer for a given (srcMime, targetMime, options). This check-in adds access to the full list of active transformers for any (srcMime, targetMime, options) to those two classes.
   As part of a subsequent fix for ALF-5084, the ThumbnailService will use this list to improve create-thumbnail retry behaviour for problem files.
   26227: Merged V3.4-BUG-FIX to V3.4-TEAM
      26226: Merged DEV/SWIFT to V3.4-BUG-FIX
         26225: 'renameShuffle' detection pattern needed extending and logic was slightly incorrect
                 - Fallout from fix for ALF-3856 detected by new unit tests
   26235: Merged V3.4 to V3.4-TEAM
      26233: Fixes ALF-6019: Ensure PostGres services deleted after installation cancel
   26264: ALF-7653 - sys-admin panel no longer editable
   26265: Merged V3.4-BUG-FIX to TEAM
      26263: Merged DEV/SWIFT to V3.4-BUG-FIX
         26262: Fixed regex patterns to cater for .properties file escapes (ALF-3856)
   26266: ALF-7651 - WebM and OGG Video have 'unknown' mimetype in Team
   26267: ALF-7578 - When importing from an ACP a node with the versioned aspect on it, have an initial version history created starting at the current version label.
   26268: ALF-7687 - Ability to use wild character in People search - Should add configuration to allow zero characters for all search in Team config.
   26272: ALF-7578 - Add unit test for versionable ACP import, and fix the default aspect includes now that we handle versionable
   26287: Fixes ALF-7439: Prevent check on alfrescowcm component
   26290: Fixes ALF-7439: Ensure that virtual server shortcuts don't get created for Team
   26294: Fixed @since tags and some minor coding standards fixes
   26316: Fix for ALF-5084, ALF-5644 and general thumbnail improvements in the area of failing thumbnails.
   
   This check in adds extra functionality to the create-thumbnail action in order to improve how Alfresco handles failing thumbnails.
   The requirements agreed between Services & Prod Mgt were
    - When thumbnails fail we should limit how often they are retried. So the system should remember when a thumbnail has failed for a node. 
    - The retries will be initiated in the same way they are now: by users navigating to a page that asks for the thumbnail (lazy creation), primarily doclib. 
    - Retries will occur at a throttled rate (all the below parameters to be configurable by sys admin, but not yet by JMX). 
    - Initially, retries will be limited to a maximum rate e.g. 1 per minute. 
    - These retries will be allowed up to a maximum count e.g. 2 failed attempts. 
    - After that count is reached, the content will be considered "difficult" and thumbnail creation should be retried at a much reduced maximum frequency e.g. once a week 
    - Retries of difficult content shall be enabled by default, but can be disabled.
   
   This check-in adds a new aspect and a type to the content model. These hold the thumbnail failure information.
   The create-thumbnail action now has a compensating action which is run when it fails.
     AddFailedThumbnailActionExecuter decorates the content node with failure information.
   create-thumbnail now has an action-condition, which means that it will only run if a node is "eligible" for a thumbnail creation attempt.
   Eligibility is controlled by some new properties and is configurable. Default behaviour is as described above.
   
   There should be no change in behaviour for most content nodes in Alfresco.
   However, for those documents which fail to produce doclib or webpreview thumbnails - and most especially those which consume 100% cpu for some time before failing - we expect to see the same behaviour initially on upload (cpu grind as Alfresco or a 3rd party library attempts to produce a thumbnail), but that as time passes, Alfresco should prevent thumbnail creation that will likely not succeed. This should save cpu on the repo server.
   
   And tests. Of course.
   26323: Upgraded login warning to WARN_ALL when user limit reached
    - This now matches the specification document
    - ALF-6832:TR25: License restriction reporting
   26326: Merged V3.4 to V3.4-TEAM
      26142: Merged PATCHES/V3.4.0 to V3.4
         25999: ALF-7377: Validate and reject partial WebDAV requests sometimes produced by NetDrive
      26143: Merged PATCHES/V3.4.0 to V3.4
         26005: Merged V3.4-BUG-FIX to PATCHES/V3.4.0
            26002: ALF-7282 Updated NodeListConverter so that it now implements the method revert(Object, ProcessDefinition)
      26158: Merged DEV/TEMPORARY to V3.4
         26154: ALF-7571: Create Web Project wizard - Step 3
            Superfluous “cellpadding” elements were removed. Missing space was added.
      26164: ALF-6885: Changed svn:eol-style from native to LF for all .sh scripts
      26178: Merged DEV/TEMPORARY to V3.4
         26172: ALF-7601: 3.4.1 SDK WebServiceSamples multiple problems
            Configuration properties for WebServiceSamples was moved to correct place.
            Dependency to SDK AlfrescoEmbedded was added to classpath. It is required for FileCopyUtils from Spring which is used in WebServiceSamples.
      26190: Reversed 26165 / 26161 - breaks installer building
      26192: Convert TaggingServiceImplTest to use retrying transactions!
      26194: ALF-7045: AVM upgrade - re-implement AVM "rename duplicates" patch as a DB upgrade script
      26195: Update installer overlay files
      26197: Final installer updates - built and tested on OSX
      26199: Allow relocatable data for postgres - part2
      26204: Attempt to avoid intermittent unit test failures in RecordsManagementAuditServiceImplTest by adding some Thread.sleep() calls to allow for asynchronous audit behaviour
      26207: Set site notification to false on install (ALF-6181)
      26212: Merged DEV to V3.4
         26203: ALF-7605 PostgreSQL: Upgrade from 2.1.7 to 3.4.1 is failing - constraint "alf_access_control_entry_acl_id_key" does not exist
             1. The statements which are drop constraints, marked as optional
             2. The alter statements with new constraint names were added
      26256: Fixes ALF-7679: Remove webscript-framework-config-custom.xml file
      26270: License updates from Ashutosh
      26274: Fix intermittent unit test failure with retrying transaction
      26275: Possible fix to intermittent test failure.
      26295: Reduce scope of retrying transaction, in a hope of fixing TaggingServiceImplTest.testOnStartupJob()
      26303: And the prize for the largest number of retrying transactions in a single unit test goes to...
      26307: Fixes: ALF-7704: Japanese language option not appearing in dropdown box on log in page.
      26314: Another defensive sleep() in RecordsManagementAuditServiceImplTest
      26325: Moved defensive sleep() in RecordsManagementAuditServiceImplTest
   26336: Fixes ALF-7713: Prevent folder/documents from being draggable in DocLib
   26348: Fix for ALF-7751 - encode all params on new Team dynamic welcome dashlet
   26351: Removed svn:mergeinfo
   26353: ALF-7745 - Add pop-up balloon validation helper to create site dialog.
   URL Name (shortName) is now also auto-generated from the site name (siteTitle) by removing characters other than 0-9, a-z, A-Z and "-", replacing spaces with "-" and converting to lower case. Auto-generation is stopped if the user edits the URL Name field themselves and restarted if they empty the field.
   Update to Preference Service to allow "-" character in preference keys.
   26355: ALF-7743 - Increase delay on "More actions panel" in document library
   26361: ALF-7758 - Site Dashboard: Welcome widget isn't removed immediately
   26364: Updated UI Text strings following review by Linton.
   26366: Fix for ALF-7757 - Calendar agend view encoding
   26368: Fix for ALF-7739 - Click activity link for a file after DnD upload results in an error
   26369: Merged V3.4-BUG-FIX to V3.4-TEAM
      26340: Fixed ALF-6377 "Incorrect behavior of Overdue filter in My Tasks Dashlet"
   26374: Further UI text updates from Linton
   26377: Updates to ACPs as part of ALF-7382 Translate/Localise HTML email templates.
     This check in adds localisations in de, es, fr, it, ja for the following email templates:
       activities-email
       imap_message_text_html
       imap_message_text_plain
       invite-email
       new-user-email
       notify
   26381: Set site invites on by default for Team.
   26384: ALF-7733 - Data list's type isn't included for deleted activities
   26385: ALF-3709 - User Status on Profile
   26389: Merged V3.4-BUG-FIX to V3.4-TEAM
      26372: Fix for ALF-7791 - no longer spews masses of exceptions when doc details page for a missing node is displayed.
             Node Metadata retrieval service now returns valid JSON in all cases.
   26390: Fixed ALF-7689 "Team: Dashlet names don't match dashlet titles"
   26391: ALF-7718 - Handle excel files without a freezepane, eg those created by hand rather than using the friendly template
   26394: Merged V3.4-BUG-FIX to TEAM
      26392: Removed code which sets the cm:title property to the filename in the upload webscript. This was causing an unnecessary auditable update.
      26393: Line endings
   26403: Fix for ALF-7832 - Licence warning for all users on WARN_ALL
   26409: ALF-7763 - Updates to dashlets in Team following usability studies, including: presentation of "no data" made consistent. Page-level inline JavaScript wrapped in module mark-up.
   26410: Fix license location for Win installs
   26425: Fixed ALF-7726: 'Repository Descriptor (Originally Installed)' form doesn't contain Name and Edition information.
   
   Also updated the 'Heartbeat Disabled' field in the License form to use a checkbox control.
   26426: ALF-7742 - Remove title field on simple edit metadata pop-ups
   26427: ALF-7665 - Team: Duplicate Help links in toolbar
   26434: ALF-7875 - CLONE -Unable to browse into folders in Share Site
   26435: Moved of Ent/Team logos to overlays, empty logos in place
   26437: Merged HEAD to V3.4-TEAM
      24723: ALF-5799: Type-ahead functionality for tags
   26438: Merged BRANCHES/DEV/dwebster to BRANCHES/V3.4-TEAM:
      26431: Latest Spanish language Pack updates
      26429: Latest Italian language Pack updates
      26428: Latest French language Pack updates
      26422: Latest German language Pack updates
   26444: Merged V3.4-BUG-FIX to V3.4-TEAM
      26186: Improvements to tree node handling and Bubbling library following investigation for ALF-6960 and ALF-7296
      26189: (Partial merge due to refactoring) ALF-7077 - Unable to set a Repository library root node by XPATH
             Merged HEAD to V3.4-BUG-FIX
                24021: Share Repository Browser support for xpath starting location. See comments in "RepositoryLibrary" section of share-config-custom.xml.sample.
                26183: ALF-6960 - Actions "Copy to..." and "Move to..." Repository don't display the Path. ALF-7296 - Copy or Move content from a site document library to the repository do not work.
      26191: Prevent MooTools JavaScript library being compressed on every build. Added minimized file to source tree. Added target "minimize-mootools-javascript" which inserts a reminder comment to the top of the minimized file.
             Also reverted inadvertant line-endings swap in build.xml from r25479
      26282: ALF-6728 - Unable to open office documents via Share Site > Document Library > All Documents > Edit Online
             Reworked calculations around the "location" field so that the attributes within are returned more consistently.
      26297: ALF-3113 - Data Lists: Delete/duplicate multiple items should affect only selected items on current page
      26298: ALF-7609 - Items numbering in document library in Share appears quite ambiguous in case of documents with working copies
      26312: ALF-4220 - Alfresco Share - Tag component - Unable to view more than 100 tags
             Object finder-based pickers now look for "maxSearchResults" in the control params (rather than the args property bag)
   26445: Merged V3.4 to V3.4-TEAM:
      26443: Installer build updates
   26447: Merged V3.4-BUG-FIX to V3.4-TEAM
      25975: ALF-5625 - When viewing properties in version history hitting close results in loop
      26174: *Record only* Fix spring-surf library versions after merge in rev 26144
      26175: Fix for ALF-7201 - Unable to create group with other name if group identifier is already exists
      26187: Fix for ALF-7297 - Share Advanced Search does not work if the property name include a minus (or any symbol not supported by SQL92 identifier standard)
      26240: Fix for ALF-7462 - Share - User profile / Non-ASCII characters display (double encoding of user description field)
      26242: ALF-3767 - Creating account with 0 quota in Share gives unlimited quota
      26279: ALF-7682 - Fix to correctly take the 'external-auth' config setting into account when testing for login auth against the default alfresco endpoint.
      26280: Fix for ALF-7391 - In the search properties in share, repository is spelt wrong.
      26401: Fix for ALF-7428 - Share: User cannot add comment to content when the 'admin' user is not in administrator group
      26405: Fixed ALF-7224 "Share - Scrollbar issue on dashboard customization page"
   26451: Merged V3.4-BUG-FIX to V3.4-TEAM
      26399: Fix for ALF-5863 - DOCLIB: large number of tags slows doclib rendering to unusable.
             Number of tags to display in the Tags filters is now configuration and defaults to 100 items. Can be configured with value of -1 to show all tags.
   26456: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4-TEAM:
      26450: Latest Japanese language Pack updates
   26458: Merged BRANCHES/V3.4/ to BRANCHES/V3.4-TEAM:
      26417: Fixes: ALF-7414, confused and hardcoded date-formatting & date formatting translations fixed.
      26414: Fixes: ALF-7697 - Rewording the URL help text on the create site dialogue
      26413: Fixes: ALF-7765 - ensures naming consistency
   26461: Merged V3.4-BUG-FIX to V3.4-TEAM
      26243: Fixes ALF-7301: IE6 CSS updates to prevent layout corruption on datagrid
      26404: Fixes ALF-7348: Copy to/Move to width changes for IE6 & IE7
      26453: Fix unreported issue with the appearance of tags in the object finder being stacked vertically rather than horizontally for IE6 and IE7.
   26464: Merged V3.4-BUG-FIX to V3.4-TEAM
      26463: Follow-up fix to r26453 for full-page edit mode
   26465: ALF-7869 - Layout is broken if many tags are added to the item (Document Library browse view)
   26466: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4-TEAM:
      26459: Fixes incorrectly translated stirngs.
   26467: Merged V3.4-BUG-FIX to V3.4-TEAM
      26334: Fixed ALF-6289 "Contributor is absent in Permissions section at the details page" part 2 - now also on folder details page
   
   26468: Fixed bug when content size was 0, now the "Preparing previewer..." message is replaced with a message saying "This document has no content"
   26469: Fixed ALF-7744: Ensure that new options.limit gets set when updating RSS feed results
   26472: Activity list: css class for each activity type into config
   26473: Remove references to non-existent client-side "document-details.js" file
   26475: Calendar UI Bug fixes & improvements from usability feedback (inc. ALF-7592, ALF-7588, ALF-7590, ALF-7594, ALF-7589, ALF-7595, ALF-6959)
   26477: IE6/IE7 css fixes: Fix footer layout and prevent unnecessary horizontal scrollbar
   26482: Merged BRANCHES/DEV/dwebster/ to BRANCHES/V3.4-TEAM:
      26480: Latest Update from Translators via Gloria.
   26485: Fix for ALF-7728. Incorrect information at the Trash page.
     The 'archived by' as returned from the REST API was not the user who archived the node, but was instead the
     original owner of that node. This has now been corrected.
   26494: Small fix from translator
   26496: Installer NLS updates
   26498: Merged V3.4-BUG-FIX to V3.4-TEAM
      26486: Fix for ALF-7602, ALF-7734 - Incorrect behavior of groups - groups in non-default zone displayed in Share UI
   26501: Added translations for "Contributor" role.
   26506: Merge V3.4 to V3.4-TEAM:
      Fixes ALF-7735: Update to postgres.xml to make use of vcruntime on 64-bit windows (fix dependent upon additional update to ALF-BINARIES)
   26513: Merged V3.4-BUG-FIX to V3.4-TEAM
      26512: Fix for ALF-7921 - Script error occurs when is added 'Image preview' dashlet.
   26516: Fixed ALF-7791 "Clicking the activity link for a file after deleting that file results in an error"
   26517: Removed unused component files since document details page refactor
   26532: ALF-7946 - It's impossble to destinate More+ administrator menu.
   combinePaths() function reworked to maintain trailing "/" if the last argument ends with one.
   26536: ALF-7948 - IE Specific - It's impossible to download document via Download button at the details page
   26541: Fixed ALF-7868: Import site doesn't work (QA were trying a scenario that we aren't supporting, removing the old sample context file to avoid problem/confusion)
   26545: Fixed ALF-7001 "Customize site drag and drop - page item is added to end of list if quickly dragged and dropped"
   26550: Fixes: ALF-7935, typo in message string.
   26556: UI improvements and Ajax-ified performance improvements to Image Summary dashlet
   26561: Fix for ALF-7888. Sites are not recovered.
   The fix applied is to mark site nodes with the sys:temporary aspect within the SiteService in order to have them be fully deleted immediately and not go into the trashcan.
   26562: ALF-7925 - Incorrect behaviour of Categories cloud at the Document Library page
   26563: ALF-7912 - Incorrect behavior of items marked as favorite - IE specific
   26570: Update build to correct installer file names.
   26572: Team installer build tweak (added back project filename removed during merge)
   26573: Merged V3.4-BUG-FIX to V3.4-TEAM
      26564: Fix for ALF-7965 - Content page of user profile not updating properly (modified docs always shown in the recently added list)
             Improvements to show filetype icon - FreeMarker macro to mirror basic functionality of Alfresco.util.getFileIcon
   26574: ALF-7962 - Team: Create Site dialog fields aren't cleared on Cancel
   26575: ALF-7970 - Links 'Show Earlier Events/Show Later Events' don't work in IE browser
   26578: Merged V3.4 to V3.4-TEAM:
      26542: Fixes ALF-7954: Ensure that installer copies SWFTools to correct location
   26586: Added script model object "msg" helper to retrieve I18N messages for template level JS controller (mirroring the support in WebScript component JS model)
   26595: ALF-7982 - Filetype icon isn't displayed for topic's reply in activities
   26597: Fixes ALF-7845: Provide tooltip assistance when DocLib upload dialog launched from site welcome dashlet (when DnD is available)
   26605: Fixed ALF-7681 "Renames of Document Library not reflected in page title."
   26617: removed svn:mergeinfo
   26622: JMX Admin pages UX fixes:
   - The Save & Cancel buttons on the jmx admin console pages have been configured not to be displayed.
   - A a "Cancel" link is present instead. 
   - The "Operations" header has been removed
   - The "save operation" button now has an "Update" label instead of "Save"
   26625: Reduced distribution artifacts to minimum (now no E3.5 planned)
   26653: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
     26619: ALF-6244 - Creating the initial version of a node shouldn't update the Auditable properties
     26623: Add new Version Service method "ensureVersioningEnabled".
     26624: ALF-6121 + ALF-6244 - When activating lazy versioning for share, use a ScriptNode call to the Version Service
   26654: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
      26631: Improvement related to ALF-6650. Secured PDFs in Acrobat 9 fail to rendition.
   26657: Merged V3.4-BUG-FIX to V3.4-TEAM
      26655: Add parameter comments around ensureVersioningEnabled() function call.
   26660: Fixes ALF-7955: Update error message when dropping zero byte size files or folders into doc lib
   26662: Merged V3.4-BUG-FIX to V3.4-TEAM
      26661: ALF-8053 - Document Library is attempting to create thumbnails for types that are not subtypes of cm:content. Also prevent thumbnail webscripts from attempting to generate thumbnails for in the same cases.
   26665: Fixed ALF-8042 "Renamed page component reverts to default name when moved (Customize Site page)"
   26673: Merged V3.4-BUG-FIX to V3.4-TEAM
      26672: Consolidate multiple occurrences of "#yui-history-iframe" style into base.css
   
   Also fixed markup issue in console-tools that was confusing MSIE browsers.
   26676: Additional fix for ALF-7687 "Ability to use wild character in People search - Should add configuration to allow zero characters for all search in Team config."
   - start workflow component now picks up global min & max search length config
   26677: ALF-8019 - Delete folder window has incorect name
   26678: Merged V3.4-BUG-FIX to TEAM
      26383: Fixed ALF-7692: Non-admin users can move content into Company Home
      26430: More ALF-7692: Non-admin users can move content into Company Home
      - Handles duplicate ALF-7923
   26679: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
      26439: Probable fix for ALF-7482. Custom ImageMagick parameters not being accepted on Linux Alfresco server.
   
   26680: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
      26474: Fix for ALF-6730 Preview and thumbnails are not update with new revision of the document is uploaded.
          Added a compensating action to ensure that renditions are deleted when re-renditions fail on new content.
   26682: Merged BRANCHES/DEV/V3.4-BUG-FIX to BRANCHES/V3.4-TEAM:
      26675: Fix for ALF-7334 Could not upload new Version all Dokuments.
            Issue was resolved by adding "RunAs System" boilerplate to the few places that load (and in the case of the WQS, delete) rendition definitions.
            We purposely did not add this boilerplate within the RenditionServiceImpl.loadRenditionDefiition() method as we want to retain effective permission controls for normal client code.
            Added some javadoc to highlight the permissions issues involved.
            I also took the opportunity to add a convenience method to the RenditionService, namely render(NodeRef, QName) which will allow client code to execute built-in rendition definitions (e.g. thumbnails) without worrying about permissions on Data Dictionary. That method wraps the equivalent render(NodeRef, RenditionDefinition) in a RunAs System.
   
   26685: Fixed ALF-7880 "Download version form version history shows incorrect document name"
   26688: ALF-7919 - Use 'Properties' instead of 'Metadata' in actions, titles etc.
   26690: Partial fox for ALF-8014. thumbnail and file type aren't generated for *.eps files
     A placeholder 'doclib' icon is now available for .eps files.
   26697: ALF-7004: TR28: Create HTML email templates (Implemented Linton's richer HTML email template design)
   
   Also removed the timestamp from the email subject for the Activities email as the timestamp is now within the body of the email.
   
   NOTE: You need to start with a clean database in order to see the new templates.
   26698: Build fix since label change of Start operation button in admin console (JMX) forms.
   26699: Fixed ALF-7886 "Click here to Download gives incorrect document name"
   26700: Fixed ALF-7801 "Incorrect hint for Upload new version action in Versions pane"
   26702: Fixed ALF-7857 "Team: Inconsistency between DocLib action and tooltip text"
   26703: Fixes ALF-7762: Add tooltips to dashlet toolbar actions
   26704: Fix for ALF-7785 - Agenda View doesn't always update list after Edit/Delete of an item
   26708: Merged V3.4-BUG-FIX to TEAM
      26664: Fix build (DOD5015 security context and test refactor)
   26709: Slight reworking (and rewording) of the tooltip on the upload dialogs when drag and drop is available (the "#upload" use case)
   26710: Move style fixes into IE specific CSS files to avoid breaking layout on other browsers
   26712: Merged V3.4-BUG-FIX to V3.4-TEAM
      26711: ALF-3833 - Share - Phrase tags
   26714: ALF-8081 - W3C: a highlighting of drop-down menu (Sites, People) in toolbar is invisible in Safari.
   26715: Tweak to imagesummary dashlet node cloning performance
   26716: ALF-8082 - W3C: it's impossible to select a lot of links in Safari
   ALF-8083 - W3C: it's impossible to select Site Pages in Safari
   26718: Fixes for ALF-7874, ALF-8012 - Mimetype map additions, filetype icons.
   - also replaced worlds-largest if-else freemarker statement with inline map for Forms mimetype lookup
   26719: Further fix for ALF-8014. Thumbnail and filetype not generated for *.eps files.
     I've added a -file-48.png for the .eps mimetype.
     I copied it from one of the other image -48.png files as they're all generic 'img' icons anyway.
   26721: Fix for ALF-7963 Team: Can edit another user's email notification settings
   26722: Collapsed/expanded state of Properties panel wasn't being remembered on Details page. Removed "collapsed" parameter for Alfresco.util.createTwister which won't work with our current implementation. Pre-empted "alfresco-twister" class for slow-loading components.
   26723: Changed component initialisation event from onContentReady to onAvailable which should improve appearance/decoration times slightly.
   26724: ALF-8089 - W3C: a highlighting of "Show Earlier Events" and "Show Later Events" links in toolbar is invisible in Safari
   26731: ALF-8095 - Error shown after clicking the accept or reject link in a site invitation email
   26733: Merged V3.4 to V3.4-TEAM
      26530: Fixes ALF-7949: Remove service script on uninstall
      26610: Fix for: ALF-8007: Lucene index not coherent or not up to date or we can not rely on it to check that a working copy exist.
   26734: Merged V3.4 to V3.4-TEAM (RECORD ONLY)
      25971: ALF-7441: Help URLs pointing to new doc system (1 of 2)
      25972: ALF-7441: Help URLs pointing to new doc system (2 of 2)
      25980: Merged V3.4-BUG-FIX to V3.4
         25978: ALF-7394 - Alfresco Network dashlet, now Alfresco Support information
      26056: Merged V3.4-TEAM to V3.4
         26053: Added in loop to wait for asynchronous post-failure auditing (ALF-3055)
      26100: Merged V3.4-TEAM to V3.4
         25985: Another cycle of fixing installer from Win builds.  Still waiting for official fix from Bitrock.
         26067: Fixes for installer builds on Windows
      26127: Merged V3.4-TEAM to V3.4
         26120: Fix postgres.bki on Win builds
      26165: Merged V3.4-TEAM to V3.4
         26161: Fix full installer.
   26737: Google Docs: Added better handling of unsupported mimetypes
   
     * Meaningful exception raised when mimetype unsupported by GDoc (rather then non-specific error from google)
     * Message not reflected in UI, but log contains details of failure
   
   26738: Clarified browser relevance for "in-memory-limit" config parameter following ALF-8093 being raised.
   26740: Quick build fix following Google Docs updates in r26737
   26741: Build Fix
     * Added missed exception class
     * backout previous fixes
   
   26746: Fixed ALF-8080 "WebM playback not working for Team and Chrome"
   26750: Prettifying the delete url for comments to avoid two ampersands following each other, i.e: "&&". This is NOT a fix for deleting content with "%" in the name.
   26753: Fixed ALF-7807 "It's possible to rename component with spaces"
   26756: ALF-8102 - Edit Properties, Edit tags, Manage permissions, Start workfow icons are not visible - IE 7 specific
   26758: ALF-8106 - "Go Back" button doesn't work on the "User Profile" page
   26763: Fixes: ALF-7815 - Added .ics extension and site name to downloaded file.
   26779: Merged V3.4 to V3.4-TEAM
     26760 : Enterprise unlimited licenses get invalidated turning the system into read-only mode
   26782: Fixed ALF-7001 "Customize site drag and drop - page item is added to end of list if quickly dragged and dropped"
   26784: Minor height adjustment to "My Documents" dashlet on first use
   26786: Correction to merge 26779


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@26795 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2011-04-11 19:26:26 +00:00

2131 lines
114 KiB
Properties
Executable File

# I18N message properties
empty_message=
left_qoute='
right_quote='
# Multilingual
make_multilingual=Imposta come multilingue
make_multilingual_tooltip=Imposta questo documento come multilingue
make_multilingual_description=Trasformare questo documento in un file multilingue.
error_make_multilingual_dialog=Impossibile impostare questo file come multilingue.
add_translation=Aggiungi traduzione
add_translation_tooltip=Aggiunge una traduzione a questo documento
add_translation_description=Aggiungere una traduzione al documento.
error_add_translation_dialog=Impossibile aggiungere una traduzione.
trad_exists_error=Esiste gi\u00e0 una traduzione per queste impostazioni locali.
add_translation_wc=Aggiungi traduzione senza contenuto
add_translation_wc_tooltip=Aggiunge una traduzione senza contenuto al documento
add_translation_wc_description=Aggiungere una traduzione alle propriet\u00e0 del documento.
error_add_translation_wc_dialog=Impossibile aggiungere una traduzione senza contenuto.
ml_common_content_properties=Propriet\u00e0 di contenuto multilingue comuni
ml_other_options=Altre opzioni
ml_add_trans_when_diag_close=Aggiungi traduzione alla chiusura della finestra di dialogo.
ml_with_content=Con contenuto
ml_just_trans_info=Senza contenuto (solo informazioni sulla traduzione)
not_multilingual=Questo documento non dispone di un aspetto multilingue.
allow_multilinguism=Consenti aspetto multilingue
select_language=<Seleziona una lingua>
ml_content_info=Info contenuto multilingue
edit_ml_container_properties=Modifica propriet\u00e0 di contenuto multilingue
edit_ml_container_description=Modificare le informazioni sul contenuto multilingue.
error_locale_null=\u00c8 necessario definire le impostazioni locali per questo nodo.
translator=Traduttore
manage_multilingual_details_for=Gestisci contenuto multilingue per
manage_multilingual_details=Gestisci contenuto multilingue
manage_multilingual_details_tooltip=Consente di gestire le propriet\u00e0 multilingue del documento
manage_multilingual_details_description=Utilizzare questa pagina per gestire il contenuto multilingue.
translations=Traduzioni
related_translations=Traduzioni correlate
related_content=Contenuto correlato
deep_copy=Copia completa
new_edition=Nuova edizione
new_edition_from=Nuova edizione da questa
new_edition_tooltip=Crea una nuova edizione a partire da questo contenuto multilingue.
properties_close=Modifica propriet\u00e0 multilingue alla chiusura della finestra di dialogo
pivot_translation=Traduzione pivot
edition=Edizione
editions=Edizioni
current=Attuale
new_edition_wizard_title=Assistente Nuova edizione
new_edition_wizard_desc=Questo assistente consente di creare una nuova edizione di un documento multilingue.
error_new_edition_wizard=Impossibile creare una nuova edizione di questo documento multilingue.
step1_choose_translation=Elemento iniziale
step1_choose_translation_desc=Passo uno, selezionare l'elemento iniziale dall'elenco di traduzioni
new_edition_choose_translation_title=Passo uno - Elemento iniziale
new_edition_choose_translation_desc=Scegliere l'elemento di contenuto da cui creare la nuova edizione.
step2_edition_details=Dettagli edizione
step1_edition_details_desc=Passo uno, modificare i dettagli della nuova edizione
step2_edition_details_desc=Passo due, modificare i dettagli della nuova edizione
step1_new_edition_details_title=Passo uno - Dettagli edizione
step2_new_edition_details_title=Passo due - Dettagli edizione
new_edition_details_desc=Immettere le informazioni sulla nuova edizione.
step3_edition_summary=Sommario
step2_edition_summary_desc=Passo due, esaminare il sommario della nuova edizione
step3_edition_summary_desc=Passo tre, esaminare il sommario della nuova edizione
step2_new_edition_summary_title=Passo due - Sommario
step3_new_edition_summary_title=Passo tre - Sommario
new_edition_summary_desc=Di seguito sono mostrate le informazioni immesse.
new_edition_finish_instruction=Per chiudere l'assistente e applicare i cambiamenti, scegliere Fine.
edition_properties=Propriet\u00e0 edizione
edition_notes=Note sull'edizione
modify_translation_properties=Modifica propriet\u00e0 traduzione alla chiusura dell'assistente.
translation_title=Titolo traduzione
translation_language=Lingua traduzione
translation_author=Autore traduzione
new_edition_details=Dettagli nuova edizione
create_new_edition_using=Crea una nuova edizione usando
translations_checked_out_error=Impossibile creare una nuova edizione perch\u00e9 le traduzioni seguenti sono sottoposte a Check Out.
available_translations=Traduzioni disponibili
marker_tooltip=Consente di cambiare la lingua del contenuto per vedere o modificare il testo in lingue diverse.
checked_out_by=Sottoposto a Check Out da
doc_name=Nome documento
title_mlcontainer_details=Dettagli documento multilingue
# Versioning of the metadata
versioned_details_of=Dettagli con versione di
versioned_documentdetails_description=Esaminare i dettagli del contenuto con versione.
title_versioned_doc_details=Dettagli documento con versione
view_versioned_properties=Propriet\u00e0 di un contenuto con versione
view_versioned_properties_description=Esaminare le propriet\u00e0 di un contenuto con versione.
# Date Pattern
date_pattern=d MMMM yyyy
date_time_pattern=d MMMM yyyy HH:mm
time_pattern=HH:mm
# General UI
product_name=Alfresco
view_description=Questa vista consente di esplorare gli elementi in questo spazio.
search_description=Questa vista consente di vedere i risultati della ricerca.
checkinfile_description=Eseguire il Check In della copia di lavoro per consentire ad altri membri del team di utilizzarla.
checkoutfilelink_description=Modificare il file sottoposto a Check Out, annullare il Check Out o continuare a lavorare.
checkoutfile_description=Immettere le informazioni sul Check Out.
doneediting_description=Terminare le modifiche della copia di lavoro per consentire ad altri membri del team di utilizzarla.
documentdetails_description=Esaminare i dettagli del contenuto.
linkdetails_description=Esaminare i dettagli dell'oggetto del link.
previewdocument_description=Esaminare l'anteprima del contenuto o dello spazio all'interno di un modello.
spacedetails_description=Esaminare i dettagli dello spazio.
undocheckoutfile_description=Annullare il Check Out di un documento e scartare tutti i cambiamenti.
cancel_editing_file_description=Annullare la modifica di un documento e scartare tutti i cambiamenti.
updatefile_description=Aggiornare un documento nel repository in base al contenuto presente nel computer in uso.
editfile_description=Modificare il contenuto del file.
editfileinline_description=Modificare il contenuto del documento, quindi scegliere Salva.
createfile_description=Immettere il nuovo contenuto.
manageusers_description=Gestire gli utenti del repository.
manage_invited_users_description=Gestire i permessi concessi agli utenti che accedono allo spazio.
manage_content_users_description=Gestire i permessi concessi agli utenti che accedono al contenuto.
modify_user_roles_description=Modificare i permessi concessi a un utente per l'accesso allo spazio.
modify_content_user_roles_description=Modificare i permessi concessi a un utente per l'accesso al contenuto.
advancedsearch_description=Eseguire una ricerca pi\u00f9 dettagliata del repository.
edit_content_description=Modificare le propriet\u00e0 di contenuto, quindi scegliere OK.
view_content_description=Esaminare le propriet\u00e0 di contenuto.
editcategory_description=Impostare la categoria del documento, quindi scegliere OK.
editcategory_space_description=Impostare la categoria dello spazio, quindi scegliere OK.
editworkflow_description=Modificare le propriet\u00e0 del workflow semplice, quindi scegliere OK.
editspace_description=Modificare le propriet\u00e0 dello spazio, quindi scegliere OK.
editlink_description=Modificare le propriet\u00e0 dell'oggetto del link, quindi scegliere OK.
create_space_description=Immettere le informazioni sul nuovo spazio, quindi scegliere Crea spazio.
space_rules_description=Questa vista mostra tutte le regole da applicare al contenuto in questo spazio.
warning_inline=Si consiglia di utilizzare questa vista solo per documenti HTML o di testo normale.
categories_description=Questa vista consente di esplorare e modificare la gerarchia delle categorie.
new_category_description=Immettere le informazioni sulla nuova categoria, quindi scegliere Crea categoria.
status_message_default=Nessun messaggio.
no_icons_found=Nessuna icona trovata
required_field=Campo richiesto
no_data=--
# Download document
download_doc=Download
# Offline editing
click_here= scegliere qui
offline_help=Per aiuto sulla modifica offline
offline_download_first=Se il download del documento non viene avviato entro
offline_download_second=secondi
offline_download_auto_change=Per evitare che il download dei file venga avviato automaticamente quando si seleziona la modifica offline
offline_download_not_started=Se il download del documento non \u00e8 stato avviato
offline_editing=Modifica offline
offline_title=Download di ''{0}'' per la modifica offline.
# UI Component messages
done=Fatto
yes=S\u00ec
no=No
error=Errore
no_not_now=Non ora
kilobyte=KB
megabyte=MB
gigabyte=GB
locked_you=Elemento bloccato dall'utente attuale
locked_user=Elemento bloccato da {0,choice,0#SHOULD_NOT_HAPPEN|1#user|1<users}
wizard_errors=Correggere gli errori riportati di seguito.
last_page=Ultima pagina
next_page=Prossima pagina
prev_page=Pagina precedente
first_page=Prima pagina
page_info=Pagina {0} di {1}
go_up=Torna su
ok=OK
go=Vai
to=A
from=Da
options=Opzioni
other_options=Altre opzioni
local=Locale
inherited=Ereditato
search=Cerca
advanced_search=Ricerca avanzata
value_not_set=non impostato
description_not_set=Nessuna descrizione impostata.
clear=Cancella risultati
results_contains=Risultati per ''{0}''.
results_contains_filter=Risultati per ''{0}'' in ''{1}''.
details_view=Vista dettagli
view_icon=Vista icone
view_browse=Vista esplorazione
create_options=Crea
more_options=Segue...
more_actions=Altre azioni
more_options_space=Altre azioni per questo spazio
more_options_file=Altre azioni per questo documento
select_space_prompt=Scegliere qui per selezionare uno spazio
select_existing_space_prompt=Scegliere qui per selezionare uno spazio esistente
select_home_space_prompt=Scegliere qui per selezionare la posizione dello spazio di homepage
select_category_prompt=Scegliere qui per selezionare una categoria
select_destination_prompt=Scegliere qui per selezionare la destinazione
select_web_project_folder=Scegliere qui per selezionare una cartella del progetto web
add_new=Aggiungi nuovo
change=Cambia
select=Seleziona
set=Imposta
no_categories_applied=A questo documento non \u00e8 ancora stata applicata alcuna categoria.
has_following_categories=A questo documento sono state applicate le categorie seguenti...
no_categories_applied_space=A questo spazio non \u00e8 ancora stata applicata alcuna categoria.
has_following_categories_space=A questo spazio sono state applicate le categorie seguenti...
moved=spostato
copied=copiato
clipboard=Appunti
node_added_clipboard=\u00c8 stato aggiunto un elemento agli appunti. Gli appunti contengono ora {0} elemento/i. Per incollare tutti gli elementi presenti, passare allo spazio desiderato, quindi nel menu in ''Altre azioni'' selezionare ''Incolla tutto''.
recent_spaces=Spazi recenti
shortcuts=Scorciatoie
company_home=Homepage dell'azienda
my_home=La mia homepage
guest_home=Homepage dell'ospite
new_search=Nuova ricerca
search_results=Risultati della ricerca
search_detail=Di seguito sono mostrati i risultati della ricerca di \"{0}\"
close_search=Chiudi ricerca
browse_spaces=Sfoglia spazi
browse_content=Elementi di contenuto
location=Localit\u00e0
toggle_shelf=Nascondi o mostra la barra laterale
actions=Azioni
view=Vedi
view_details=Vedi dettagli
view_details_file=Vedi dettagli del file
change_details=Cambia dettagli
update=Aggiorna
download=Download
cut=Taglia
copy=Copia
paste=Incolla
remove=Rimuovi
change_roles=Cambia ruoli
change_user_roles=Cambia ruoli utente
paste_item=Incolla elemento
paste_link=Incolla come link
paste_all=Incolla tutto
remove_item=Rimuovi elemento
remove_all=Rimuovi tutto
close=Chiudi
invite=Invita
invite_user=Invita utente
filter_contents=Filtra contenuto
users=Utenti
groups=Gruppi
resetall=Reset tutto
content_rules=Regole di contenuto
view_in_browser=Vedi nel browser
view_in_webdav=Vedi in WebDAV
view_in_cifs=Vedi in CIFS
download_content=Download contenuto
details_page_bookmark=URL pagina di dettagli
details_browse_bookmark=URL pagina di esplorazione
noderef_link=Riferimento nodo Alfresco
links=Link
create_shortcut=Crea scorciatoia
navigation=Navigazione
next_item=Prossimo elemento
previous_item=Elemento precedente
cancel=Annulla
upload=Carica
homespace=Spazio di homepage
network_folder=Apri cartella di rete
other_action=Esegui azione
information=Informazioni
move=Sposta
type=Tipo
tag=Tag
encoding=Codifica
aspect=Aspetto
workflow=Workflow
workflows=Workflow
rules=Regole
system_error=Errore di sistema
login=Login
templates=Modelli
template=Modello
rss_template=Modello RSS
select_button=Seleziona...
select_items=Seleziona elementi
select_an_item=Seleziona un elemento
selected_items=Elementi selezionati
add_to_list_button=Aggiungi all'elenco
none=Nessuno
no_selected_items=Nessun elemento selezionato.
search_select_item=Cerca e seleziona un elemento.
search_select_items=Cerca e seleziona pi\u00f9 elementi.
search_minimum=Le informazioni immesse non sono sufficienti per eseguire una ricerca. \u00c8 necessario immettere almeno un valore o selezionare una posizione in cui eseguire la ricerca. I campi di testo richiedono almeno {0} caratteri.
filter=Filtra
choose_icon=Scegli icona
security=Sicurezza
all_formats=Tutti i formati
rules_count=Numero di regole applicate a questo spazio
working_copy_document=Copia di lavoro
copy_of=Copia di
link_to=Collega a
icon=Icona
lock=Blocca
unlock=Sblocca
items_per_page=Elementi per pagina
raise_issue=Segnala un problema
click_to_set_date=Scegliere per impostare una data
today=Oggi
reset=Reset
label=Etichetta
edit_doc_offline=Modifica offline
edit_doc_online=Modifica online
upload_new_version=Carica nuova versione
checkin_this_file=Check In file
cannot_delete_node_has_working_copy=Impossibile eliminare il file \"{0}\" perch\u00e9 dispone di una copia di lavoro associata.
unknown=Sconosciuto
picker_search_min=Immettere almeno {0} caratteri per eseguire una ricerca.
locked=Bloccato
no_task_resources=Nessuna risorsa per il compito
# Properties
username=Nome utente
joindate=Data di partecipazione
roles=Ruoli
help=Aiuto
name=Nome
password=Password
confirm=Conferma
path=Percorso
description=Descrizione
created=Creato
modified=Modificato
created_date=Data di creazione
modified_date=Data di modifica
size=Dimensioni
title=Titolo
author=Autore
date=Data
mimetype=Formato
modifier=Modificatore
locale=Impostazioni locali
quota=Quota
sizeCurrent=Uso
sizeQuota=Quota
start_date=Data di inizio
percent_completed=Percentuale di completamento
# Repo permission display labels
# Note - these come from the server, the english translation is generally the same
Administrator=Amministratore
Consumer=Consumatore
Coordinator=Coordinatore
Collaborator=Collaboratore
Contributor=Contributore
Editor=Redattore
All=Tutti
ContentManager=Manager contenuto
ContentPublisher=Editore contenuto
ContentContributor=Contributore contenuto
ContentReviewer=Esaminatore contenuto
edit_details=Modifica dettagli
# Actions
delete=Elimina
edit=Modifica
checkin=Check In
checkout=Check Out
done_editing=Modifica completata
checkout_document=Check Out documento
undocheckout=Annulla Check Out
cancel_editing=Annulla modifica
delete_space=Elimina spazio
delete_file=Elimina file
delete_rule=Elimina regola
delete_user=Elimina utente
remove_user=Rimuovi utente
create_space=Crea spazio
add_content=Aggiungi contenuto
create_content=Crea contenuto
create_form=Crea modulo
edit_form=Modifica modulo
create_web_form=Crea modulo web
edit_web_form=Modifica modulo web
regenerate_renditions=Rigenera trasformazioni
add_multiple_files=Aggiungi file multipli
import_directory=Directory di importazione
advanced_space_wizard=Assistente Spazio avanzato
create_rule=Crea regola
reapply_rules=Riapplica regole nello spazio
reapply_rules_to_children=Riapplica regole nello spazio e nei figli
reapply_rules_success=Le regole sono state riapplicate.
ignore_inherited_rules=Ignora regole ereditate
include_inherited_rules=Includi regole ereditate
inherited_rules_being_ignored=Le regole ereditate vengono ignorate.
manage_rules=Gestisci regole di contenuto
manage_users=Gestisci utenti di sistema
manage_groups=Gestisci gruppi di utenti
manage_invited_users=Gestisci utenti spazio
manage_content_users=Gestisci utenti contenuto
modify_user_roles=Modifica ruoli utente per
modify=Modifica
logout=Logout
add=Aggiungi
node_browser=Browser nodi
reset_config=Reset servizio configurazione
save=Salva
user_details=Dettagli utente
language=Lingua
export=Esporta
export_title=Esporta {0}
import=Importa
import_title=Importa {0}
take_ownership=Assumi propriet\u00e0
return_ownership=Restituisci al pool
create_forums=Crea spazio forum
create_forum=Crea forum
create_topic=Crea argomento
create_post=Crea post
create_reply=Posta risposta
delete_forums=Elimina spazio forum
delete_forum=Elimina forum
delete_topic=Elimina argomento
delete_post=Elimina post
post_to_topic=Posta nell'argomento
reply=Rispondi
edit_post=Modifica post
reply_to=Rispondi a
post_reply=Posta risposta
view_content=Vedi contenuto
# Login page message
login_details=Immetti dettagli login
login_err_password_length=La password deve avere una lunghezza compresa tra {0} e {1} caratteri.
login_err_password_chars=La password pu\u00f2 contenere solo caratteri o cifre.
login_err_username_length=Il nome utente deve avere una lunghezza compresa tra {0} e {1} caratteri.
login_err_username_chars=Il nome utente pu\u00f2 contenere solo caratteri o cifre.
login_err_permissions=L'utente non dispone di permessi sufficienti per vedere l'elemento, eseguire il login come un altro utente.
loggedout_details=\u00c8 stato eseguito il logout da Alfresco.
relogin=Ripeti login ad Alfresco
no_access=L'utente non dispone dell'accesso ad Alfresco.
no_cookies=Affinch\u00e9 il client web Alfresco funzioni correttamente, \u00e8 necessario che i cookie siano abilitati nel browser.
user_err_user_name=L''ID utente non pu\u00f2 contenere i caratteri seguenti: {0}
# Browse list messages
no_space_items=Nessun elemento da visualizzare. Scegliere l''azione ''{0}'' per creare uno spazio.
no_content_items=Nessun elemento da visualizzare. Per aggiungere un documento esistente, scegliere l''azione ''{0}''. Per creare un file HTML o di testo normale, scegliere l''azione ''{1}''.
# Advanced Search messages
look_in=Cerca nella posizione
look_for=Cerca
all_spaces=Tutti gli spazi
specify_space=Specifica spazio
include_child_spaces=Includi spazi figlio
show_results_for=Mostra risultati per
all_items=Tutti gli elementi
file_names_contents=Nomi di file e contenuto
file_names=Solo nomi di file
space_names=Solo nomi di spazio
show_results_categories=Mostra risultati nelle categorie
include_sub_categories=Includi sottocategorie
also_search_results=Altre opzioni di ricerca
additional_options=Opzioni aggiuntive
save_new_search=Salva nuova ricerca
save_edit_search=Salva ricerca modificata
saved_searches=Le mie opzioni di ricerca salvate
title_save_search=Salva query di ricerca
save_search_description=Salva una query di ricerca per un successivo utilizzo
search_props=Propriet\u00e0 di ricerca salvate
select_saved_search=Seleziona una ricerca salvata...
saved_search_warning=Questa operazione tenter\u00e0 di sovrascrivere la ricerca salvata esistente ''{0}''
user_searches=Le mie ricerche
global_searches=Ricerche pubbliche
save_search_global=Salva una ricerca come pubblica per renderla disponibile a tutti gli utenti.
folder_type=Tipo di cartella
# Forum messages
forums=Spazio forum
forum=Forum
browse_forums=Sfoglia spazi forum e forum
browse_topics=Sfoglia argomenti
browse_posts=Sfoglia post
forums_info=Questa vista consente di esplorare gli spazi di forum e i forum.
forum_info=Questa vista consente di esplorare gli argomenti di questo forum.
topic_info=Questa vista consente di esplorare i post di questo argomento.
no_forums=Nessuno spazio di forum o forum da visualizzare. Scegliere l''azione ''Crea spazio forum'' per creare uno spazio di forum oppure l''azione ''Crea forum'' per creare un forum.
no_topics=Nessun argomento da visualizzare. Scegliere l''azione ''Crea argomento'' per creare un argomento.
no_posts=Nessun post da visualizzare. Scegliere l''azione ''Posta nell''argomento'' per creare un post.
topic=Argomento
topics=Argomenti
post=Posta
posted=Postato
create_forums_description=Immettere le informazioni sul nuovo spazio di forum, quindi scegliere Crea spazio forum.
create_forum_description=Immettere le informazioni sul nuovo forum, quindi scegliere Crea forum.
create_topic_description=Immettere le informazioni sul nuovo argomento, quindi scegliere Crea argomento.
create_post_description=Immettere il contenuto del messaggio, quindi scegliere Posta.
create_reply_description=Immettere il testo del messaggio, quindi scegliere Rispondi.
modify_forums_properties=Modifica propriet\u00e0 spazio forum
forums_props=Propriet\u00e0 spazio forum
modify_forum_properties=Modifica propriet\u00e0 forum
forum_props=Propriet\u00e0 forum
topic_props=Propriet\u00e0 argomento
modify_topic_properties=Modifica propriet\u00e0 argomento
create_forums_finish=Per creare lo spazio di forum, scegliere Crea spazio forum.
create_forum_finish=Per creare il forum, scegliere Crea forum.
create_topic_finish=Per creare l'argomento, scegliere Crea argomento.
create_post_finish=Per creare il post, scegliere Posta.
create_reply_finish=Per creare la risposta, scegliere Rispondi.
forums_details_description=Esaminare i dettagli dello spazio di forum.
forum_details_description=Esaminare i dettagli del forum.
topic_details_description=Esaminare i dettagli dell'argomento.
bubble_view=Vista fumetti
replies=Risposte
on=Il
reply_message=Messaggio di risposta
edit_forums_description=Modificare le propriet\u00e0 dello spazio di forum, quindi scegliere OK.
edit_forum_description=Modificare le propriet\u00e0 del forum, quindi scegliere OK.
edit_topic_description=Modificare le propriet\u00e0 dell'argomento, quindi scegliere OK.
edit_post_description=Modificare il messaggio, quindi scegliere OK.
edit_post_finish=Per salvare il messaggio, scegliere Posta.
start_discussion=Inizia discussione
discuss=Vedi discussioni
discussion_for=Discussione {0}
# Sidebar messages
navigator=Navigatore
navigator_desc=Consente di spostarsi tramite la struttura ad albero all'interno del repository
shelf=Scaffale
shelf_desc=Area contenente gli appunti, gli spazi recenti e le scorciatoie
reset_navigator=Aggiorna
navigator_node_deleted=Lo spazio selezionato non \u00e8 pi\u00f9 presente nel repository, aggiornare il Navigatore prima di continuare.
# Common Wizard messages
steps=Passi
summary=Sommario
summary_desc=Di seguito sono mostrate le informazioni immesse.
default_instruction=Per continuare, scegliere Continua.
next_button=Continua
back_button=Torna
finish_button=Fine
cancel_button=Annulla
clear_button=Cancella
you_may_want=\u00c8 consigliabile
summary_step_description=Mostra un sommario delle informazioni immesse.
error_wizard_completed_already=Questo assistente \u00e8 gi\u00e0 stato completato. Per continuare, \u00e8 necessario riavviarlo.
you_may_want_checkout_document=\u00c8 consigliabile eseguire il Check Out di questo documento per evitare che altri utenti possano sovrascrivere i cambiamenti.
# Category Management messages
title_categories_list=Categorie
add_category=Aggiungi categoria
edit_category=Modifica categoria
delete_category=Elimina categoria
category_icons=Categorie
category_details=Dettagli
category_management=Gestione categorie
title_create_category=Crea nuova categoria
new_category=Nuova categoria
category_props=Propriet\u00e0 categoria
items=Elementi
title_delete_category=Elimina categoria
delete_category_warning=A questa categoria sono collegati {0} documenti esistenti.
delete_category_info=Per rimuovere questa categoria e tutte le relative sottocategorie, scegliere Elimina.
delete_category_confirm=Eliminare la categoria \"{0}\" e tutte le relative sottocategorie?
title_edit_category=Modifica categoria
edit_category_description=Modificare le informazioni di questa categoria.
# Groups Management messages
title_groups_list=Gestione gruppi
groups_management=Gestione gruppi
groups_description=Gestire i membri di un gruppo, creare nuovi gruppi o rimuovere gruppi esistenti.
new_group=Crea gruppo
new_sub_group=Crea sottogruppo
edit_group=Modifica gruppo
delete_group=Elimina gruppo
add_user=Aggiungi utente
group_icons=Gruppi
group_details=Dettagli
root_groups=Gruppi radice
group_filter_children=Figli
group_filter_all=Tutti
title_create_group=Crea gruppo
new_group_description=Immettere le informazioni sul nuovo gruppo, quindi scegliere Crea gruppo.
group_props=Propriet\u00e0 gruppo
identifier=Identificativo
create_group_warning=L'identificativo di un gruppo non pu\u00f2 essere cambiato dopo che \u00e8 stato impostato.
title_delete_group=Elimina gruppo
delete_group_warning=A questo gruppo sono associati {0} sottogruppo/i o utente/i.
delete_group_info=Per eliminare questo gruppo dal sistema e rimuovere tutti i membri in esso contenuti, scegliere Elimina.
delete_group_confirm=Una volta rimosso dal sistema, il gruppo non sar\u00e0 pi\u00f9 accessibile. Eliminare il gruppo \"{0}\" e rimuovere tutti gli utenti in esso contenuti?
title_add_user_group=Aggiungi utente a gruppo
add_user_group_description=Aggiungere un utente esistente a un gruppo
select_users=Seleziona utenti da aggiungere a questo gruppo
selected_users=Utenti selezionati
groups_err_group_name_length=L''ID gruppo deve avere una lunghezza compresa tra {0} e {1} caratteri.
groups_err_group_name=L''ID gruppo non pu\u00f2 contenere i caratteri seguenti: {0}
groups_err_exists=Esiste gi\u00e0 un ID gruppo con lo stesso nome. Gli identificativi dei gruppi devono essere unici.
Read=Lettura
Write=Scrittura
Delete=Elimina
permission=Permesso
permissions=Permessi
manage_permissions_title=Gestisci permessi per ''{0}''
manage_permissions_subtitle=Gestire i permessi concessi agli utenti che accedono alla cartella o al file.
manage_permissions=Gestisci permessi
view_permissions=Vedi permessi
set_permissions=Imposta permessi
change_permissions=Cambia permessi
set_permissions_title=Impostazione permessi per ''{0}''
set_permissions_subtitle=Questa finestra di dialogo consente di concedere ad altri utenti l'accesso alla cartella o al file
select_usersgroups_perms=Seleziona utente/gruppo con relativi permessi
selected_usersgroups_perms=Utenti/gruppi selezionati con relativi permessi
remove_permissions_title=Rimuovi utente ''{0}''
remove_permissions_subtitle=Per rimuovere tutti i permessi dell'utente, scegliere S\u00ec.
remove_permissions=Rimuovere tutti i permessi dell'utente?
edit_permissions_title=Modifica permessi per ''{0}''
view_permissions_title=Vedi permessi per ''{0}''
edit_permissions_subtitle=Modificare i permessi concessi a un utente per l'accesso alla cartella o al file.
view_permissions_subtitle=I permessi concessi a un utente per l'accesso alla cartella o al file.
select_perm=Seleziona permesso
selected_perm=Permesso selezionato
change_user_perms=Cambia permessi utente
# Invite Users Wizard messages
invite_title=Assistente Invita utenti
invite_desc=Questo assistente consente di concedere ad altri utenti l'accesso allo spazio.
invite_step1_title=Passo uno - Invita utenti
invite_step1_desc=Selezionare gli utenti e i ruoli di cui disporranno in questo spazio.
invite_step2_title=Passo due - Notifica utenti
invite_step2_desc=Inviare una notifica agli utenti selezionati.
i_want_to=Azione...
invite_step_1=Invita utenti
invite_step_2=Notifica utenti
invite_all=Invita tutti gli utenti come ospiti
invite_users=Specifica utenti/gruppi con relativi ruoli
specify_usersgroups=Specifica utenti/gruppi
select_usersgroups=Seleziona utente/gruppo con relativi ruoli
select_role=Seleziona ruolo
selected_usersgroups=Utenti/gruppi selezionati con relativi ruoli
selected_roles=Ruoli selezionati
click_add=Scegliere Aggiungi
role=Ruolo
send_email=Inviare un messaggio e-mail di notifica agli utenti invitati?
subject=Oggetto
body=Corpo
automatic_text=Testo automatico
invited_to=\u00c8 stato ricevuto un invito a ''{0}'' da {1}.
invite_role=Il ruolo sar\u00e0: {0}
invite_finish_instruction=Per chiudere l'assistente e applicare i cambiamenti, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
remove_invited_user_info=Per rimuovere un utente invitato da questo spazio, scegliere S\u00ec.
add_role=Aggiungi ruolo
space_owner=L''utente ''{0}'' \u00e8 l''attuale proprietario di questo spazio.
users_and_groups=Utenti e gruppi
authority=Nome utente
invite_users_summary=Utenti e ruoli
too_many_users=Troppi utenti individuati dalla ricerca. Restringere la ricerca e riprovare.
max_users_returned=La ricerca \u00e8 stata limitata in modo da mostrare i primi {0} risultati.
# Invite Content Users Wizard messages
invite_content_title=Assistente Invita utenti contenuto
invite_content_desc=Questo assistente consente di concedere ad altri utenti l'accesso al contenuto.
invite_content_step1_desc=Selezionare gli utenti e i ruoli di cui disporranno per questo contenuto.
remove_content_user_info=Per rimuovere un utente invitato da questo contenuto, scegliere S\u00ec.
content_owner=L''utente ''{0}'' \u00e8 l''attuale proprietario di questo contenuto.
# AVM Compare
snapshot_compare_to_current=Confronta con istantanea attuale
snapshot_compare_to_current_description=Esaminare l''elenco delle modifiche tra l''istantanea ''{0}'' e l''istantanea attuale
snapshot_compare_to_previous=Confronta con istantanea precedente
snapshot_compare_to_previous_description=Esaminare l''elenco delle modifiche tra l''istantanea ''{0}'' e l''istantanea ''{1}''
snapshot_compare_to_any=Confronta con qualsiasi istantanea
snapshot_compare_to_any_description=Esaminare l''elenco delle modifiche tra l''istantanea ''{0}'' e un''istantanea selezionata dall''utente
store_title=Deposito
version_title=Versione
avm_compare_newer=Pi\u00f9 recente
avm_compare_older=Pi\u00f9 vecchia
avm_compare_conflict=Conflitto
avm_compare_directory=Directory
avm_compare_same=Uguale
error_version_validate=Il numero di versione non \u00e8 valido
snapshot_name=Nome
snapshot_path=Percorso
snapshot_status=Stato
increment_button_hint=Prossima versione valida
decrement_button_hint=Precedente versione valida
refresh_button_hint=Aggiorna
# System Users messages
create_user=Crea utente
change_password=Cambia password
title_change_password=Cambia password utente
change_password_description=Utilizzare questa vista per cambiare una password esistente per un utente.
change_password_instructions=Immettere la nuova password di questo utente.
show_all=Mostra tutto
warn_user_was_deleted=L'utente \u00e8 stato eliminato
# Check-in messages
check_in=Check In
checkin_options=Opzioni di Check In
checkin_changes_info=Esegui Check In modifiche e mantieni file in stato di Check Out
workingcopy_location=Posizione copia di lavoro
which_copy_checkin=Di quale copia si desidera eseguire il Check In?
which_copy_current=Usa copia nello spazio attuale
which_copy_other=Usa copia caricata dal mio computer
locate_doc_upload=Individua documento da caricare
file_location=Localit\u00e0
minor_change=Cambiamento minore
major_change=Cambiamento maggiore
notes=Note
new_version_has=Questa nuova versione dispone di
initial_version=Questa \u00e8 la versione iniziale
minor_changes=Cambiamenti minori
major_changes=Cambiamenti maggiori
missing_original_node=Nodo contenuto originale mancante
version_info=Info versione
# Check-out messages
check_out=Check Out
copy_work_with=Verr\u00e0 creata una copia del file ''{0}'' su cui \u00e8 possibile lavorare.
copy_checkin_changes=Dopo aver apportato tutti i cambiamenti, \u00e8 necessario eseguire il Check In del file per consentire ad altri utenti di vederli.
copy_store_prompt=Dove si desidera mantenere la copia di questo file?
store_space_current=Nello spazio attuale
store_space_selected=Nello spazio selezionato
check_out_of=Check Out di
copy_file_checkedout=\u00c8 stato eseguito il Check Out di una copia del file ''{0}'' che \u00e8 possibile modificare.
edit_workingcopy_title=Modifica la copia di lavoro ora
edit_workingcopy_info=Per modificare la copia di lavoro del file, selezionare il link qui sotto e, se viene chiesto, scegliere Salva.
download_complete=Al termine del download, scegliere OK.
undo_checkout_for=Annulla Check Out per
undo_checkout=Annulla Check Out
undo_checkout_info=Se si annulla il Check Out di un documento, la copia di lavoro associata verr\u00e0 eliminata e tutti i cambiamenti apportati dopo il Check Out verranno persi.
cancel_editing_for=Annulla modifica per
cancel_editing_info=Annullare la modifica? Tutti i cambiamenti apportati alla copia di lavoro verranno persi.
complete=completato
working_copy_for=Copia di lavoro per
working_copy_missing_info=La copia di lavoro non \u00e8 pi\u00f9 disponibile. \u00c8 possibile che allo spazio in cui \u00e8 stato eseguito il Check Out siano applicate una o pi\u00f9 regole attive.
# Document and Space details messages
details_of=Dettagli di
preview_of=Anteprima di
modify_props_of=Modifica propriet\u00e0 di
modify_space_properties=Modifica propriet\u00e0 spazio
modify_content_properties=Modifica propriet\u00e0 contenuto
modify_link_properties=Modifica propriet\u00e0 link
view_content_properties=Vedi propriet\u00e0 contenuto
preview=Anteprima nel modello
custom_view=Vista personalizzata
view_links=Link
not_inline_editable=Questo documento non \u00e8 modificabile in linea.
allow_inline_editing=Consenti modifica in linea
not_in_category=Questo documento non \u00e8 categorizzato.
not_in_category_space=Questo spazio non \u00e8 categorizzato.
not_versioned=Questo documento non dispone della cronologia delle versioni.
allow_categorization=Consenti categorizzazione
allow_versioning=Consenti gestione delle versioni
version_history=Cronologia versioni
version=Versione
document_properties=Propriet\u00e0 documento
link_properties=Propriet\u00e0 link
general_properties=Propriet\u00e0 generali
other_properties=Altre propriet\u00e0
link_destination=Destinazione link
link_destination_details=Dettagli destinazione link
no_other_properties=Non esistono altre propriet\u00e0 da mostrare per questo documento.
modify_categories_of=Modifica categorie di
space_props=Propriet\u00e0 spazio
choose_space_icon=Scegli icona spazio
create_space_finish=Per creare lo spazio, scegliere Crea spazio.
select_category=Seleziona una categoria
selected_categories=Categorie selezionate
no_selected_categories=Nessuna categoria selezionata.
success_ownership=La propriet\u00e0 dell'oggetto \u00e8 stata assunta.
success_unlock=Il documento \u00e8 stato sbloccato.
inherit_permissions=Eredita permessi spazio genitore
success_inherit_permissions=Il flag Eredita permessi genitore \u00e8 stato impostato su 'S\u00ec'
success_not_inherit_permissions=Il flag Eredita permessi genitore \u00e8 stato impostato su 'No'
apply_template=Applica modello
apply_dashboard_info=Selezionare un modello da applicare allo spazio come vista personalizzata.
apply_dashboard_doc_info=Selezionare un modello da applicare al documento come vista personalizzata.
apply_rss_feed=Applica modello feed RSS
apply_rss_feed_info=Selezionare un modello da applicare allo spazio come feed RSS.
apply_rss_feed_warning1=Questo spazio deve essere visibile all'utente ospite affinch\u00e9 il feed RSS possa essere visualizzato pubblicamente
apply_rss_feed_warning2=\u00c8 possibile invitare l'utente ospite utilizzando la vista.
rss_feed=Feed RSS
rss_feed_link=Link feed RSS
warn_cannot_view_target_details=Impossibile vedere i dettagli del documento di destinazione perch\u00e9 non si dispone dei permessi richiesti.
# Export messages
export_info=Esporta i metadati e il contenuto da questo spazio o tutti gli spazi.
export_from=Esporta da
package_name=Nome pacchetto
all_spaces_root=Repository completo
current_space=Spazio attuale
include_children=Includi figli
include_self=Includi questo spazio
run_export_in_background=Esegui esportazione in background
export_error_info=Se questa opzione \u00e8 selezionata, l'esportazione verr\u00e0 eseguita in background, pertanto \u00e8 possibile che i risultati non vengano visualizzati immediatamente. \u00c8 inoltre consigliabile controllare se si sono verificati errori nella console del server e nei file di log.
# Import messages
import_info=Importa nel repository un pacchetto di contenuto Alfresco o un file in formato ZIP.
import_acp_description=Pacchetto di contenuto Alfresco
import_zip_description=Pacchetto di archiviazione
locate_acp_upload=Individua file .acp o .zip da caricare
run_import_in_background=Esegui importazione in background
import_error_info=Se questa opzione \u00e8 selezionata, l'importazione verr\u00e0 eseguita in background, pertanto \u00e8 possibile che i risultati non vengano visualizzati immediatamente. \u00c8 inoltre consigliabile controllare se si sono verificati errori nella console del server e nei file di log.
# Edit Content messages
edit_file_title=Modifica file
edit_file_prompt=Per modificare il file ''{0}'', selezionare il link qui sotto e, se viene chiesto, scegliere Salva.
edit_download_complete=Al termine del download, scegliere Chiudi.
edit_using_web_form=Per modificare questo file utilizzando un modulo web, scegliere qui.
checkout_file_title=Check Out file
checkout_you_may_want=\u00c8 consigliabile eseguire il Check Out di questo file per bloccarlo e impedire ad altri utenti di modificarlo.
checkout_hint1=Suggerimento: quando si esegue il Check Out di un file, viene creata una copia su cui \u00e8 possibile lavorare.
checkout_hint2=Una volta terminate le modifiche della copia, \u00e8 necessario eseguire il Check In per rilasciare il blocco e consentire ad altri utenti di utilizzare il documento modificato.
checkout_want_to=per evitare che altri utenti possano sovrascrivere i cambiamenti.
checkout_warn=Nota: tutti i cambiamenti gi\u00e0 apportati a questo documento verranno persi.
local_copy_location=Posizione copia locale
locate_content_upload=Individua documento da caricare
# System Information and admin page messages
system_info=Informazioni sul sistema
current_user=Utente attuale
http_app_state=Stato applicazione HTTP
http_session_state=Stato sessione HTTP
http_request_state=Stato richiesta HTTP
http_request_params=Parametri richiesta HTTP
http_request_headers=Intestazioni richiesta HTTP
repository_props=Propriet\u00e0 repository
repository_patch_succeeded=Operazione riuscita
repository_patch_failed=NON RIUSCITO
system_props=Propriet\u00e0 sistema
hide_details=Nascondi dettagli
show_details=Mostra dettagli
user_search_info=Per trovare un utente, eseguire la ricerca utilizzando il nome, il cognome e/o il nome utente. In alternativa, per vedere tutti gli utenti, scegliere 'Mostra tutto'. Se il numero di utenti nel sistema \u00e8 elevato, l'operazione potrebbe richiedere alcuni minuti.
group_search_info=Per trovare un gruppo, eseguire la ricerca utilizzando il nome di gruppo. In alternativa, per vedere tutti i gruppi, scegliere 'Mostra tutto'. Se il numero di gruppi nel sistema \u00e8 elevato, l'operazione potrebbe richiedere alcuni minuti.
user_change_homespace_info=La selezione di un nuovo spazio di homepage per un utente non rimuove i permessi esistenti per lo spazio di homepage originale. \u00c8 consigliabile utilizzare la finestra di dialogo Gestisci utenti spazio per modificare i permessi non pi\u00f9 richiesti per lo spazio di homepage originale.
quota_totalusage=Uso totale (per questa ricerca)
quota_totalquota=Quota totale (per questa ricerca)
caused_by=causa:
# Content Wizard messages
add_content_dialog_title=Finestra di dialogo Aggiungi contenuto
add_content_dialog_desc=Questa finestra di dialogo consente di aggiungere contenuto a uno spazio.
upload_content=Carica contenuto
properties=Propriet\u00e0
general=Generale
file_name=Nome file
content_type=Tipo di contenuto
content_format=Formato contenuto
inline_editable=Modificabile in linea
locate_content=Individua contenuto da caricare
content_location=Localit\u00e0
uploaded_content=Contenuto caricato
click_upload=Scegliere Carica
file_upload_success=''{0}'' \u00e8 stato caricato.
modify_props_when_page_closes=Modifica tutte le propriet\u00e0 alla chiusura della pagina.
modify_props_when_wizard_closes=Modifica tutte le propriet\u00e0 alla chiusura dell'assistente.
modify_props_help_text=Le regole applicate a questo contenuto potrebbero richiedere l'immissione di informazioni aggiuntive.
content_finish_instruction=Per aggiungere il contenuto a questo spazio, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
create_content_title=Assistente Crea contenuto
create_content_desc=Questo assistente consente di creare un nuovo documento in uno spazio.
create_content_step1_title=Passo uno - Specifica nome e seleziona tipo
create_content_step1_desc=Specificare il nome e selezionare il tipo di contenuto da creare.
create_content_step2_title=Passo due - Immetti contenuto
create_content_step2_desc=Immettere il contenuto del documento nel repository.
enter_content=Immetti contenuto
select_type=Seleziona tipo
content=Contenuto
text_content=Contenuto testo normale
html_content=Contenuto HTML
xml_content=Contenuto XML
node_locked_dialog_closed=Il nodo creato \u00e8 bloccato. \u00c8 probabile che sia configurata una regola nello spazio. Poich\u00e9 il nodo non pu\u00f2 essere modificato, la finestra di dialogo Modifica propriet\u00e0 contenuto \u00e8 stata chiusa.
regenerate_renditions_title=Assistente Rigenera trasformazioni
regenerate_renditions_desc=Questo assistente consente di rigenerare le trasformazioni.
regenerate_renditions_select_renditions_title=Seleziona trasformazioni
regenerate_renditions_select_renditions_step_title=Seleziona trasformazioni
regenerate_renditions_select_renditions_desc=Selezionare le trasformazioni da rigenerare.
regenerate_renditions_select_renditions_select_item_desc={0} {0,choice,0#renditions|1#rendition|1<renditions} correlate in {1}.
regenerate_renditions_select_renditions_select_web_project=Selezionare il progetto web in cui rigenerare le trasformazioni.
regenerate_renditions_select_renditions_select_regenerate_scope=Selezionare le trasformazioni da rigenerare nel progetto web selezionato.
regenerate_renditions_select_renditions_scope_all=Scegliere questa opzione per rigenerare tutte le trasformazioni del contenuto generato da tutti i moduli nel progetto web selezionato.
regenerate_renditions_select_renditions_scope_form=Scegliere questa opzione per rigenerare tutte le trasformazioni del contenuto generato da un gruppo specifico di moduli configurati per il progetto web selezionato.
regenerate_renditions_select_renditions_scope_rendering_engine_templates=Scegliere questa opzione per rigenerare trasformazioni specifiche generate da un gruppo specifico di modelli del motore di rendering.
regenerate_renditions_select_renditions_instruction=Per rigenerare le trasformazioni in base alla selezione effettuata, scegliere Continua.
regenerate_renditions_summary_desc=Sono state rigenerate {0} {0,choice,0#renditions|1#rendition|1<renditions} nel progetto web {1}.
regenerate_renditions_summary_instruction=Per eseguire il commit di questi cambiamenti nel progetto web, scegliere Fine.
regenerate_renditions_snapshot_description_scope_form=Sono state rigenerate tutte le trasformazioni per il contenuto creato utilizzando i moduli {0}.
regenerate_renditions_snapshot_description_scope_rendering_engine_template=Sono state rigenerate tutte le trasformazioni generate da {0}.
regenerate_renditions_snapshot_description_scope_web_project=Sono state rigenerate tutte le trasformazioni nel progetto web {0}.
regenerate_renditions_snapshot_short_description=Sono state rigenerate {0} {0,choice,0#renditions|1#rendition|1<renditions}.
create_form_title=Assistente Crea modulo
edit_form_title=Assistente Modifica modulo
create_form_desc=Questo assistente consente di creare un nuovo modulo.
edit_form_desc=Questo assistente consente di modificare un modulo.
create_form_form_details_title=Dettagli modulo
create_form_form_details_step_title=Passo uno - Dettagli modulo
create_web_form_title=Assistente Crea modulo web
edit_web_form_title=Assistente Modifica modulo web
create_web_form_form_details_title=Dettagli modulo web
create_web_form_form_details_step_title=Passo uno - Dettagli modulo web
create_form_form_details_desc=Immettere le informazioni sul modulo da creare.
create_form_form_details_step1_desc=Selezionare lo schema XML da usare
create_form_form_details_step2_desc=Specificare i dettagli del nuovo modulo.
create_form_form_details_no_elements_in_schema=Questo schema non contiene alcuna dichiarazione di elemento. Uno schema deve contenere almeno una dichiarazione di elemento affinch\u00e9 possa essere generato un modulo.
create_form_form_details_no_schema_selected=<nessuno schema selezionato>
create_form_form_details_associated_web_projects=Questo modulo \u00e8 attualmente configurato per i progetti web seguenti:
create_form_configure_rendering_engine_templates_title=Configura modelli
create_form_configure_rendering_engine_templates_step_title=Passo due - Configura modelli
create_form_configure_rendering_engine_templates_desc=Immettere le informazioni sui modelli del motore di rendering da utilizzare per il modulo {0}.
create_form_configure_rendering_engine_templates_step1_desc=Selezionare il modello del motore di rendering da usare
create_form_configure_rendering_engine_templates_step2_desc=Specificare i dettagli del nuovo modello del motore di rendering
create_form_select_default_workflow_title=Configura workflow
create_form_select_default_workflow_step_title=Passo tre - Configura workflow
create_form_select_default_workflow_desc=Selezionare il workflow da utilizzare per default per il modulo {0}.
create_form_select_default_workflow_apply_default_workflow=Applicare un workflow di default ora?
create_form_select_default_workflow_select_workflow=Seleziona un workflow
create_web_content_details_title=Dettagli contenuto web
create_web_content_details_step_title=Passo uno - Dettagli contenuto web
create_web_content_enter_content_title=Crea contenuto web
create_web_content_enter_content_step_title=Passo due - Crea contenuto web
edit_web_content_enter_content_step_title=Passo uno - Crea contenuto web
create_web_content_summary_desc=L'assistente ha creato il contenuto e tutte le trasformazioni.
create_web_content_summary_content_details=Dettagli contenuto
create_web_content_summary_rendition_details=Dettagli trasformazione
create_web_content_summary_uploaded_files_details=Dettagli file caricati
create_web_content_summary_submit_message=Invia {0,choice,0#__SHOULD NOT BE ZERO__|1#{1}|1<these {0,number} files} alla chiusura dell''assistente.
default_rendition_description=Trasformato da {0} in {1}
rendering_engine_type=Motore di rendering
apply_default_workflow=Applica workflow di default
rendering_engine_template=Modello motore di rendering
rendering_engine_templates=Modelli motore di rendering
selected_rendering_engine_templates=Motori di rendering selezionati
rendering_engine_template_file=File modello motore di rendering
rendering_engine=Motore di rendering
output_path_pattern=Schema percorso di output
mimetype_for_renditions=Mimetype trasformazione
schema=Schema
schema_root_element_name=Elemento radice
form=Modulo
web_form=Modulo web
web_project=Progetto web
# Form Not Found Exception messages
form_not_found=Impossibile trovare il modulo {0}.
form_not_found_for_form_instance_data=Impossibile trovare il modulo {0} associato a {1}.
form_not_found_in_web_project=Impossibile trovare il modulo {0} nel progetto web {1}.
form_not_found_for_form_instance_data_in_web_project=Impossibile trovare il modulo {0} nel progetto web {1} associato a {2}.
form_not_configured_for_web_project=Il modulo {0} non \u00e8 configurato per il progetto web {1}.
form_associated_with_form_instance_data_not_configured_for_web_project=Il modulo {0} associato a {1} non \u00e8 configurato per il progetto web {2}.
# Rule and Action Wizard messages
run_action_title=Assistente Esegui azione
run_action_desc=Questo assistente consente di eseguire un'azione
run_action_step1_title=Passo uno - Seleziona azioni
run_action_finish_instruction=Per eseguire l'azione, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
create_rule_title=Assistente Crea regola
create_rule_desc=Questo assistente consente di creare una nuova regola.
create_rule_step1_title=Passo uno - Seleziona condizioni
create_rule_step2_title=Passo due - Seleziona azioni
create_rule_step3_title=Passo tre - Immetti dettagli
create_rule_finish_instruction=Per creare la regola, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
edit_rule_title=Assistente Modifica regola
edit_rule_desc=Questo assistente consente di modificare una regola.
edit_rule_finish_instruction=Per aggiornare la regola, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
select_action=Seleziona azione
select_an_action=Seleziona un'azione...
select_a_type=Seleziona un tipo...
action=Azione
action_settings=Impostazioni azione
set_action_values=Imposta valori azione
select_feature=Seleziona caratteristica richiesta
version_notes=Note sulla versione
checkout_location=Posizione Check Out
destination=Destinazione
message=Messaggio
category=Categoria
categories=Categorie
change_category=Cambia categoria
approve_flow=Flusso di approvazione
approve_step_name=Nome del passo di approvazione
move_or_copy=Scegliere se spostare o copiare il contenuto e la posizione.
reject_flow=Flusso di rifiuto
want_reject_step=Specificare un passo di rifiuto?
reject_step_name=Nome del passo di rifiuto
required_format=Formato richiesto
details=Dettagli
select_condition=Seleziona condizione
select_a_condition=Seleziona una condizione...
condition=Condizione
conditions=Condizioni
condition_settings=Impostazioni condizione
set_condition_values=Imposta valori condizione
select_checkout_prompt=Scegliere qui per selezionare la posizione di Check Out
condition_contains_desc=Immettere lo schema di testo richiesto, inclusi gli eventuali metacaratteri. Il nome di file include l'estensione del tipo di file ai fini della corrispondenza.
file_name_pattern=Schema nome file
condition_contains_hints=Suggerimenti
condition_contains_hints_desc=Utilizzare zz* per individuare qualsiasi nome che inizia con zz; utilizzare *.txt per individuare qualsiasi file di testo; utilizzare *zz* per individuare qualsiasi nome di file contenente zz in qualsiasi posizione (incluso all'inizio o alla fine).
apply_to_sub_spaces=Applica regola a sottospazi
run_in_background=Esegui regola in background
rule_disabled=Disabilita regola
rule_active=Attiva
not=Non
click_set_and_add=Scegliere per impostare i valori e aggiungerli all'elenco
click_add_to_list=Scegliere per aggiungerli all'elenco
set_and_add_button=Imposta valori e aggiungi
selected_conditions=Condizioni regola selezionate
selected_actions=Azioni regola selezionate
action_cannot_be_execute_repeatedly=Impossibile eseguire l'azione ripetutamente
condition_has_aspect=L''elemento ha l''aspetto ''{0}''
condition_has_aspect_not=L''elemento non ha l''aspetto ''{0}''
condition_has_tag=L''elemento ha il tag ''{0}''
condition_has_tag_not=L''elemento non ha il tag ''{0}''
condition_is_subtype=L''elemento \u00e8 un sottotipo di ''{0}''
condition_is_subtype_not=L''elemento non \u00e8 un sottotipo di ''{0}''
condition_compare_mime_type=L''elemento ha il mimetype ''{0}''
condition_compare_mime_type_not=L''elemento non ha il mimetype ''{0}''
condition_in_category=L''elemento \u00e8 nella categoria ''{0}''
condition_in_category_not=L''elemento non \u00e8 nella categoria ''{0}''
condition_compare_property_value=La propriet\u00e0 del nome corrisponde a ''{0}''
condition_compare_property_value_not=La propriet\u00e0 del nome non corrisponde a ''{0}''
action_add_features=Aggiungi aspetto ''{0}''
action_remove_features=Rimuovi aspetto ''{0}''
action_specialise_type=L''elemento \u00e8 specializzato sul tipo ''{0}''
action_simple_workflow=elemento {0} in ''{1}'' se viene eseguita l''azione ''{2}''.
action_link_category=Collega alla categoria ''{0}''
action_transform=Copia contenuto in ''{0}'' e trasforma in ''{1}''
action_transform_image=Copia immagine in ''{0}'' e trasforma in ''{1}'' usando l''opzione ''{2}''
action_copy=Copia in ''{0}''
action_copy_to_web_project_folder=Copia in ''{0}'' in ''{1}''
action_move=Sposta in ''{0}''
action_mail=Invia e-mail a ''{0}''
action_mail_template=Usa modello
action_check_in=Esegui Check In contenuto come ''{0}'' con il commento ''{1}''
action_check_out=Esegui Check Out contenuto in ''{0}''
action_set_property_value=Imposta propriet\u00e0 ''{0}''
action_import=Importa in ''{0}''
action_script=Esegui script ''{0}''
action_script_select=Seleziona uno script da eseguire
not_condition_result=Verifica che l'elemento non corrisponda ai criteri indicati
space=Spazio
import_to=Importa in
encoding=Codifica
encoding_utf8=UTF-8
rule_type=Tipo di regola
rule_background_info=Se questa opzione \u00e8 selezionata, la regola verr\u00e0 eseguita in background, pertanto \u00e8 possibile che i risultati non vengano visualizzati immediatamente.
select_recipients=Cerca destinatari e-mail per nome o gruppo
selected_recipients=Destinatari e-mail selezionati
message_recipients=Destinatari messaggio
email_message=Messaggio e-mail
insert_template=Inserisci modello
discard_template=Scarta modello
# Create Space Wizard messages
create_space_title=Assistente Crea spazio
create_space_desc=Questo assistente consente di creare un nuovo spazio.
create_space_step1_title=Passo uno - Spazio iniziale
create_space_step1_desc=Scegliere come creare lo spazio.
create_space_step2_title=Passo due - Opzioni spazio
create_space_step2_desc=Selezionare le opzioni dello spazio.
create_space_step3_title=Passo tre - Dettagli spazio
create_space_step3_desc=Immettere le informazioni sullo spazio.
create_space_finish_instruction=Per chiudere l'assistente e creare lo spazio, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
scratch=Zero
an_existing_space=Uno spazio esistente
a_template=Un modello
creating_from=Creazione da
save_as_template=Salva come modello
template_name=Nome modello
select_a_template=Seleziona un modello...
select_a_script=Seleziona uno script...
starting_space=Spazio iniziale
space_options=Opzioni spazio
space_details=Dettagli spazio
how_to_create_space=Come si desidera creare lo spazio?
from_scratch=Da zero
based_on_existing_space=In base a uno spazio esistente
using_a_template=Usando un modello
existing_space=Spazio esistente
copy_existing_space=Copia spazio esistente
structure=Struttura
structure_contents=Struttura e contenuto
space_copy_note=Nota: verranno copiate anche tutte le regole di contenuto degli spazi.
space_type=Tipo di spazio
space_type_create=Selezionare il tipo di spazio da creare.
container=Spazio cartella
container_desc=Posizione in cui mantenere e organizzare documenti e altri spazi.
forums_desc=Posizione in cui discutere il contenuto con altri utenti.
space_type_note=Nota: se \u00e8 visibile un solo tipo di spazio, \u00e8 possibile che gli altri tipi di spazio non siano abilitati. Contattare l'amministratore di sistema per ulteriore aiuto.
template_space=Spazio modello
select_template=Selezionare il modello da utilizzare.
# Create and Edit Website Wizard messages
create_website=Crea progetto web
create_website_title=Assistente Crea progetto web
create_website_desc=Questo assistente consente di creare uno spazio per un nuovo progetto web.
website_details=Dettagli progetto web
create_website_step1_title=Passo uno - Dettagli progetto web
create_website_step1_desc=Immettere le informazioni sul progetto web.
website_dnsname=Nome DNS
website_preview_provider=Provider anteprima
validation_invalid_dns_name=Il nome DNS del sito web non \u00e8 valido: sono consentiti solo caratteri alfanumerici e trattini non posizionati all'inizio o alla fine (lunghezza massima < 64).
website_webapp=Webapp di default
website_createfrom=Crea da progetto web esistente
create_website_step2_title=Passo due - Crea da progetto web esistente
create_website_step2_desc=Selezionare opzionalmente un progetto esistente da utilizzare come modello per questo sito web
website_create_empty=Crea un nuovo progetto web vuoto
website_create_existing=Crea un progetto web in base a uno esistente. La struttura della sandbox temporanea, i moduli web, il workflow e gli utenti verranno copiati dal progetto web selezionato
website_sourcewebsite=Creato da progetto web
website_sourcetemplate=Usa come modello?
website_sourcenote=Nota: per default verranno visualizzati solo i progetti web contrassegnati per l'utilizzo come modello.
website_sourceshowall=Mostra tutti i progetti web
website_sourceshowtemplates=Mostra progetti web modello
website_selected_forms=Moduli di contenuto web selezionati
website_web_content_forms=Moduli di contenuto web
website_save_location=Posizione di salvataggio
website_save_location_info=Usa lo schema seguente per il salvataggio del contenuto
website_filename_pattern=Schema nome file
website_filename_match=Corrispondenza schema nome file
website_workflow=Workflow
website_workflow_info=Usa il workflow seguente
website_forms=Configura moduli web
form_template_details=Dettagli modulo web
form_template_details_desc=Modificare i dettagli del modulo web {0} nel progetto web {1}.
form_template_conf_workflow=Configura workflow
form_template_select_templates=Configura modelli
form_template_templates=Configura modelli
form_template_templates_desc=Impostare i modelli da utilizzare per il modulo web {0} nel progetto web {1}.
form_template_workflow=Configura workflow
form_template_workflow_desc=Configurare le impostazioni di default del workflow per questo progetto web
create_website_step3_title=Passo tre - Configura ricevitori dispiegamento
create_website_step3_desc=Configurare i ricevitori del dispiegamento per il progetto web.
website_deployment=Configura ricevitori dispiegamento
create_website_step4_title=Passo quattro - Configura moduli di contenuto web
create_website_step4_desc=Selezionare e configurare i moduli web per la generazione del contenuto del sito.
website_select_form=Seleziona moduli web
website_select_templates=Seleziona modelli
website_selected_templates=Modelli selezionati
website_settings=Configura workflow
create_website_step5_title=Passo cinque - Configura workflow
create_website_step5_desc=Selezionare e configurare il workflow per le risorse non generate da moduli.
website_select_workflows=Seleziona workflow
website_selected_workflows=Workflow selezionati
website_invite=Aggiungi utenti
create_website_step6_title=Passo sei - Aggiungi utenti
create_website_step6_desc=Selezionare gli utenti e i relativi ruoli.
website_notify=Invia e-mail agli utenti
create_website_step7_title=Passo sette - Invia e-mail agli utenti
create_website_step7_desc=Inviare una notifica agli utenti del sito web.
create_website_finish_instruction=Per chiudere l'assistente e creare lo spazio del progetto web, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
create_website_summary_users=Utenti e ruoli
server_already_exist=Esiste gi\u00e0 un server con il nome {0}.
edit_website_title=Assistente Modifica progetto web
edit_website_desc=Questo assistente consente di modificare le impostazioni relative allo spazio di un progetto web.
edit_website_finish_instruction=Per chiudere l'assistente e salvare le impostazioni modificate per lo spazio del progetto web, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
edit_website=Modifica impostazioni progetto web
workflow_settings=Impostazioni workflow
workflow_not_configured=Workflow non configurato
error_filename_pattern=Errore nello schema del nome di file del workflow: {0}
workflow_not_set=nessun workflow
rendering_engines_selected=Modelli selezionati
edit_website_step2_title=Passo due - Configura server di dispiegamento
edit_website_step2_desc=Configurare i server di dispiegamento per il progetto web.
edit_website_step3_title=Passo tre - Configura moduli di contenuto web
edit_website_step3_desc=Selezionare e configurare i moduli web per la generazione del contenuto del sito.
edit_website_step4_title=Passo quattro - Configura workflow
edit_website_step4_desc=Selezionare e configurare il workflow per le risorse non generate da moduli.
# Invite web users wizard messages
invite_website_users=Invita utenti progetto web
invite_webusers_title=Invita utenti progetto web
invite_webusers_desc=Invitare i nuovi utenti e creare le sandbox per il progetto web.
invite_webusers_step1_title=Passo uno - Invita utenti
invite_webusers_step1_desc=Selezionare gli utenti e i relativi ruoli.
invite_webusers_step2_title=Passo due - Notifica utenti
invite_webusers_step2_desc=Inviare una notifica agli utenti invitati.
invite_webusers_finish_instruction=Per chiudere l'assistente e creare le sandbox degli utenti, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
# Delete Website Dialog messages
delete_website=Elimina progetto web
delete_website_info=Per rimuovere questo progetto web e le sandbox di tutti gli utenti associati, scegliere OK.
delete_website_confirm=Eliminare il progetto web \"{0}\" e le sandbox di tutti gli utenti associati?
# Browse Website and Sandboxes messages
title_browse_website=Sfoglia sito web
website_info=Utilizzare questa vista per esplorare l'area temporanea e le sandbox degli utenti per un progetto web.
staging_sandbox=Sandbox temporanea
user_sandboxes=Sandbox utenti
sandbox_preview=Anteprima sito web
sandbox_create=Crea contenuto web
sandbox_browse=Sfoglia sito web
sandbox_revert=Annulla
sandbox_revertall=Annulla tutto
sandbox_submitall=Invia tutto
count_conflicted_items={0} file in conflitto con i cambiamenti apportati da altri utenti
sandbox_submitselected=Invia selezione
sandbox_revertselected=Annulla selezione
sandbox_icon=Sfoglia sito web
sandbox_snapshot=Crea istantanea
sandbox_snapshot_info=Creare un'istantanea di questa sandbox.
sandbox_remove=Elimina
sandbox_refresh=Aggiorna
sandbox_deploy=Dispiega
sandbox_release_test_server=Rilascia server
import_website_content=Importa in blocco
title_browse_sandbox=Sfoglia sandbox
sandbox_info=Utilizzare questa vista per esplorare i file e le cartelle nella sandbox per un progetto web.
sandbox_title=Sandbox ''{1}'' sito web ''{0}''
sandbox_staging=Area temporanea
website_browse_folders=Sfoglia cartelle
website_browse_files=Sfoglia file
creator=Creatore
modified_items=Elementi modificati
content_forms=Moduli web
search_website=Cerca nel sito web
search_sandbox_warn=I risultati della ricerca mostrati potrebbero non essere aggiornati con i cambiamenti apportati nella sandbox locale.
search_form_content=\u00c8 stato generato il contenuto XML per il modulo: {0}
store_created_on=Creato il
store_created_by=Creato da
store_working_users=Ci {0,choice,0#are no users|1#is one user|1<are {0,number} users} che lavorano su questo progetto web.
avm_node_deleted=Eliminato
revert=Inverti
revert_success=Sono stati invertiti {1,choice,0#SHOULD_NOT_HAPPEN|1#item|1<items}: {0}
revertall_success=\u00c8 stata invertita la sandbox dell''utente: {0}
revertselected_success=Sono stati invertiti gli elementi selezionati per l''utente: {0}
revert_sandbox_success=\u00c8 stata invertita la sandbox ''{0}'' nella versione: {1}
submit=Invia
submit_success=\u00c8 stata inviato l''elemento: {0}
submitall_success=\u00c8 stata inviata la sandbox dell''utente: {0}
submitselected_success=Sono stati inviati gli elementi selezionati per l''utente: {0}
submitted=Inviato
folder_preview=Anteprima cartella
file_preview=Anteprima file
selected=Selezionato
create_form_content=Crea contenuto
find_form_content=Sfoglia contenuto
recent_snapshots=Istantanee recenti
snapshot_revert=Inverti
snapshot_preview=Anteprima
snapshot_deploy=Dispiega
webapp_current=Cartella Webapp attuale
sandbox_no_modified_items=Nessun elemento modificato
sandbox_no_web_forms=Nessun modulo web disponibile
sandbox_my_sandbox=La mia sandbox
sandbox_user=Utente
pending_submissions=Contenuto in attesa di avvio
no_pending_submissions=Nessun contenuto in attesa di avvio
pending_preview=Anteprima contenuto
pending_details=Vedi dettagli
pending_diff=Confronto visivo
pending_promote=Invia ora
pending_abort=Interrompi invio
task_done_resubmit_all=Compito eseguito, reinvia tutto
delete_all_deploy_reports=Elimina tutti i rapporti di dispiegamento
delete_reports_info=Per rimuovere tutti i rapporti di dispiegamento nel progetto web, scegliere S\u00ec.
delete_reports_confirm=Eliminare tutti i rapporti di dispiegamento in tutte le sandbox di questo progetto web?
release_server_title=Rilascia server di test
release_server_info=Per rilasciare il server di test da questa sandbox, scegliere S\u00ec.
release_server_confirm=Rilasciare i server di test assegnati a questa sandbox?
website_showallsandboxes=Mostra tutte le sandbox
# Website actions and dialog messages
title_import_content=Importazione in blocco progetto web
import_website_content_title=Importa in blocco
import_website_content_desc=Utilizzare questa finestra di dialogo per importare un archivio di contenuto nel progetto web.
import_high_byte_zip_file=Il file ZIP contiene nel byte alto caratteri del nome di file quali quelli giapponesi, cinesi o coreani.
delete_avm_file_info=Per rimuovere questo file dalla sandbox, scegliere OK.
delete_avm_file_confirm=Rimuovere \"{0}\" dalla sandbox?
delete_form_instance_data_confirm=Rimuovere \"{0}\" e le {1} {1,choice,0#renditions|1#rendition|1<renditions} associate dalla sandbox?
delete_rendition_confirm=Rimuovere \"{0}\", \"{1}\" e le altre {2} {2,choice,0#renditions|1#rendition|1<renditions} associate dalla sandbox?
delete_folder=Elimina cartella
delete_avm_folder_info=Per rimuovere questa cartella e il relativo contenuto dalla sandbox, scegliere OK.
delete_avm_folder_confirm=Rimuovere \"{0}\" e il relativo contenuto dalla sandbox?
unlock_file=Sblocca file
unlock_file_info=Per rimuovere il blocco da questo file, scegliere OK.
unlock_file_confirm=Rimuovere il blocco da \"{0}\"?
error_delete_folder=Impossibile eliminare la cartella a causa di un errore di sistema:
create_web_content=Crea contenuto web
create_web_content_title=Assistente Crea contenuto web
edit_web_content_title=Assistente Modifica contenuto web
create_web_content_desc=Questo assistente consente di creare un nuovo elemento di contenuto per un sito web.
edit_web_content_desc=Questo assistente consente di modificare un elemento di contenuto per un sito web.
create_folder=Crea cartella
create_avm_folder_info=Creare una nuova cartella nel sito web.
create_layered_folder=Crea cartella stratificata
create_layered_folder_info=Creare una cartella stratificata nel sito web.
target=Destinazione
target_path=Percorso di destinazione
target_does_not_exists=Impossibile creare la cartella stratificata perch\u00e9 il percorso di destinazione {0} non esiste nel progetto web selezionato.
delete_layered_folder=Elimina cartella stratificata
folder=Cartella
file=File
shared_folder=Cartella stratificata
shared_file=File stratificato
stale_shared_folder=Cartella stratificata obsoleta
stale_shared_file=File stratificato obsoleto
target_is_deleted=La cartella di destinazione per ''{0}'' \u00e8 stata eliminata.
shared_from=Stratificato da {0}
add_avm_content_dialog_desc=Questa finestra di dialogo consente di aggiungere contenuto a una cartella.
update_avm_file_desc=Aggiornare un file nel sito web in base al contenuto presente nel computer in uso.
file_details_desc=Esaminare i dettagli del file.
title_folder_details=Dettagli cartella
folder_details_desc=Esaminare i dettagli della cartella.
edit_file_properties=Modifica propriet\u00e0 file
edit_file_description=Modificare le propriet\u00e0 del file, quindi scegliere OK.
edit_folder_properties=Modifica propriet\u00e0 cartella
edit_folder_description=Modificare le propriet\u00e0 della cartella, quindi scegliere OK.
folder_props=Propriet\u00e0 cartella
snapshot_properties=Propriet\u00e0 istantanea
snapshot_label=Etichetta
snapshot_success=Istantanea ''{0}'' creata per la sandbox: {1}
snapshot_failure=Istantanea non creata - La sandbox non \u00e8 stata modificata dopo l'ultima istantanea.
snapshot_submitted_by=Inviata da
title_website_details=Dettagli progetto web
webproject_details_of=Dettagli progetto web di
delete_sandbox=Elimina sandbox
delete_sandbox_info=Per rimuovere questa sandbox e l'utente dal progetto web, scegliere OK.
delete_sandbox_confirm=Rimuovere la sandbox dell''utente \"{0}\" dal progetto web?
submit_submission_info=Info invio
submit_comment=Descrizione
submit_snapshotlabel=Etichetta
submit_workflow_selection=Usa il workflow seguente per inviare tutti gli elementi modificati
submit_not_submit_warning=Gli elementi seguenti non possono essere inviati perch\u00e9 fanno gi\u00e0 parte di un workflow.
submit_no_workflow_warning=Non \u00e8 stato trovato alcun workflow adeguato per gli elementi modificati riportati di seguito
submit_submit_info=Gli elementi seguenti verranno inviati
submit_items_title=Invia elementi
submit_items_desc=Questa pagina consente di inviare gli elementi modificati per la pubblicazione nel sito web.
submit_configure_workflow=Configura workflow
submit_configure_workflow_desc=Configurare le impostazioni e i parametri del workflow
create_webapp=Crea cartella Webapp
create_webapp_title=Crea cartella Webapp
create_webapp_desc=Creare una nuova cartella Webapp radice per questo progetto web
submit_workflow_config_error=I parametri del workflow non sono stati completamente configurati. Impossibile inviare gli elementi.
revert_selected_title=Annulla elementi selezionati
revert_selected_desc=Per annullare i cambiamenti apportati ai file selezionati nella sandbox, scegliere OK.
revert_selected_confirm=Annullare i cambiamenti apportati ai file selezionati nella sandbox?
revert_all_title=Annulla tutti gli elementi
revert_snapshot_title=Inverti istantanea
revert_snapshot_desc=Inverte una sandbox a un ID di versione dell'istantanea specifico
revert_snapshot_confirm=Invertire una sandbox alla versione: {0}
revert_all_conflicts=Inverti tutti i conflitti
revert_all_desc=Per annullare i cambiamenti apportati a tutti i file nella sandbox, scegliere OK.
revert_all_confirm=Annullare i cambiamenti apportati a tutti i file nella sandbox?
deploy_snapshot_title=Dispiega istantanea
deploy_snapshot_desc=Selezionare i server in cui eseguire il dispiegamento e scegliere OK.
deploy_sandbox_title=Dispiega sandbox
deploy_sandbox_desc=Selezionare un server di test in cui eseguire il dispiegamento e scegliere OK. Questo server verr\u00e0 quindi assegnato alla sandbox.
redeploy_sandbox_title=Dispiega cambiamenti sandbox
redeploy_sandbox_desc=Scegliere OK per dispiegare tutti i cambiamenti nella sandbox al server di test assegnato.
deploy_destination=Selezionare i server di destinazione in cui eseguire il dispiegamento
deploying=Dispiegamento in corso...
deploy_successful=Dispiegamento riuscito
deploy_failed=Dispiegamento non riuscito
deploy_server_not_selected=Questo server non \u00e8 stato selezionato perch\u00e9 l'istantanea \u00e8 gi\u00e0 stata dispiegata.
deploy_test_server_not_available=Non \u00e8 disponibile alcun server di test non assegnato.
deploy_test_server_allocated=Il server di test ''{0}'' \u00e8 assegnato a questa sandbox. Per vedere l''anteprima del dispiegamento attuale, selezionare il link qui sotto (se \u00e8 disponibile un URL). In alternativa, per dispiegare i cambiamenti pi\u00f9 recenti, scegliere OK.
deploy_started=Avviato
deploy_finished=Completato
deployed_by=Da
deployment_report_action=Vedi dispiegamenti
deployment_report_title=Rapporto ultimo dispiegamento
deployment_report_desc=Esaminare i dettagli di dispiegamento di ognuno dei server selezionati nell'ultimo dispiegamento.
last_deploy_report=Mostra rapporto ultimo dispiegamento
more_deploy_reports=Altri rapporti di dispiegamento
deployment_previous_report_title=Rapporto di dispiegamento per {0}
deployment_previous_report_desc=Esaminare i dettagli di dispiegamento di ognuno dei server selezionati nel dispiegamento.
monitor_deployment_title=Monitora dispiegamento
monitor_deployment_desc=Monitora il progresso di un dispiegamento in uno o pi\u00f9 server.
deploy_status_in_progress=IN CORSO
deploy_status_live=LIVE
deploy_status_failed=NON RIUSCITO
deploy_status_partial=PARZIALMENTE RIUSCITO
deploy_add_alf_receiver=Aggiungi ASR (deprecato)
deploy_add_file_receiver=Aggiungi ricevitore dispiegamento
deploy_server_type_live=Server live
deploy_server_type_test=Server di test
deploy_server=Server
deploy_server_type=Tipo
deploy_server_name=Nome visualizzato
deploy_server_group=Gruppo visualizzato
deploy_server_adapter_name=Nome trasporto
deploy_server_host=Host
deploy_server_port=Porta
deploy_server_username=Nome utente
deploy_server_password=Password
deploy_server_url=URL
deploy_server_allocated=Assegnato
deploy_server_source_path=Percorso fonte
deploy_server_excludes=Esclusioni
deploy_server_target_name=Nome destinazione
deploy_server_include_auto_deploy=Includi in dispiegamento automatico
deploy_automatically=Dispiegamento automatico
deploy_automatically_info=I cambiamenti verranno dispiegati da questo invio al momento dell'approvazione.
deploy_attempt_date=Data tentativo
select_deploy_attempt=Vedi tentativo dispiegamento
deployed_to_servers=Dispiegato in
no_deploy_attempts=Nessun tentativo di dispiegamento da visualizzare in questo intervallo di date.
no_deploy_reports=Impossibile trovare i dettagli del dispiegamento. \u00c8 probabile che il dispiegamento sia ancora in corso. Aggiornare la pagina fino a quando non vengono visualizzati i dettagli.
port_must_be_number=La porta deve contenere un numero.
host_wrong_format=Il formato del nome host non \u00e8 valido.
edit_deploy_server=Modifica dettagli server di dispiegamento
delete_deploy_server=Elimina server di dispiegamento
no_deploy_servers=Non \u00e8 stato configurato alcun server di dispiegamento.
add_alf_deploy_server_info=Specificare i dettagli del ricevitore del server Alfresco da aggiungere
add_file_deploy_server_info=Specificare i dettagli del ricevitore di dispiegamento da aggiungere
edit_alf_deploy_server_info=Modificare i dettagli del ricevitore del server Alfresco
edit_file_deploy_server_info=Modificare i dettagli del ricevitore di dispiegamento
reason=Motivo
snapshot=Istantanea
current_working_version=versione di lavoro attuale
review_sandbox=Esamina sandbox
content_launch=Avvio contenuto
launch_date=Data di avvio
expiration_date_header=Scadenza contenuto
expiration_date=Data di scadenza
expire_date_label=Scade il
apply_to_all=Applica a tutto
set_expiration_date=Imposta data di scadenza per tutti gli elementi modificati.
change_expiration_date_change=Nota: per cambiare singole date di scadenza, scegliere l'icona dell'azione 'Cambia data di scadenza'.
change_expiration_date_title=Cambia data di scadenza
change_expiration_date_desc=Questa finestra di dialogo consente di cambiare la data di scadenza di un elemento modificato.
expired_content_for_review=Contenuto scaduto da esaminare
report_summary=Sommario rapporto
link_check_completed_at=I link interrotti sono stati verificati alle {0} utilizzando l''istantanea {1}.
link_check_not_latest=La versione pi\u00f9 recente dell''istantanea \u00e8 {0}.
link_check_items_found=Verificati {0} file, trovati {1} link.
link_check_items_broken=Trovati {0} link interrotti in {1} file.
link_check_no_broken=Nessun link interrotto trovato.
link_check_error=La verifica dei link interrotti non \u00e8 riuscita alle {0} a causa dell''errore seguente:
update_status=Riconteggia
generated_files=File generati
broken_links=Link interrotti
expand_all=Espandi tutto
collapse_all=Comprimi tutto
rerun_report=Riesegui rapporto
no_items=Nessun elemento da visualizzare
broken=Interrotto
fixed=Corretto
static_tab={0} file statici
generated_tab={0} file generati
all_items_tab=Tutti gli elementi
inc_tab_size=Aumenta le dimensioni dell'area scorrevole di 100px
dec_tab_size=Riduce le dimensioni dell'area scorrevole di 100px (fino a un minimo di 100px)
prompt_for_web_form=Seleziona modulo web
prompt_for_web_form_info=Selezionare il modulo web da usare per la modifica di questo file
prompt_for_web_form_form_not_found_error_in_web_project=Impossibile trovare il modulo web {0} associato a {1} nel progetto web {2}.
prompt_for_web_form_form_not_found_error=Impossibile trovare il modulo web {0} associato a {1}.
prompt_for_web_form_explanation=Selezionare il modulo web da usare per {0}.
prompt_for_web_form_continue_msg=Per modificare {0} utilizzando il modulo web selezionato, scegliere OK. Se {0} non \u00e8 una risorsa generata da un modulo web e deve essere gestito come contenuto normale, scegliere Annulla.
# New User Wizard messages
new_user_title=Assistente Nuovo utente
new_user_title_edit=Assistente Modifica utente
new_user_desc=Questo assistente consente di aggiungere un utente al repository.
new_user_desc_edit=Questo assistente consente di modificare un utente nel repository.
new_user_step1_title=Passo uno - Propriet\u00e0 persona
new_user_step1_desc=Immettere le informazioni su questa persona.
new_user_step2_title=Passo due - Propriet\u00e0 utente
new_user_step2_desc=Immettere le informazioni su questo utente.
new_user_finish_instruction=Per aggiungere l'utente nel sistema, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
new_user_finish_instruction_edit=Per salvare le modifiche apportare a questo utente, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
person_properties=Propriet\u00e0 persona
user_properties=Propriet\u00e0 utente
first_name=Nome
last_name=Cognome
email=E-mail
email_format_is_not_valid=Formato e-mail non valido
company_id=ID azienda
home_space_location=Posizione spazio di homepage
home_space_name=Nome spazio di homepage
presence_provider=Provider presenza
presence_username=Nome utente presenza
user_organization=Organizzazione
user_jobtitle=Qualifica
user_location=Localit\u00e0
user_description=Biografia
user_avatar=Avatar
error_newuser_home_space=Lo spazio di homepage dell'utente non pu\u00f2 essere impostato sulla cartella Homepage dell'utente. Immettere un nuovo nome per lo spazio di homepage oppure selezionare uno spazio genitore diverso.
# Trashcan messages
title_deleted_items=Elementi eliminati
title_delete_all=Elimina tutti gli elementi
title_recover_all=Recupera tutti gli elementi
title_recover_listed=Recupera elementi elencati
title_delete_listed=Elimina elementi elencati
title_delete_item=Elimina elemento
title_recover_item=Recupera elemento
title_recovery_report=Rapporto di recupero
deleted_items=Elementi eliminati
manage_deleted_items=Gestisci elementi eliminati
manage_deleted_items_description=Rimuovere o recuperare elementi eliminati in precedenza
delete_all_items=Elimina tutti gli elementi
deleted_items_info=Utilizzare la ricerca per trovare gli elementi eliminati in base al nome o al contenuto e applicare i filtri per limitare l'elenco.
original_location=Posizione originale
deleted_date=Data di eliminazione
deleted_user=Autore eliminazione
recover=Recupera
clear_search_results=Cancella risultati ricerca
search_deleted_items_name=Cerca per nome
search_deleted_items_text=Cerca per contenuto
deleted_items_for=per ''{0}''
delete_item=Elimina elemento
delete_item_info=Eliminare permanentemente un elemento dal deposito dei file eliminati
delete_item_confirm=Eliminare permanentemente \"{0}\" dal deposito dei file eliminati? Una volta eseguita questa azione, l''elemento non potr\u00e0 pi\u00f9 essere recuperato.
recover_item=Recupera elemento
recover_item_info=Recuperare un elemento dal deposito dei file eliminati
recover_item_confirm=Recuperare \"{0}\" dal deposito dei file eliminati?
delete_all_items_info=Eliminare permanentemente tutti i file e gli spazi dal deposito dei file eliminati
delete_all_items_confirm=Eliminare permanentemente tutti i file e gli spazi dal deposito dei file eliminati? Una volta eseguita questa azione, gli elementi non potranno pi\u00f9 essere recuperati.
delete_listed_items=Elimina elementi elencati
delete_listed_items_info=Eliminare permanentemente i file e gli spazi elencati dal deposito dei file eliminati
delete_listed_items_confirm=Eliminare permanentemente i file e gli spazi eliminati seguenti dal deposito dei file eliminati? Una volta eseguita questa azione, gli elementi non potranno pi\u00f9 essere recuperati.
recover_listed_items=Recupera elementi elencati
recover_listed_items_info=Recuperare i file e gli spazi elencati dal deposito dei file eliminati
recover_listed_items_confirm=Recuperare i file e gli spazi eliminati seguenti dal deposito dei file eliminati?
recovered_item_success=L''elemento \"{0}\" \u00e8 stato recuperato.
recovered_item_parent=Impossibile recuperare l''elemento \"{0}\" perch\u00e9 manca la cartella genitore. Selezionare una nuova destinazione.
recovered_item_parent_short=Cartella genitore mancante
recovered_item_permission=Impossibile recuperare l''elemento \"{0}\" perch\u00e9 non si dispone dei permessi appropriati per ripristinarlo nella cartella genitore. Selezionare una nuova destinazione.
recovered_item_permission_short=Permessi di scrittura non disponibili
recovered_item_integrity=Impossibile recuperare l''elemento \"{0}\" perch\u00e9 nella cartella genitore ora esiste un elemento con lo stesso nome. Selezionare una nuova destinazione.
recovered_item_integrity_short=Elemento con lo stesso nome gi\u00e0 esistente
recovered_item_failure=Impossibile recuperare l''elemento \"{0}\" a causa di un errore: {1}
recovered_item_failure_short=Operazione non riuscita
delete_item_success=L''elemento \"{0}\" \u00e8 stato eliminato permanentemente.
title_deleted_item_details=Dettagli elemento eliminato
deleteditem_details_description=Dettagli dell'elemento eliminato
alternative_destination=\u00c8 possibile selezionare una destinazione in cui inserire gli elementi recuperati. Se non viene selezionata una destinazione, verr\u00e0 utilizzata la posizione originale dell'elemento. Il recupero di un elemento potrebbe non riuscire se la destinazione non esiste o non si dispone del permesso per aggiungere elementi in tale posizione.
user_filter_who=Autore
user_filter_all=Tutti
user_filter_user=Utente
date_filter_when=Periodo
date_filter_all=Tutti
date_filter_today=Oggi
date_filter_yesterday=Ieri
date_filter_week=Ultimi 7 giorni
date_filter_month=Ultimi 30 giorni
recovery_report=Rapporto elementi recuperati
recovery_report_info=Risultati del recupero degli elementi selezionati
recovery_report_success=Gli elementi seguenti sono stati recuperati
recovery_report_failed=Gli elementi seguenti non sono stati recuperati
recovery_report_reason=Motivo
# My Alfresco messages
my_alfresco=Il mio Alfresco
title_my_alfresco=Il mio Alfresco
dashboard_info=Il mio pannello di controllo Alfresco
dashboard_description=Configurare questa vista e creare il pannello di controllo Alfresco personale
configure=Configura
error_dashboard=Si \u00e8 verificato un errore in uno dei dashlet.
# My Alfresco Layout Manager wizard messages
configure_dashboard_title=Assistente Configura pannello di controllo
configure_dashboard_desc=Questo assistente consente di configurare il layout e il contenuto del pannello di controllo
step_layout=Layout
configure_dashboard_step1_title=Passo uno - Seleziona layout
configure_dashboard_step1_desc=Scegliere il layout e il numero di colonne per il pannello di controllo.
step_columns=Componenti
configure_dashboard_step2_title=Passo due - Seleziona componenti
configure_dashboard_step2_desc=Selezionare i componenti per il pannello di controllo e aggiungerli nelle colonne.
configure_dashboard_finish_instruction=Per salvare la configurazione del pannello di controllo, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
select_layout=Selezionare lo stile del layout per il pannello di controllo. Se si cambia il layout esistente del pannello di controllo e se ne sceglie uno con un numero minore di colonne, le colonne aggiuntive verranno rimosse.
select_column=Seleziona la colonna da configurare
dashlet_list=Componenti disponibili
dashlet_btn_select=Aggiungi
dashlet_btn_remove=Rimuovi
selected_dashlets=Componenti selezionati
dashboard_column=Colonna
column_max_components=questa colonna pu\u00f2 visualizzare {0} componenti
single_column_max_components=Questo layout pu\u00f2 visualizzare {0} componenti
selected_item=Elemento selezionato
# My Alfresco Layouts messages
layout_single_label=Singola colonna
layout_single_desc=Questo layout visualizza i componenti in una singola colonna nell'intera larghezza della pagina
layout_narrow_left_label=Due colonne, stretta a sinistra
layout_narrow_left_desc=Questo layout visualizza i componenti in due colonne con quella a sinistra stretta
layout_narrow_right_label=Due colonne, stretta a destra
layout_narrow_right_desc=Questo layout visualizza i componenti in due colonne con quella a destra stretta
layout_three_column_label=Tre colonne
layout_three_column_desc=Questo layout visualizza i componenti in tre colonne di uguale larghezza
# My Alfresco Dashlet components messages
dashlet_gettingstarted_label=Per iniziare
dashlet_gettingstarted_desc=Visualizza utili informazioni per iniziare a utilizzare il client web Alfresco
dashlet_mydocuments=I miei documenti
dashlet_mydocuments_desc=Visualizza l'elenco dei documenti presenti nel mio spazio di homepage
dashlet_checkedoutdocs=I miei documenti sottoposti a Check Out
dashlet_checkedoutdocs_desc=Visualizza l'elenco dei documenti sottoposti a Check Out da me
dashlet_myimages=Le mie immagini
dashlet_myimages_desc=Visualizza un elenco a 3 colonne con le miniature delle immagini presenti nel mio spazio di homepage
gettingstarted_commontasks=Compiti comuni
gettingstarted_browse=Esplorare elementi nello spazio di homepage
gettingstarted_browse_desc=Scegliere La mia homepage sulla barra degli strumenti per visualizzare un elenco di elementi presenti nello spazio.
gettingstarted_createspace=Creare uno spazio nello spazio di homepage
gettingstarted_createspace_desc=Passare allo spazio di homepage. Nell'area delle informazioni sullo spazio, nel menu in Crea scegliere Crea spazio e immettere le informazioni sullo spazio.
gettingstarted_addcontent=Aggiungere contenuto allo spazio di homepage
gettingstarted_addcontent_desc=Passare allo spazio di homepage. Nell'area delle informazioni sullo spazio, scegliere Aggiungi contenuto e immettere le informazioni sul contenuto da caricare.
gettingstarted_createcontent=Creare contenuto nello spazio di homepage
gettingstarted_createcontent_desc=Passare allo spazio di homepage. Nell'area delle informazioni sullo spazio, scegliere Crea contenuto in Crea e immettere le informazioni sul contenuto da creare.
gettingstarted_demonstration=Dimostrazione
gettingstarted_demonstration_desc=Dimostrazione su come \u00e8 possibile utilizzare Alfresco per creare un lancio di marketing.
gettingstarted_featuretour=Presentazione delle caratteristiche
gettingstarted_featuretour_desc=Presentazione di alcune delle principali caratteristiche di Alfresco.
gettingstarted_onlinehelp=Aiuto online
gettingstarted_onlinehelp_desc=Scegliere l'icona dell'Aiuto di Alfresco per visualizzare i relativi argomenti.
# User Console and Settings messages
title_user_console=Profilo utente
title_edit_user_details=Modifica dettagli utente
user_console=Profilo utente
user_console_info=Profilo e impostazioni utente
user_console_description=Utilizzare questa pagina per cambiare il profilo visibile, le preferenze e le impostazioni dell'applicazione
user_profile=Profilo utente
user_profile_for=Profilo dell''utente ''{0}''
my_details=I miei dettagli
general_pref=Preferenze generali
change_my_password_description=Utilizzare questa vista per cambiare la password
change_my_password_instructions=Immettere la nuova password.
old_password=Vecchia password
new_password=Nuova password
error_incorrect_old_password=Il valore immesso nel campo 'Vecchia password' non \u00e8 corretto.
edit_user_details=Modifica profilo utente
edit_user_details_description=Utilizzare questa vista per cambiare i dettagli e l'indirizzo e-mail dell'utente
start_location=Posizione iniziale
interface_language=Lingua interfaccia
content_language_filter=Filtro lingua contenuto
content_all_languages=Tutte le lingue
download_automatically=Download automatico file per la modifica offline
user_management=Gestione
select_avatar_prompt=Scegliere qui per selezionare un'immagine Avatar
# Delete Space Dialog messages
select_delete_operation=Cosa si desidera eliminare?
delete_op_all=Questo spazio e tutto il relativo contenuto. Nota: verranno eliminate anche le regole.
delete_op_files=Solo i file di questo spazio.
delete_op_folders=Solo le cartelle di questo spazio.
delete_op_contents=I file e le cartelle di questo spazio.
delete_execute_rules=Esegui regole
delete_archive_nodes=Archivia nodi
# Email users dialog
email_space_users=Invia e-mail agli utenti dello spazio
email_space_users_desc=Inviare un messaggio e-mail agli utenti e ai gruppi assegnati a questo spazio.
email_space_users_no_recipients=Nessun utente o gruppo assegnato a questo spazio. Scegliere Annulla per uscire dalla finestra di dialogo.
# Workflow messages
doc_not_in_simple_workflow=Questo documento non fa parte di un workflow semplice.
space_not_in_simple_workflow=Questo spazio non fa parte di un workflow semplice.
doc_not_in_advanced_workflow=Questo documento non fa parte di alcun workflow avanzato.
space_not_in_advanced_workflow=Questo spazio non fa parte di alcun workflow avanzato.
default_workflow=Workflow di default
simple_workflow=Workflow semplice
advanced_workflows=Workflow avanzati
document_action=Il documento sar\u00e0 {0} in ''{1}'' se viene eseguita l''azione ''{2}''.
space_action=Lo spazio sar\u00e0 {0} in ''{1}'' se viene eseguita l''azione ''{2}''.
doc_part_of_advanced_workflows=Questo documento fa parte dei workflow avanzati seguenti
space_part_of_advanced_workflows=Questo documento fa parte dei workflow avanzati seguenti
modify_workflow_props=Modifica propriet\u00e0 workflow semplice
name_approve_step=Nome del passo di approvazione
name_reject_step=Nome del passo di rifiuto
select_reject_step=Specificare un passo di rifiuto?
choose_copy_move_location=Scegliere se spostare o copiare il contenuto e la posizione.
start_workflow=Avvia workflow avanzato
start_workflow_wizard=Assistente Avvia workflow avanzato
start_named_workflow_wizard=Assistente Avvia workflow {0}
start_workflow_desc=Questo assistente consente di avviare un workflow avanzato per un elemento nel repository.
available_workflows=Workflow disponibili
step_choose_workflow=Scegli workflow
start_workflow_choose_title=Scegli workflow
start_workflow_choose_desc=Scegliere il workflow da avviare
step_workflow_options=Opzioni workflow
start_workflow_options_title=Opzioni workflow
start_workflow_options_desc=Selezionare le opzioni per il workflow
start_workflow_finish_instruction=Per avviare il workflow, scegliere Fine. Per esaminare o cambiare le selezioni, scegliere Torna.
start_workflow_no_metadata=Nessun metadato da raccogliere per questo workflow.
start_workflow_no_workflows=Nessun workflow attualmente dispiegato nel repository. Scegliere Annulla per uscire dall'assistente.
users_and_roles=Utenti e ruoli
resources=Risorse
manage_task=Gestisci compito
manage_task_title=Gestisci compito
manage_task_desc=Questa finestra di dialogo consente di gestire il compito.
view_completed_task_title=Vedi compito completato
view_completed_task_desc=Questa finestra di dialogo consente di vedere i dettagli del compito completato.
task_properties=Propriet\u00e0 compito
task_pooled_properties=Pool compito
task_type=Tipo di compito
id=ID
owner=Proprietario
status=Stato
completed=Completato
source=Fonte
priority=Priorit\u00e0
tasks_active_title=Tutti i compiti attivi
tasks_active_desc=Elenco dei compiti attivi ancora da completare
my_tasks_todo_title=I miei compiti da eseguire
my_tasks_todo_desc=Elenco dei compiti ancora da completare
my_tasks_completed_title=I miei compiti completati
my_tasks_completed_desc=Elenco dei compiti completati
pooled_tasks_title=I compiti assegnati al mio pool
pooled_tasks_desc=Elenco dei compiti assegnati al pool
doclist-webscript_title=Elenco documenti
doclist-webscript_desc=Web Script Elenco documenti
myspaces-webscript_title=Elenco I miei spazi
myspaces-webscript_desc=Web Script I miei spazi
mytasks-webscript_title=I miei compiti
mytasks-webscript_desc=Web Script I miei compiti
mywebforms-webscript_title=I miei moduli web
mywebforms-webscript_desc=Web Script I miei moduli web
mywebfiles-webscript_title=I miei file web
mywebfiles-webscript_desc=Web Script I miei file web
due_date=Data di scadenza
completed_on=Completato il
outcome=Risultato
reassign=Riassegna
cancel_workflow=Annulla workflow
cancel_workflow_info=Per annullare questo workflow, scegliere OK.
cancel_workflow_confirm=Annullare il workflow \"{0}\" ?
error_cancel_workflow=Impossibile annullare il workflow a causa di un errore di sistema:
reassign_task_title=Riassegna compito
reassign_task_desc=Questa finestra di dialogo consente di riassegnare un compito.
reassign_select_user=Selezionare l'utente a cui assegnare il compito, quindi scegliere OK.
error_reassign_task=Impossibile riassegnare il compito a causa di un errore di sistema:
part_of_workflow=Parte del workflow
workflow_history=Cronologia workflow
no_workflow_history=Questo workflow non dispone di alcuna cronologia
workflow_outline=Struttura workflow
initiated_by=Avviato da
started_on=Avviato il
add_resource=Aggiungi risorsa
view_properties=Vedi propriet\u00e0 contenuto
edit_properties=Modifica propriet\u00e0 contenuto
save_changes=Salva cambiamenti
no_tasks=Nessun compito trovato.
no_resources=Nessuna risorsa trovata.
in_progress=In corso
by=da
assignee=Assegnatario
comment=Commento
invalid_task=Il compito visualizzato non \u00e8 pi\u00f9 valido. \u00c8 probabile che sia stato completato da un altro utente.
error_webprj_does_not_exist=Il progetto web {0} non esiste (\u00e8 possibile che sia stato eliminato)
# Workflow Definitions
wf_review_options=Opzioni esame
wf_review_status=Stato esame
wf_review_due_date=Data di scadenza esame
wf_review_priority=Priorit\u00e0 esame
wf_review_options=Opzioni esame
wf_review_status=Stato esame
wf_reviewer=Esaminatore
wf_reviewers=Esaminatori
wf_adhoc_due_date=Data di scadenza
wf_adhoc_priority=Priorit\u00e0
wf_adhoc_assign_to=Assegna a
wf_adhoc_assignee=Assegnato a
# Email Server messages
email.server.alias=Alias e-mail
# Imap Server messages
imap.attachments=Allegati
imap.attachments.folder=Cartella allegati
# Admin Console messages
title_admin_console=Console di amministrazione
admin_console=Console di amministrazione
admin_description=Utilizzare questa vista per eseguire le funzioni di amministrazione del sistema.
admin_limited_license=Licenza: la licenza {0} concessa a {1} e valida solo per {3} giorni scade il {4,date,short} ({5} giorni residui - emessa il {2,date,short}).
admin_unlimited_license=Licenza: la licenza {0} concessa a {1} non ha scadenza (emessa il {2,date,short}).
admin_invalid_license=Licenza: LICENZA NON VALIDA - Il repository Alfresco sar\u00e0 disponibile in modalit\u00e0 di sola lettura.
# Workflow Console messages
title_workflow_console=Console dei workflow
workflow_context=Contesto
workflow_command=Comando (digitare help per ricevere aiuto)
workflow_command_submit=Invia
workflow_last_command=Ultimo comando:
workflow_duration=Durata:
workflow_duration_ms=ms
# JMX Dumper messages
title_jmx_dumper=JMX Dumper
title_jmx_output=Output
# WebClient Config Admin Console messages
title_configadmin_console=Console di amministrazione della configurazione del client web
configadmin_context=Contesto
configadmin_command=Comando (digitare help per ricevere aiuto)
configadmin_command_submit=Invia
configadmin_last_command=Ultimo comando:
configadmin_duration=Durata:
configadmin_duration_ms=ms
# Repository Admin Console messages
title_repoadmin_console=Console di amministrazione dei repository
repoadmin_context=Contesto
repoadmin_command=Comando (digitare help per ricevere aiuto)
repoadmin_command_submit=Invia
repoadmin_last_command=Ultimo comando:
repoadmin_duration=Durata:
repoadmin_duration_ms=ms
# Tenant Admin Console messages
title_tenantadmin_console=Console di amministrazione dei tenant
tenantadmin_context=Contesto
tenantadmin_command=Comando (digitare help per ricevere aiuto)
tenantadmin_command_submit=Invia
tenantadmin_last_command=Ultimo comando:
tenantadmin_duration=Durata:
tenantadmin_duration_ms=ms
# OpenSearch messages
show=Mostra
opensearch=OpenSearch
opensearch_desc=Consente di eseguire una ricerca in pi\u00f9 motori di ricerca supportati da OpenSearch.
search_in=Cerca in
no_engines_registered=Impossibile trovare motori OpenSearch registrati.
current_repo=Repository Alfresco attuale
current_repo_people=Persone Alfresco attuali
toggle_options=Opzioni di toggle
no_results=Nessun risultato
of=di
failed_gen_url=Impossibile generare l'URL per il motore di ricerca '{0}'.\\n\\n\u00c8 probabile che manchino alcuni parametri richiesti. Verificare l'URL modello per il motore di ricerca.
failed_search=Impossibile recuperare i risultati della ricerca per '{0}'
# UI Page Titles
title_about=Informazioni su Alfresco
title_login=Alfresco Explorer - Login
title_relogin=Alfresco Explorer - Disconnesso
title_error=Alfresco Explorer - Errore di sistema
title_browse=Alfresco Explorer
title_change_user_roles=Cambia ruoli utente
title_remove_invited_user=Rimuovi utente invitato
title_advanced_search=Ricerca avanzata
title_checkin_file=Check In file
title_checkout_file=Check Out file
title_checkout_file_link=Check Out file e download
title_missing_working_copy=Copia di lavoro non pi\u00f9 disponibile
title_delete_file=Elimina file
title_delete_rule=Elimina regola
title_delete_user=Elimina utente
title_delete_space=Elimina spazio
title_file_details=Dettagli documento
title_file_preview=Anteprima nel modello
title_edit_categories=Modifica categorie
title_edit_doc_props=Modifica propriet\u00e0 documento
title_edit_link_props=Modifica propriet\u00e0 link
title_edit_file=Modifica file
title_edit_html_inline=Modifica file HTML in linea
title_edit_text_inline=Modifica file di testo in linea
title_edit_xml_inline=Modifica file XML in linea
title_edit_simple_workflow=Modifica workflow semplice
title_edit_space=Modifica dettagli spazio
title_rules=Regole spazio
title_space_details=Dettagli spazio
title_apply_template=Applica modello
title_system_info=Informazioni sul sistema
title_undo_checkout=Annulla Check Out
title_update_file=Aggiorna contenuto file
title_users=Gestione utenti
title_invited_users=Gestisci utenti invitati
title_content_users=Gestisci utenti contenuto
title_add_content=Aggiungi contenuto
title_create_content=Crea nuovo contenuto
title_create_content_props=Crea nuovo contenuto - Propriet\u00e0
title_create_content_summary=Crea nuovo contenuto - Sommario
title_action_add_feature=Azione Aggiungi caratteristica
title_action_remove_feature=Azione Rimuovi caratteristica
title_action_checkin=Azione Check In
title_action_checkout=Azione Check Out
title_action_copy=Azione Copia
title_action_copy_to_web_project=Azione Copia in progetto web
title_action_move=Azione Sposta
title_action_script=Azione Esegui script
title_action_import=Azione Importa
title_action_email=Azione Invia e-mail
title_action_link_category=Azione Collega categoria
title_action_simple_workflow=Azione Workflow semplice
title_action_transform=Azione Trasforma
title_action_transform_image=Azione Trasforma immagine
title_action_specialise_type=Azione Specializza tipo
title_condition_contains_text=Condizione Contiene testo
title_condition_has_mimetype=Condizione Ha il mimetype
title_condition_in_category=Condizione \u00c8 nella categoria
title_condition_is_subtype=Condizione \u00c8 un sottotipo
title_condition_has_aspect=Condizione Ha l'aspetto
title_condition_has_tag=Condizione ha il tag
title_new_user_person_props=Utente - Propriet\u00e0 persona
title_new_user_user_props=Utente - Propriet\u00e0 utente
title_new_user_summary=Utente - Sommario
title_export=Esporta
title_import=Importa
title_admin_store_browser=Browser depositi Alfresco
title_admin_node_browser=Browser nodi Alfresco
title_admin_search_results=Risultati ricerca Browser nodi
title_forums=Spazio forum
title_forum=Forum
title_topic=Argomento
title_delete_forums_space=Elimina spazio forum
title_delete_forum_space=Elimina forum
title_delete_topic_space=Elimina argomento
title_delete_post=Elimina post
title_create_forums=Crea spazio forum
title_create_forum=Crea forum
title_forums_details=Dettagli spazio forum
title_forum_details=Dettagli forum
title_create_topic=Crea argomento
title_create_discussion=Crea discussione
title_topic_details=Dettagli argomento
title_create_post=Posta messaggio
title_create_reply=Crea risposta
title_edit_forums=Modifica dettagli spazio forum
title_edit_forum=Modifica dettagli forum
title_edit_topic=Modifica dettagli argomento
title_edit_post=Modifica post
title_noaccess=Nessun accesso
# UI Error messages
error_generic=Si \u00e8 verificato un errore di sistema durante l''operazione: {0}
error_noderef=Impossibile trovare l''elemento del repository con l''ID seguente: {0} - \u00c8 probabile che il record sia stato eliminato dal database.
error_deleted_folder=L''elemento della cartella con l''ID seguente: {0} \u00e8 stato eliminato dal database. Il sistema ha cambiato posizione perch\u00e9 la cartella utilizzata non esiste pi\u00f9.
error_homespace=Impossibile trovare il nodo dello spazio di homepage con l''ID seguente: {0}. \u00c8 possibile che sia stato eliminato dal database. Contattare l''amministratore di sistema.
error_search=Ricerca non riuscita a causa di un errore di sistema: {0}
error_search_query=La ricerca non \u00e8 riuscita perch\u00e9 il sistema non \u00e8 stato in grado di elaborare la query. Provare a eseguire una ricerca diversa.
error_not_found={0} non trovato in {1}.
error_exists=Esiste gi\u00e0 uno spazio o un file con questo nome: {0}
error_delete_space=Impossibile eliminare lo spazio a causa di un errore di sistema: {0}
error_delete_file=Impossibile eliminare il file a causa di un errore di sistema: {0}
error_delete_sandbox=Impossibile eliminare la sandbox a causa di un errore di sistema: {0}
error_checkout=Impossibile eseguire il Check Out del nodo di contenuto a causa di un errore di sistema:
error_update=Impossibile aggiornare il nodo di contenuto a causa di un errore di sistema:
error_cancel_checkout=Impossibile annullare il Check Out del nodo di contenuto a causa di un errore di sistema:
error_checkin=Impossibile eseguire il Check In del nodo di contenuto a causa di un errore di sistema:
error_paste=Impossibile incollare l'elemento a causa di un errore di sistema:
error_login_user=Impossibile eseguire il login - Nome utente/password sconosciuti.
error_login_missing=\u00c8 necessario specificare il nome utente e la password.
error_login_disallowed=Nome utente non consentito - Riprovare pi\u00f9 tardi e/o contattare l'amministratore di sistema.
error_login_maxusers=Numero massimo di utenti superato - Riprovare pi\u00f9 tardi e/o contattare l'amministratore di sistema.
error_delete_rule=Impossibile eliminare la regola a causa di un errore di sistema:
error_actions=Impossibile eseguire le azioni a causa di un errore: {0}
error_rule=Impossibile creare la regola a causa di un errore: {0}
error_space=Impossibile creare il nuovo spazio a causa di un errore: {0}
error_content=Impossibile creare il contenuto a causa di un errore: {0}
error_person=Impossibile creare la persona a causa di un errore: {0}
error_delete_user=Impossibile eliminare l''utente a causa di un errore: {0}
error_remove_user=Impossibile rimuovere l''utente a causa di un errore: {0}
error_password_match=Assicurarsi che entrambi i campi della password contengano lo stesso valore.
error_property=La propriet\u00e0 ''{0}'' non \u00e8 disponibile per questo nodo
error_create_space_dialog=Correggere gli errori riportati di seguito, quindi scegliere Crea spazio.
error_create_forums_dialog=Correggere gli errori riportati di seguito, quindi scegliere Crea spazio forum.
error_create_forum_dialog=Correggere gli errori riportati di seguito, quindi scegliere Crea forum.
error_create_topic_dialog=Correggere gli errori riportati di seguito, quindi scegliere Crea argomento.
error_create_post_dialog=Correggere gli errori riportati di seguito, quindi scegliere Posta.
error_create_reply_dialog=Correggere gli errori riportati di seguito, quindi scegliere Rispondi.
error_create_category_dialog=Correggere gli errori riportati di seguito, quindi scegliere Nuova categoria.
error_create_group_dialog=Correggere gli errori riportati di seguito, quindi scegliere Crea gruppo.
error_dialog=Correggere gli errori riportati di seguito, quindi scegliere OK.
error_wizard=Correggere gli errori riportati di seguito, quindi scegliere Fine.
error_update_category=Impossibile aggiornare la categoria a causa di un errore di sistema: {0}
error_update_simpleworkflow=Impossibile aggiornare il workflow semplice a causa di un errore di sistema: {0}
error_workflow_approve=Impossibile approvare il documento a causa di un errore di sistema: {0}
error_workflow_reject=Impossibile respingere il documento a causa di un errore di sistema: {0}
error_aspect_classify=Impossibile applicare l''aspetto ''classifiable'' al documento a causa di un errore di sistema: {0}
error_aspect_classify_space=Impossibile applicare l''aspetto ''classifiable'' allo spazio a causa di un errore di sistema: {0}
error_aspect_versioning=Impossibile applicare l''aspetto ''versionable'' al documento a causa di un errore di sistema: {0}
error_aspect_inlineeditable=Impossibile applicare l''aspetto ''inlineeditable'' al documento a causa di un errore di sistema: {0}
error_content_missing=Manca il contenuto del nodo: \n nodo: {0} \n lettore: {1} \nContattare l''amministratore di sistema.
error_export=Impossibile eseguire l''esportazione: {0}
error_import=Impossibile eseguire l''importazione: {0}
error_import_no_file=Impossibile trovare un file ACP da importare.
error_import_empty_file=Impossibile importare un file ACP vuoto.
error_import_all=Correggere gli errori di importazione riportati di seguito, quindi scegliere OK.
error_export_all=Correggere gli errori di esportazione riportati di seguito, quindi scegliere OK.
error_save_search=Impossibile salvare la ricerca a causa di un errore: {0}
error_restore_search=Impossibile ripristinare la ricerca salvata a causa di un errore: {0}
error_shortcut_permissions=Impossibile passare all'elemento perch\u00e9 non pu\u00f2 essere letto da questo utente. \u00c8 possibile che il permesso sia stato modificato da un altro utente.
error_association=Impossibile trovare la definizione per l''associazione \"{0}\".
error_charset_null=Valore del set di caratteri nullo
error_negative_quota=La quota non pu\u00f2 essere negativa: {0}
error_search_not_exist=Non esiste una ricerca con il nome: {0}
error_search_not_exist=Non esiste una ricerca con il nome: \"{0}\"
error_retrieving_search_results=Errore durante il recupero dei risultati per la ricerca \"{0}\" - \"{1}\"
error_domain_mismatch=Discrepanza nel dominio: valore previsto = {0}, valore effettivo = {1}
error_not_stored=Nessun errore attualmente memorizzato
error_no_stack_trace=Nessuna traccia dello stack disponibile
error_permissions=Non si dispone di permessi sufficienti per vedere l'elemento richiesto.
error_not_found=Il file richiesto non esiste in questa posizione
error_external_protocol_support=I link esterni devono essere digitati manualmente nella casella di testo.
# Confirmations
return_to_application=Torna all'applicazione
return_home=Il mio contenuto
delete_space_info=Per rimuovere questo spazio e tutto il relativo contenuto, scegliere OK.
delete_space_assoc_info=Questo spazio \u00e8 presente in posizioni multiple. Per rimuoverlo dalla posizione attuale, scegliere OK.
delete_space_confirm=Eliminare \"{0}\" e tutto il relativo contenuto?
delete_space_assoc_confirm=Rimuovere \"{0}\" dalla posizione attuale?
delete_space_multiple_parents_warn=Questo spazio \u00e8 presente in posizioni multiple. L'operazione selezionata di seguito avr\u00e0 effetto su tutte le posizioni.
delete_forums_info=Per rimuovere questo spazio di forum e il relativo contenuto, scegliere OK.
delete_forum_info=Per rimuovere questo forum e i relativi argomenti, scegliere OK.
delete_forum_confirm=Eliminare \"{0}\" e tutti i relativi argomenti?
delete_topic_info=Per rimuovere questo argomento e i relativi post, scegliere OK.
delete_topic_confirm=Eliminare \"{0}\" e tutti i relativi post?
delete_post_info=Per rimuovere questo post dall'argomento, scegliere OK.
delete_post_confirm=Eliminare il post da \"{0}\"?
delete_file_info=Per rimuovere questo file e tutte le versioni precedenti, scegliere OK.
delete_file_assoc_info=Questo file \u00e8 presente in posizioni multiple. Per rimuoverlo dalla posizione attuale, scegliere OK.
delete_file_confirm=Eliminare \"{0}\" e tutte le versioni precedenti?
delete_file_assoc_confirm=Rimuovere \"{0}\" dalla posizione attuale?
delete_file_multiple_parents_confirm=\"{0}\" \u00e8 presente in posizioni multiple. Rimuoverlo da tutte le posizioni ed eliminare tutte le versioni precedenti?
delete_translation_confirm=Eliminare \"{0}\" e tutte le versioni precedenti? Le propriet\u00e0 multilingue non potranno essere recuperate.
delete_empty_translation_confirm=Eliminare permanentemente \"{0}\"? Questo documento non verr\u00e0 recuperato.
delete_ml_container_confirm=Eliminare \"{0}\" e tutte le edizioni precedenti? Verr\u00e0 eliminata anche ciascuna traduzione.
delete_rule_info=Per rimuovere questa regola dallo spazio, scegliere S\u00ec.
delete_user_info=Per eliminare questo utente dal sistema, scegliere S\u00ec.
delete_rule_confirm=Eliminare \"{0}\"?
delete_user_confirm=L''utente non potr\u00e0 pi\u00f9 accedere al sistema. Eliminare l''utente \"{0}\"?
remove_invited_user_confirm=L''utente non potr\u00e0 pi\u00f9 accedere ai documenti e alle cartelle di questo spazio. Rimuovere l''utente \"{0}\"?
remove_content_user_confirm=L''utente non potr\u00e0 pi\u00f9 accedere a questo contenuto. Rimuovere l''utente \"{0}\"?
delete_companyroot_confirm=ATTENZIONE: questa cartella \u00e8 accessibile da tutti gli utenti. Verificare che debba essere eliminata. Se viene rimossa, \u00e8 possibile che si verifichino errori di sistema.
delete_node_not_found=Impossibile trovare l'elemento che si sta tentando di eliminare. \u00c8 possibile che sia gi\u00e0 stato eliminato. Chiudere questa finestra di dialogo e riprovare a eseguire l'operazione di eliminazione.
# Status Messages
status_space_created=Lo spazio ''{0}'' \u00e8 stato creato.
status_space_deleted=Lo spazio ''{0}'' \u00e8 stato eliminato.
status_space_updated=Lo spazio ''{0}'' \u00e8 stato aggiornato.
# Validation Messages
validation_mandatory={0} \u00e8 un campo obbligatorio.
validation_string_length={0} deve avere una lunghezza compresa tra {1} e {2} caratteri.
validation_is_number={0} deve contenere un numero.
validation_regex={0} non \u00e8 valido.
validation_regex_not_match={0} non \u00e8 valido.
validation_numeric_range={0} deve essere compreso tra {1} e {2}.
validation_invalid_character=\u00e8 un carattere non valido.
validation_provide_values_for_required_fields=Specificare un valore per tutti i campi richiesti
# XForms ui
idle=Inattivo
loading=Caricamento
eg=ad esempio
click_to_edit=scegliere per modificare
please_select=Seleziona...
# File Picker
go_up=Torna su
# Tag picker
click_to_select_tag=Scegliere per selezionare i tag
add_a_tag=Aggiungi un tag
tags=Tag
# Category browsing
category_browser_plugin_label=Categorie
category_browser_plugin_description=Esplorazione per categoria
category_browser_plugin_include_subcategories=Esplorare gli elementi nelle sottocategorie?
category_browser_browse_title=Categoria \"{0}\"
category_browser_browse_include=e relative sottocategorie
category_browser_browse_description=Questa vista consente di vedere tutti gli elementi di questa categoria
title_category_browse=Web client Alfresco - Esplorazione per categoria
# 3.0 Sites messages
ReadPermissions=Lettura
SiteManager=Manager sito
SiteConsumer=Consumatore sito
SiteCollaborator=Collaboratore sito
SiteContributor=Contributore sito
sites_space_warning=Questo spazio \u00e8 gestito da Alfresco Share. Utilizzare l'applicazione Alfresco Share per modificare il contenuto di questo spazio e dei relativi sottospazi.
# Composite conditions
select_composite_condition=Seleziona condizione composita
enter_text_condition=Immetti parametri condizione per una propriet\u00e0 di testo
enter_integer_condition=Immetti parametri condizione per una propriet\u00e0 con valore intero
enter_date_condition=Immetti parametri condizione per una propriet\u00e0 con valore di data
enter_boolean_condition=Immetti parametri condizione per una propriet\u00e0 con valore booleano
select_default_qname=Seleziona QName di default
composite_condition_page_description=Creare una condizione combinandone varie altre
composite_condition_page_title=Crea condizione composita
composite_condition_page_selected=Condizioni selezionate da combinare tramite
composite_condition_page_or=OR
text_property_condition_property=Nome della propriet\u00e0 (ad esempio description o cm:description)
integer_property_condition_property=Nome della propriet\u00e0 (ad esempio count o my:count)
date_property_condition_property=Nome della propriet\u00e0 (ad esempio created o cm:created)
property_condition_operation=Valore della propriet\u00e0
property_condition_value=Valore della propriet\u00e0
property_condition_operation=Operazione
property_condition_equals=\u00c8 uguale a
property_condition_contains=Contiene
property_condition_beginswith=Inizia con
property_condition_endswith=Finisce con
property_condition_greaterthan=\u00c8 maggiore di
property_condition_greaterthanequals=\u00c8 maggiore di o uguale a
property_condition_lessthan=\u00c8 minore di
property_condition_lessthanequals=\u00c8 maggiore di o uguale a
property_date_condition_equals=\u00c8 uguale a
property_date_condition_greaterthan=\u00c8 dopo
property_date_condition_greaterthanequals=\u00c8 dopo o il
property_date_condition_lessthan=\u00c8 prima
property_date_condition_lessthanequals=\u00c8 prima o il
property_condition_invalid=Operazione non valida
condition_compare_text_property_value=Propriet\u00e0 di testo ''{0}'' {1} ''{2}''
condition_compare_text_property_value_not=Propriet\u00e0 di testo ''{0}'' NOT {1} ''{2}''
condition_compare_integer_property_value=Propriet\u00e0 con valore intero ''{0}'' {1} ''{2}''
condition_compare_integer_property_value_not=Propriet\u00e0 con valore intero ''{0}'' NOT {1} ''{2}''
condition_compare_date_property_value=Propriet\u00e0 con valore di data ''{0}'' {1} ''{2}''
condition_compare_date_property_value_not=Propriet\u00e0 con valore di data ''{0}'' NOT {1} ''{2}''
condition_compare_boolean_property_value=Propriet\u00e0 con valore booleano ''{0}'' {1} ''{2}''
condition_compare_boolean_property_value_not=Propriet\u00e0 con valore booleano ''{0}'' NOT {1} ''{2}''
condition_composite_summary=Condizione composita ({0} condizioni {1})
condition_composite_summary_not=Condizione composita ({0} condizioni {1} e inverso)
condition_composite_error=Condizione composita (ERRORE)
component_property=Propriet\u00e0
component_value=Valore
#Transfer-related properties
trx.endpointprotocol=Protocollo di destinazione
trx.endpointhost=Host di destinazione
trx.endpointport=Porta di destinazione
trx.endpointpath=Percorso di destinazione
trx.progressPosition=Progresso attuale
trx.progressEndpoint=Endpoint progresso
trx.transferStatus=Stato attuale
trx.fromRepositoryId=Trasferito da
trx.repositoryId=Origine trasferita
trx.invadedBy=Contiene trasferimenti
# Team properties
team_login_warning=La pagina Alfresco Explorer non \u00e8 supportata. Accedere a questa pagina solo seguendo le istruzioni del Supporto Alfresco.